/* ===========================================
   OUR TEAM PAGE STYLES
   =========================================== */

/* Page Header */
.team-header {
    background: linear-gradient(135deg, var(--orange), var(--teal));
    padding: 80px 5%;
    text-align: center;
    color: var(--beige);
}

.team-header h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 20px;
}

.team-header p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--dark);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(223, 111, 87, 0.2);
}

/* Member Image */
.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.team-member:hover .team-photo {
    transform: scale(1.05);
}

/* Member Info */
.member-info {
    padding: 30px 25px;
    text-align: center;
}

.member-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.2;
}

.role {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--light);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.4;
}

.description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(227, 217, 209, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .team-header {
        padding: 100px 8%;
    }

    .team-section {
        padding: 100px 0;
    }

    .team-grid {
        gap: 30px;
    }

    .member-info {
        padding: 30px 25px;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .team-header {
        padding: 120px 10%;
    }

    .team-header h1 {
        font-size: clamp(3rem, 4.5vw, 4.5rem);
    }

    .team-header p {
        font-size: clamp(1.3rem, 1.6vw, 1.6rem);
    }

    .team-section {
        padding: 120px 0;
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    .member-info h3 {
        font-size: 1.9rem;
    }

    .role {
        font-size: 1.15rem;
    }

    .tagline {
        font-size: 1.15rem;
    }

    .description {
        font-size: 1.05rem;
    }
}

/* Large Desktop Styles (1440px and up) */
@media (min-width: 1440px) {
    .team-header {
        padding: 140px 15%;
    }

    .team-section {
        padding: 140px 0;
    }

    .team-grid {
        gap: 40px;
    }

    .member-image {
        height: 350px;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .team-header {
        padding: 60px 5%;
    }

    .team-header h1 {
        font-size: 2rem;
    }

    .team-header p {
        font-size: 1rem;
    }

    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .member-image {
        height: 250px;
    }

    .member-info {
        padding: 25px 20px;
    }

    .member-info h3 {
        font-size: 1.5rem;
    }

    .role {
        font-size: 1rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .description {
        font-size: 0.9rem;
    }
}

/* Very Small Mobile (375px and below) */
@media (max-width: 375px) {
    .team-header h1 {
        font-size: 1.8rem;
    }

    .member-image {
        height: 220px;
    }

    .member-info h3 {
        font-size: 1.3rem;
    }

    .role,
    .tagline {
        font-size: 0.95rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .team-member:hover {
        transform: none;
        box-shadow: none;
    }

    .team-member:active {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .team-member:hover .team-photo {
        transform: none;
    }

    .team-member:active .team-photo {
        transform: scale(1.03);
    }
}

/* Print Styles */
@media print {
    .team-section {
        background: white !important;
    }

    .team-member {
        background: #f9f9f9 !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
        break-inside: avoid;
        page-break-inside: avoid;
    }

    .member-info h3 {
        color: #333 !important;
    }

    .role {
        color: #666 !important;
    }

    .tagline {
        color: #333 !important;
    }

    .description {
        color: #666 !important;
    }

    .team-photo {
        filter: grayscale(100%);
    }
}

/* ===========================================
   FOUNDER SECTION STYLES
   =========================================== */

.founder-section {
    padding: 100px 0;
    background-color: var(--dark);
    color: var(--light);
}

.founder-header {
    text-align: center;
    margin-bottom: 60px;
}

.founder-header h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--orange);
    line-height: 1.2;
    margin-bottom: 15px;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.founder-text {
    text-align: center;
}

.founder-intro,
.founder-experience,
.founder-vision {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--light);
    opacity: 0.95;
}

.founder-experience {
    font-weight: 600;
    color: var(--teal);
    margin-top: 40px;
}

.founder-expertise {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
}

.expertise-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(223, 111, 87, 0.2);
    transform: translateX(10px);
}

.expertise-icon {
    color: var(--orange);
    font-size: 1.5rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(223, 111, 87, 0.1);
    border-radius: 50%;
}

.expertise-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: var(--light);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
}

.founder-vision {
    font-style: italic;
    margin-top: 40px;
    color: var(--teal);
    font-weight: 500;
}

.founder-belief {
    background: linear-gradient(135deg, rgba(223, 111, 87, 0.1), rgba(74, 155, 127, 0.1));
    border-radius: 15px;
    padding: 30px;
    margin-top: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.belief-icon {
    color: var(--orange);
    font-size: 2rem;
    margin-bottom: 20px;
}

.belief-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.5rem);
    line-height: 1.6;
    color: var(--light);
    margin: 0;
    font-weight: 500;
}

.belief-text .highlight {
    color: var(--orange);
    font-weight: 700;
    font-style: italic;
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.founder-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.founder-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--beige);
    padding: 12px 25px;
    border-radius: 50px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 10px 20px rgba(223, 111, 87, 0.3);
}

