@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Montserrat:wght@900&family=Space+Grotesk:wght@700&family=Anton&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@900&family=Russo+One&family=Michroma&family=Quantico:wght@700&family=Days+One&display=swap');

:root {
    --primary-color: #002BFF;
    --accent-color: #FF3366;
    --text-light: #ffffff;
    --text-dark: #0A0A0A;
    --bg-light: #F4F5F7;
    --bg-dark: #050505;
    --text-muted: #888888;
    --border-color: #E0E0E0;
    --success-color: #00E676;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --font-display: 'Impact', 'Arial Black', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

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




.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5vw;
    position: relative;
}


.section-padding {
    padding: 150px 0;
}

.section-padding-sm {
    padding: 80px 0;
}


.bg-white {
    background-color: #fff;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: white;
}


.grid-2-cols {
    display: grid;
    gap: 80px;
}

@media (min-width: 1024px) {
    .grid-2-cols {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}


.grid-5-7 {
    display: grid;
    gap: 80px;
}

@media (min-width: 1024px) {
    .grid-5-7 {
        grid-template-columns: 5fr 7fr;
        align-items: center;
    }
}


.grid-4-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .grid-4-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4-cols {
        grid-template-columns: repeat(4, 1fr);
    }
}


.bg-text-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-family: var(--font-display);
    color: rgba(0, 0, 0, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    text-transform: uppercase;
    letter-spacing: -5px;
}

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

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Typography refinements */
.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.section-desc {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin-top: 1.5rem;
}

.eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: #0000cc;
}

/* =========================================
   Header & Navigation
   ========================================= */

.site-header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}


body.home .site-header {
    position: absolute;
    background: transparent;
    border-bottom: none;
    color: #fff;
}

body.home .site-header a,
body.home .site-header .menu-btn,
body.home .site-header .icon-btn,
body.home .site-header .logo h1 {
    color: #fff !important;
}

body.home .site-header .menu-btn {
    border-color: rgba(255, 255, 255, 0.5) !important;
}


.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

body.home .site-header.scrolled {
    position: fixed;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.8);
}

body.home .site-header.scrolled a,
body.home .site-header.scrolled .menu-btn,
body.home .site-header.scrolled .icon-btn,
body.home .site-header.scrolled .logo h1 {
    color: var(--text-dark) !important;
}

body.home .site-header.scrolled .menu-btn {
    border-color: rgba(0, 0, 0, 0.2) !important;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.header-right {
    justify-content: flex-end;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: background-color 0.2s, border-color 0.2s;
}

.site-header.scrolled .menu-btn,
body:not(.home) .site-header .menu-btn {
    border-color: rgba(0, 0, 0, 0.2);
}

.desktop-nav {
    display: none;
    gap: 32px;
    align-items: center;
}

.desktop-nav>a,
.desktop-nav>.has-dropdown>a {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    cursor: pointer;
}

.desktop-nav>a::after,
.desktop-nav>.has-dropdown>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav>a:hover::after,
.desktop-nav>.has-dropdown:hover>a::after {
    width: 100%;
}

/* Dropdown styling */
.has-dropdown {
    position: relative;
}

.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.has-dropdown>a::before {
    content: '\25BC';
    font-size: 0.6rem;
    order: 2;
    transition: transform 0.3s;
}

.has-dropdown:hover>a::before {
    transform: rotate(180deg);
}


.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;

    background: transparent;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);

    left: -20px;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.25s ease-out, transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.25s;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    z-index: 1000;
    clip-path: inset(-20px -20px -20px -20px);

}


.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 40px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.05s;

}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

