/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 1.1s ease, transform 1.1s ease;
}

.animate-on-scroll.fade-in-up {
    transform: translateY(30px);
}

.animate-on-scroll.fade-in-left {
    transform: translateX(-30px);
}

.animate-on-scroll.fade-in-right {
    transform: translateX(30px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
.cta-button {
    border: none;
    border-radius: 0;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

button:hover,
.cta-button:hover {
    background-color: #1a1a1a;
}

button:focus-visible,
.cta-button:focus-visible {
    outline: 2px solid #6fa491;
    outline-offset: 2px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: none;
    z-index: 1000;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Video Hero Section */
.video-hero {
    position: relative;
    width: 100%; /* VIDEO SIZE: section spans full viewport width */
    padding: 0 0 4rem 0; /* VIDEO SPACING: bottom padding under the video section (increased for better spacing) */
    margin: 0 auto; /* VIDEO SPACING: centers the video section horizontally */
    background-color: #ffffff;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-hero .rw-container {
    width: 100%; /* VIDEO SIZE: container uses full width inside its max-width */
    aspect-ratio: 3 / 4; /* VIDEO SIZE: 3:4 portrait aspect ratio on mobile */
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto; /* VIDEO SPACING: bottom margin below the video container */
}

/* Video Hero Section */
.video-hero {
    position: relative;
    width: 100%; /* VIDEO SIZE: section spans full viewport width */
    padding: 0 0 4rem 0; /* VIDEO SPACING: bottom padding under the video section */
    margin: 0 auto; /* VIDEO SPACING: centers the video section horizontally */
    background-color: #ffffff;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-hero .rw-container {
    width: 100%; /* VIDEO SIZE: container uses full width inside its max-width */
    aspect-ratio: 3 / 4; /* VIDEO SIZE: 3:4 portrait aspect ratio on mobile */
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto; /* VIDEO SPACING: bottom margin below the video container */
}

@media (min-width: 768px) {
    .video-hero .rw-container {
        aspect-ratio: 16 / 9; /* VIDEO SIZE: 16:9 widescreen on tablet */
        height: auto;
        min-height: 25rem;
        max-height: 40rem;
    }
}

@media (min-width: 1024px) {
    .video-hero .rw-container {
        max-height: 56.25rem; /* VIDEO SIZE: taller max height for desktop hero */
        aspect-ratio: 2; /* VIDEO SIZE: forces a 2:1 aspect ratio on large screens */
        height: auto;
        min-height: auto;
    }
}

@media (min-width: 1600px) {
    .video-hero .rw-container {
        width: auto;
        border-radius: 0.1875rem;
    }
}

.video-hero > div > div {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-hero .rw-container > div {
    width: 100%; /* VIDEO SIZE: inner wrapper matches container width */
    height: 100%; /* VIDEO SIZE: inner wrapper matches container height */
    border-radius: 0.75rem;
    overflow: hidden;
    position: relative;
}

.video-hero video {
    width: 100%; /* VIDEO SIZE: video fills the wrapper horizontally */
    height: 100%; /* VIDEO SIZE: video fills the wrapper vertically */
    object-fit: cover;
    display: block;
}

/* Hero header: separate mobile/desktop video sources */
.hero-video-mobile {
    display: block;
}

.hero-video-desktop {
    display: none;
}

@media (min-width: 768px) {
    .hero-video-mobile {
        display: none;
    }

    .hero-video-desktop {
        display: block;
    }
}

.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* VIDEO SIZE: overlay video layer spans full width */
    height: 100%; /* VIDEO SIZE: overlay video layer spans full height */
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.header-video video {
    width: 100%; /* VIDEO SIZE: header video fills its container horizontally */
    height: 100%; /* VIDEO SIZE: header video fills its container vertically */
    object-fit: cover;
}

.header-container {
    max-width: 90rem; /* HEADER SIZE: maximum width of the header content */
    width: 100%; /* HEADER SIZE: header stretches to full available width */
    margin: 0 auto; /* HEADER MARGINS: centers header content within the page */
    padding: 0 7.5rem; /* HEADER PADDING: left/right inner spacing on desktop */
    height: 4.375rem; /* HEADER HEIGHT: default header bar height */
    display: flex;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-left: auto;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.lang-toggle {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-separator {
    color: #000000;
}

.lang-btn {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 0;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 2.2rem;
    width: auto;
    cursor: pointer;
}

.nav {
    display: flex;
    gap: 3.75rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.375rem;
    letter-spacing: -0.015em;
    color: #000000;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #6fa491;
}

/* Inactive nav item styling */
.nav-link.inactive {
    color: #6f6f6e;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    border: none;
    background-color: transparent;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    box-shadow: none;
    transition: none;
}

.hamburger-menu:hover,
.hamburger-menu:active {
    background-color: transparent;
}

.hamburger-menu span {
    width: 24px;
    height: 2px;
    background-color: #000000;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateX(-5px);
}

.hamburger-menu.active span:nth-child(2) {
    transform: translateX(5px);
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateX(-5px);
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.lang-btn {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: -0.015em;
    color: #ffffff;
    cursor: pointer;
    padding: 8px 16px;
    background-color: #6F6F6E;
    border-radius: 5px;
    border: none;
    transition: background-color 0.2s ease;
}

.lang-btn:hover {
    background-color: #5a5a59;
}

.lang-btn.active {
    background-color: #6F6F6E;
    color: #ffffff;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background-color: #ffffff;
    padding: 120px 0;
}

.hero-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.hero-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: 0;
    color: #000000;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}

.hero-intro {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #000000;
    margin: 0px auto 60px auto; /* margin: 15px auto; */
    text-align: center;
    max-width: 720px;
    width: 100%;
}

.hero-intro-secondary {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #000000;
    margin: 0 0 32px 0;
    max-width: 100%;
    width: 100%;
}

.hero-video-container {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.03);
    overflow: hidden;
    position: relative;
    min-width: 0;
    width: 100%;
}

.hero-video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
}

.hero-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin: 32px auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.hero-content-row-reverse {
    grid-template-columns: 1fr 1fr;
}

.hero-text-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-text-block p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #000000;
    margin: 0;
}

.hero-video-placeholder {
    background: #949494;
    border-radius: 10px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 315px;
}

.video-label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 19px;
    color: #FFFFFF;
}

/* ============================================
   BRANDS SECTION
   ============================================ */

.brands {
    background-color: #ffffff;
    padding: 120px 0;
    border-top: 1px solid #f0f0f0;
}

.brands-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.brands-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.brands-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: -0.015em;
    color: #000000;
    margin: 0;
}

.brands-right {
    display: flex;
    flex-direction: column;
}

.brands-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #000000;
    margin: 0 0 40px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #f9f9f9; */
    /* border-radius: 8px; */
    padding: 20px;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* always 3 logos per row */
    gap: 30px;
    /* adjust spacing as needed */
}


/* ============================================
   CONTACT / CTA SECTION
   ============================================ */

.contact {
    background-color: #ffffff;
    padding: 120px 0;
    border-top: 1px solid #f0f0f0;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: -0.015em;
    color: #000000;
}

.contact-right {
    display: flex;
    flex-direction: column;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #000000;
}

.company-address {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #6f6f6e;
}

.company-email a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #6fa491;
    transition: color 0.2s ease;
}

.company-email a:hover {
    color: #5a8a7a;
}

/* CTA button on contact section */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    width: fit-content;
    border: 1px solid #000000;
    letter-spacing: 0.5px;

    cursor: pointer;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.15s ease;
    box-shadow: none;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #6fa491;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    transition: background-color 0.2s ease;
    width: fit-content;
}