/* ========== RESPONSIVE BREAKPOINTS FOR FOUNDER SECTION ========== */

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .founder-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .founder-text {
        text-align: left;
    }

    .founder-expertise {
        margin-left: 0;
        margin-right: 0;
    }

    .founder-belief {
        text-align: left;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .founder-header h2 {
        font-size: clamp(3rem, 4vw, 4rem);
    }

    .founder-intro,
    .founder-experience,
    .founder-vision {
        font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    }

    .expertise-text h4 {
        font-size: clamp(1.1rem, 1.2vw, 1.2rem);
    }

    .belief-text {
        font-size: clamp(1.3rem, 1.6vw, 1.6rem);
    }

    .founder-photo {
        height: 550px;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .founder-section {
        padding: 60px 0;
    }

    .founder-header h2 {
        font-size: 2rem;
    }

    .founder-header {
        margin-bottom: 40px;
    }

    .founder-intro,
    .founder-experience,
    .founder-vision {
        font-size: 1rem;
    }

    .expertise-item {
        padding: 15px 20px;
        gap: 15px;
    }

    .expertise-icon {
        font-size: 1.2rem;
        min-width: 35px;
        height: 35px;
    }

    .expertise-text h4 {
        font-size: 0.95rem;
    }

    .founder-photo {
        height: 350px;
    }

    .founder-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .founder-belief {
        padding: 20px;
    }

    .belief-text {
        font-size: 1.1rem;
    }

    .belief-icon {
        font-size: 1.5rem;
    }
}

/* Very Small Mobile (375px and below) */
@media (max-width: 375px) {
    .founder-photo {
        height: 300px;
    }

    .founder-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .expertise-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .expertise-item:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.05);
    }

    .expertise-item:active {
        transform: translateX(5px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(223, 111, 87, 0.2);
    }
}

/* Print Styles */
@media print {
    .founder-section {
        background: white !important;
        color: #333 !important;
    }

    .founder-header h2 {
        color: #333 !important;
    }

    .founder-intro,
    .founder-experience,
    .founder-vision,
    .expertise-text h4,
    .belief-text {
        color: #333 !important;
    }

    .founder-experience,
    .founder-vision {
        color: #555 !important;
    }

    .expertise-item {
        background: #f9f9f9 !important;
        border: 1px solid #ddd !important;
    }

    .expertise-icon {
        color: #333 !important;
        background: #eee !important;
    }

    .founder-belief {
        background: #f0f0f0 !important;
        border: 1px solid #ddd !important;
    }

    .belief-text .highlight {
        color: #333 !important;
    }

    .founder-badge {
        background: #333 !important;
        color: white !important;
    }

    .founder-photo {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
}

/* ===========================================
   MARQUEE QUOTE SECTION
   =========================================== */

.marquee-section {
    background: linear-gradient(135deg, rgba(223, 111, 87, 0.1), rgba(74, 155, 127, 0.1));
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    flex-shrink: 0;
}

.quote-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--orange);
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.quote-text:hover {
    color: var(--teal);
    transform: scale(1.05);
}

.quote-icon {
    color: var(--beige);
    font-size: clamp(2rem, 3vw, 3rem);
    opacity: 0.7;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Pause animation on hover */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* Gradient overlay for edges */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right,
            var(--dark) 0%,
            rgba(39, 38, 45, 0.9) 50%,
            transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left,
            var(--dark) 0%,
            rgba(39, 38, 45, 0.9) 50%,
            transparent 100%);
}