.icon-btn {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.text-btn {
    font-size: 0.95rem;
    font-weight: 500;
}

.search-container {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 10px 20px;
    backdrop-filter: blur(5px);
}

.site-header.scrolled .search-container,
body:not(.home) .site-header .search-container {
    background-color: rgba(0, 0, 0, 0.05);
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background-color: #000;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Added a subtle gradient overlay to ensure text is readable without hiding the video */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.hero-title {
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 900;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin: 0;
    font-family: var(--font-display);
}

.hero-info-card {
    position: absolute;
    bottom: 80px;
    right: 5vw;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.info-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

.video-control-btn {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    backdrop-filter: blur(5px);
}

/* =========================================
   Trust Badges
   ========================================= */
.trust-badges {
    padding: 60px 0;
    background: #fff;
}

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

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.badge-item span {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


.factory-intro {
    position: relative;
    overflow: hidden;
}

.highlights-list {
    margin-top: 40px;
    border-left: 2px solid var(--border-color);
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.highlight-item {
    position: relative;
}

.highlight-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.highlight-item h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.highlight-item p {
    color: var(--text-muted);
}

.factory-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    object-fit: cover;
    z-index: 1;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.factory-image-wrapper:hover .image-main {
    filter: grayscale(0%);
}

.image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    object-fit: cover;
    z-index: 2;
    box-shadow: 20px -20px 0 rgba(255, 255, 255, 1);
}

.play-btn-huge {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 43, 255, 0.4);
    transition: transform 0.3s;
}

.play-btn-huge:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.floating-stats {
    position: absolute;
    top: 10%;
    left: -10%;
    background: var(--bg-dark);
    color: white;
    padding: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.floating-stats .stat-val {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1;
    color: var(--primary-color);
}

.floating-stats .stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* =========================================
   Product Showcase - Editorial Redesign
   ========================================= */
.product-showcase {
    padding: 150px 0;
    background-color: var(--bg-light);
    position: relative;
}

.product-header-layout {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
}

@media (min-width: 1024px) {
    .product-header-layout {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.products-editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .products-editorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .products-editorial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card:nth-child(3n-1) {
        transform: translateY(60px);
    }
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-img-wrapper {
    background-color: #EBECEF;
    height: 400px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.4s;
}

.product-img-wrapper img {
    height: 70%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    mix-blend-mode: multiply;
}

.product-card:hover .product-img-wrapper {
    background-color: #E0E2E6;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1) rotate(-5deg);
}

.product-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.product-info {
    padding: 30px 0 0 0;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--text-dark);
    padding-bottom: 15px;
    display: inline-block;
}

.product-info p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.explore-btn .arrow-circle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.product-card:hover .explore-btn .arrow-circle {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* =========================================
   Materials Section - Dark Mode Contrast
   ========================================= */
.materials-section {
    padding: 150px 0;
    background-color: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.materials-section .bg-text-watermark {
    color: rgba(255, 255, 255, 0.03);
}

.materials-section .eyebrow {
    color: white;
}

.materials-section .eyebrow::before {
    background-color: white;
}

.materials-section .section-title {
    color: white;
}

.grades-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.grade-row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

@media (min-width: 768px) {
    .grade-row {
        grid-template-columns: 1fr 2fr 3fr;
        align-items: center;
        gap: 40px;
    }
}

.grade-row:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.grade-row h3 {
    font-size: 4rem;
    font-family: var(--font-display);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.grade-row:hover h3 {
    color: white;
    -webkit-text-stroke: 0;
}

.grade-row .grade-label {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
}

.grade-row .grade-desc {
    color: #A0A0A0;
}

.materials-layout {
    display: grid;
    gap: 60px;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .materials-layout {
        grid-template-columns: 5fr 7fr;
        align-items: center;
    }
}

.material-image-block {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.material-image-block img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.2);
}

.material-tags {
    position: absolute;
    bottom: 40px;
    left: -40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.material-tag {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}



.industry-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    color: white;
}

.industry-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.6s, filter 0.6s;
}

.industry-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.industry-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.industry-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   Capabilities Section
   ========================================= */
.capabilities-section {
    padding: 150px 0;
    background-color: var(--bg-light);
}

.capabilities-layout {
    display: grid;
    gap: 80px;
}

@media (min-width: 1024px) {
    .capabilities-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-number {
    font-size: 3rem;
    font-family: var(--font-display);
    color: transparent;
    -webkit-text-stroke: 1px var(--text-muted);
    line-height: 1;
    transition: color 0.3s, -webkit-text-stroke 0.3s;
}

.step-item:hover .step-number {
    color: var(--primary-color);
    -webkit-text-stroke: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 800;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.tolerance-card {
    background: white;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.table th,
.table td {
    padding: 15px 0;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
}

/* =========================================
   Process Steps
   ========================================= */
.process-steps {
    padding: 150px 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 80px;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.process-item h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 20px 0 15px;
    text-transform: uppercase;
}

.process-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* =========================================
   Testimonials Section
   ========================================= */
.testimonials-section {
    padding: 150px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: white;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 40px;
    flex-grow: 1;
    line-height: 1.8;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-card .author-initial {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-display);
}

.testimonial-card .author-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.testimonial-card .author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* =========================================
   FAQ Section
   ========================================= */
.faq-section {
    padding: 150px 0;
    background: #fff;
}

.faq-accordion {
    border-top: 2px solid var(--text-dark);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 30px 0;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 0 30px 0;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Modal & Footer */
.site-footer {
    padding: 80px 0 40px;
    background: #050505;
    color: white;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-desc {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-links h3,
.footer-contact h3 {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact li {
    margin-bottom: 15px;
    color: #aaa;
    font-size: 0.95rem;
    display: flex;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #555;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-bottom-links a,
.footer-bottom-links span {
    color: #555;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #aaa;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.modal-content video {
    width: 100%;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
}