.cta-button:hover {
    background-color: #5a8a7a;
} */

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    background-color: #ffffff;
    padding: 120px 0;
    border-top: 1px solid #f0f0f0;
}

.testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
}

.testimonials-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 46px;
    letter-spacing: -0.015em;
    color: #000000;
    margin: 0;
}

.testimonials-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #6f6f6e;
    margin: 0;
}

.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.testimonial-card {
    flex: 0 0 65%;
    min-width: 0;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-company {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: #000000;
    padding-top: 16px;
}

.testimonial-quote {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.015em;
    color: #000000;
    margin: 0;
    border: none;
    padding: 0;
}

.testimonial-endorser {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

.testimonial-role {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #6f6f6e;
    margin: 0;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid #f0f0f0;
}

.testimonials-counter {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonials-current {
    font-weight: 600;
}

.testimonials-separator {
    color: #6f6f6e;
    margin: 0 2px;
}

.testimonials-total {
    color: #6f6f6e;
}

.testimonials-arrows {
    display: flex;
    gap: 12px;
}

.testimonial-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #000000;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, color 0.25s ease;
    padding: 0;
}

.testimonial-arrow:hover {
    background-color: #000000;
    color: #ffffff;
}

.testimonial-arrow:disabled {
    border-color: #e0e0e0;
    color: #e0e0e0;
    cursor: default;
    background-color: #ffffff;
}

.testimonial-arrow:disabled:hover {
    background-color: #ffffff;
    color: #e0e0e0;
}

.testimonial-arrow svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
}

.footer-bar {
    width: 100%;
    height: 80px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-copyright {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 46px;
    color: #6FA491;
    margin: 0;
}

.footer-logo-container {
    display: none;
}

.footer-logo {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px - 1024px) */
/* Mobile Styles */
@media (max-width: 767px) {
    .header-container {
        padding: 0 20px; /* HEADER PADDING (mobile): reduces left/right padding */
    }

    .video-hero {
        padding-bottom: 3rem; /* VIDEO SPACING (mobile): ensure spacing below video on small screens */
    }

    .header-video video {
        opacity: 0.8;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 60px; /* HEADER PADDING (tablet): side padding for medium screens */
    }

    .hero-container,
    .brands-container,
    .contact-container {
        padding: 0 60px;
        gap: 60px;
    }

    .nav {
        gap: 40px;
    }

    .hero-title,
    .brands-title,
    .contact-title {
        font-size: 36px;
        line-height: 40px;
    }

    .hero-content-row {
        gap: 40px;
    }

    .hero-video-placeholder {
        min-height: 250px;
    }

    .brands-container {
        padding: 0 60px;
        gap: 60px;
    }

    .brands-left {
        gap: 60px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .brand-item {
        height: auto;
        padding: 20px 10px;
    }

    .testimonials-container {
        padding: 0 60px;
    }

    .testimonials-header {
        gap: 60px;
        margin-bottom: 60px;
    }

    .testimonials-title {
        font-size: 36px;
        line-height: 40px;
    }

    .testimonial-card {
        flex: 0 0 75%;
        padding-right: 40px;
    }

    .testimonial-quote {
        font-size: 24px;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .header-container {
        padding: 0 20px; /* HEADER PADDING (mobile): base horizontal padding */
        height: auto; /* HEADER HEIGHT (mobile): let header grow with content */
        flex-wrap: wrap;
        gap: 16px;
        justify-content: space-between;
        padding-top: 16px; /* HEADER PADDING (mobile): extra top padding */
        padding-bottom: 16px; /* HEADER PADDING (mobile): extra bottom padding */
    }

    .logo-img {
        height: 1.5rem;
        cursor: pointer;
    }

    .footer-logo {
        cursor: pointer;
    }

    .nav {
        order: 3;
        width: 100%;
        gap: 20px;
        justify-content: flex-start;
        margin-top: 12px;
    }

    .nav-link {
        font-size: 16px;
        line-height: 18px;
    }

    .lang-toggle {
        gap: 6px;
    }

    .lang-btn {
        font-size: 16px;
        line-height: 18px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-container,
    .contact-container {
        padding: 0 24px;
        gap: 40px;
    }

    .brands-container {
        padding: 0 24px;
        gap: 15px;
    }

    .brands-subtitle {
        margin-top: -20px;
        margin-bottom: 50px;
    }

    .hero-content-row,
    .hero-content-row-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 20px 0;
        display: flex;
        flex-direction: column;
    }

    /* Reorder hero content on mobile: intro -> first video -> first text block -> second video -> last text */
    .hero-content-row .hero-video-container {
        order: 1;
    }

    .hero-content-row .hero-text-block {
        order: 2;
    }

    .hero-content-row-reverse .hero-video-container {
        order: 1;
    }

    .hero-content-row-reverse .hero-text-block {
        order: 2;
    }

    .hero-title,
    .contact-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .brands-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 0;
    }

    .hero-container {
        gap: 10px;
    }

    .hero-intro {
        margin: 0px auto 35px auto; /* margin: 10px auto; */
    }

    .hero-intro,
    .hero-text-block p,
    .hero-intro-secondary,
    .brands-subtitle,
    .company-address,
    .company-email {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-video-container {
        min-height: 180px;
        aspect-ratio: 16 / 9;
    }

    .hero-video-placeholder {
        min-height: 200px;
    }

    .video-label {
        font-size: 24px;
    }

    .brands {
        padding: 60px 0;
    }

    .brands-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials-container {
        padding: 0 24px;
    }

    .testimonials-header {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .testimonials-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 0;
    }

    .testimonials-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .testimonial-card {
        flex: 0 0 85%;
        padding-right: 24px;
        gap: 20px;
    }

    .testimonial-quote {
        font-size: 20px;
        line-height: 1.4;
    }

    .testimonial-company {
        font-size: 16px;
    }

    .testimonial-name,
    .testimonial-role {
        font-size: 14px;
    }

    .testimonials-nav {
        margin-top: 40px;
        padding-top: 24px;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }

    .testimonial-arrow svg {
        width: 18px;
        height: 18px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        /* gap: 20px; */
    }

    .brand-item {
        height: auto;
        padding: 16px 8px;
    }

    .brand-logo {
        max-height: 80px;
    }

    .contact-info {
        gap: 30px;
    }

    .cta-button {
        width: fit-content;
        padding: 14px 24px;
        font-size: 14px;
    }

    .footer-logo-container {
        display: none;
    }

    .footer-logo {
        display: none;
    }

    .footer-bar {
        margin-top: 30px;
        height: 60px;
    }

    .footer-copyright {
        font-size: 11px;
    }
}

/* Small mobile (up to 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 12px 16px; /* HEADER PADDING (small mobile): tight side padding */
    }

    .nav {
        gap: 16px;
    }

    .nav-link {
        font-size: 14px;
    }

    .hero-container,
    .brands-container,
    .contact-container {
        padding: 0 16px;
    }

    .hero-title,
    .brands-title,
    .contact-title {
        font-size: 28px;
        line-height: 28px;
    }

    /* .brands-grid {
        grid-template-columns: 1fr;
    } */

    .brand-item {
        height: 80px;
    }

    .brand-logo {
        max-height: 90px;
    }

    .testimonials-container {
        padding: 0 16px;
    }

    .testimonial-card {
        flex: 0 0 90%;
        padding-right: 16px;
    }

    .testimonial-quote {
        font-size: 18px;
    }
}

/* ============================================
   MODAL STYLES
   
============================================ */

.submit-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
}

.submit-container .success-text {
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 14px 0;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(0, 0, 0, 0.5);

    /* hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* when open */
.modal.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* card */
.modal-content {
    background-color: #ffffff;
    padding: 32px 28px;
    border-radius: 18px;
    width: 90%;
    max-width: 460px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    position: relative;

    /* start slightly down & faded */
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* when modal is visible, animate card up + fade in */
.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.contact-modal .modal-content {
    max-width: 520px;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.contact-modal .close-modal {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 32px;
    height: 32px;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #6f6f6e;
    background: transparent;
    cursor: pointer;
    border: none;
    transition: color 0.2s ease;
}

.contact-modal .close-modal:hover {
    color: #000000;
}

.contact-modal h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #e2e2e2;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background-color: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 1px #000000;
    background-color: #ffffff;
}

.submit-btn {
    align-self: flex-start;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #000000;
    letter-spacing: 0.5px;
    box-shadow: none;
    background-color: #000000;
    color: #ffffff;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.15s ease;
}

.submit-btn:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
}

.submit-btn:active {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}


/* .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card */
.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: slideUp 0.3s ease-in-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #000;
}

.modal-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px;
    color: #000;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6FA491;
}