/* ========== RESPONSIVE BREAKPOINTS FOR MARQUEE ========== */

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .marquee-section {
        padding: 80px 0;
    }

    .marquee-content {
        gap: 50px;
    }

    .quote-text {
        font-size: clamp(3rem, 4.5vw, 4.5rem);
    }

    .quote-icon {
        font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .marquee-section {
        padding: 100px 0;
    }

    .quote-text {
        font-size: clamp(3.5rem, 5vw, 5rem);
    }

    .quote-icon {
        font-size: clamp(3rem, 4vw, 4rem);
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 150px;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .marquee-section {
        padding: 40px 0;
    }

    .marquee-content {
        gap: 25px;
    }

    .quote-text {
        font-size: 1.8rem;
    }

    .quote-icon {
        font-size: 1.5rem;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 50px;
    }
}

/* Very Small Mobile (375px and below) */
@media (max-width: 375px) {
    .marquee-content {
        gap: 20px;
    }

    .quote-text {
        font-size: 1.6rem;
    }

    .quote-icon {
        font-size: 1.3rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        justify-content: center;
        width: 100%;
    }

    .marquee-content {
        justify-content: center;
    }

    .marquee-content:nth-child(2) {
        display: none;
    }

    .quote-icon {
        animation: none;
    }

    .marquee-container::before,
    .marquee-container::after {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .quote-text:hover {
        transform: none;
        color: var(--orange);
    }

    .quote-text:active {
        transform: scale(1.05);
        color: var(--teal);
    }
}

/* Print Styles */
@media print {
    .marquee-section {
        background: #f0f0f0 !important;
        border: 1px solid #ddd !important;
        padding: 30px 0 !important;
    }

    .quote-text {
        color: #333 !important;
        text-shadow: none !important;
        font-size: 2rem !important;
    }

    .quote-icon {
        color: #666 !important;
        animation: none !important;
    }

    .marquee-container::before,
    .marquee-container::after {
        display: none !important;
    }

    .marquee-track {
        animation: none !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .marquee-content:nth-child(2) {
        display: none !important;
    }
}

/* ===========================================
   MARQUEE QUOTE SECTION - SEPARATE PARTS
   =========================================== */

.marquee-section {
    background: linear-gradient(135deg,
            rgba(223, 111, 87, 0.15) 0%,
            rgba(74, 155, 127, 0.15) 50%,
            rgba(223, 111, 87, 0.15) 100%);
    padding: 70px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
    flex-shrink: 0;
}

.quote-part {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--light);
    line-height: 1.2;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 0;
}

/* Different colors for each part */
.quote-part:nth-child(1),
.quote-part:nth-child(7),
.quote-part:nth-child(13) {
    color: var(--orange);
    background: linear-gradient(135deg, var(--orange), #ff8c5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-part:nth-child(3),
.quote-part:nth-child(9),
.quote-part:nth-child(15) {
    color: var(--beige);
    background: linear-gradient(135deg, var(--beige), #fff5e6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-part:nth-child(5),
.quote-part:nth-child(11),
.quote-part:nth-child(17) {
    color: var(--teal);
    background: linear-gradient(135deg, var(--teal), #6bc2a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-part:hover {
    transform: translateY(-5px) scale(1.05);
}

.quote-icon {
    color: rgba(255, 255, 255, 0.3);
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    font-weight: 900;
    animation: iconFloat 3s ease-in-out infinite;
    position: relative;
    top: -2px;
}

@keyframes iconFloat {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    50% {
        opacity: 0.7;
        transform: translateY(-5px);
    }
}

/* Pause animation on hover */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

/* Gradient overlay for edges */
.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right,
            var(--dark) 0%,
            rgba(39, 38, 45, 0.8) 30%,
            transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left,
            var(--dark) 0%,
            rgba(39, 38, 45, 0.8) 30%,
            transparent 100%);
}

/* Decorative elements */
.marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    animation: floatPattern 30s linear infinite;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .marquee-section {
        padding: 90px 0;
    }

    .marquee-content {
        gap: 40px;
    }

    .quote-part {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }

    .quote-icon {
        font-size: clamp(2rem, 3vw, 3rem);
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 150px;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .marquee-section {
        padding: 110px 0;
    }

    .marquee-content {
        gap: 50px;
    }

    .quote-part {
        font-size: clamp(3rem, 4.5vw, 4.5rem);
    }

    .quote-icon {
        font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 200px;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .marquee-section {
        padding: 50px 0;
    }

    .marquee-content {
        gap: 20px;
    }

    .quote-part {
        font-size: 1.6rem;
    }

    .quote-icon {
        font-size: 1.2rem;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 40px;
    }
}

/* Very Small Mobile (375px and below) */
@media (max-width: 375px) {
    .marquee-content {
        gap: 15px;
    }

    .quote-part {
        font-size: 1.4rem;
    }

    .quote-icon {
        font-size: 1rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        justify-content: center;
        width: 100%;
    }

    .marquee-content {
        justify-content: center;
        animation: none;
    }

    .marquee-content:nth-child(2) {
        display: none;
    }

    .quote-icon {
        animation: none;
    }

    .marquee-container::before,
    .marquee-container::after {
        display: none;
    }

    .marquee-section::before {
        animation: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .quote-part:hover {
        transform: none;
    }

    .quote-part:active {
        transform: translateY(-3px) scale(1.03);
    }
}

/* Print Styles */
@media print {
    .marquee-section {
        background: #f0f0f0 !important;
        border: 1px solid #ddd !important;
        padding: 30px 0 !important;
    }

    .quote-part {
        color: #333 !important;
        text-shadow: none !important;
        font-size: 1.5rem !important;
        background: none !important;
        -webkit-text-fill-color: #333 !important;
    }

    .quote-icon {
        color: #666 !important;
        animation: none !important;
    }

    .marquee-container::before,
    .marquee-container::after,
    .marquee-section::before {
        display: none !important;
    }

    .marquee-track {
        animation: none !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .marquee-content:nth-child(2) {
        display: none !important;
    }
}