@media (max-width: 767px) {
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .modal-content h3 {
        font-size: 20px;
    }
}

/* Mobile Menu Modal */
.mobile-menu-modal {
    background: rgba(0, 0, 0, 0.45);
}

.mobile-menu-content {
    width: 85%;
    max-width: 400px;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.mobile-menu-content .close-modal {
    border-radius: 0;
    background: transparent;
    width: 32px;
    height: 32px;
    right: 16px;
    top: 16px;
    color: #6f6f6e;
}

.mobile-menu-content .close-modal:hover {
    background: transparent;
    color: #000000;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s ease;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: #6fa491;
}

/* Show hamburger menu on tablet and mobile */
@media (max-width: 1024px) {
    .hamburger-menu {
        display: flex;
    }

    .nav {
        display: none;
    }
}

/* Video Container Styles */
.rw-container, .rw-post-container {
    margin-left: auto; /* VIDEO MARGINS: center video container horizontally */
    margin-right: auto; /* VIDEO MARGINS: center video container horizontally */
    padding-left: 1.25rem; /* VIDEO PADDING: horizontal inner padding left */
    padding-right: 1.25rem; /* VIDEO PADDING: horizontal inner padding right */
}

.rw-container {
    max-width: 1600px; /* VIDEO SIZE: maximum overall width of the video container */
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.object-cover {
    object-fit: cover;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.overflow-hidden {
    overflow: hidden;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.opacity-20 {
    opacity: 0.2;
}

.bg-black {
    background-color: #000000;
}
