/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-text);
    overflow-x: hidden;
}

/* CSS Variables (Colors, Fonts, Spacing) */
:root {
    --brand-navy: #0F1B2D; /* Primary navy from logo */
    --brand-gold: #D6AC2C; /* Gold from logo */
    --brand-yellow: #FFC107; /* Optional yellow accent */
    --dark-navy: #0a141f; /* Darker navy for hover states */
    --light-navy: #1a2a3d; /* Lighter navy for accents */
    --cream-white: #FAF7F2;
    --light-beige: #F5F5DC;
    --white: #FFFFFF;
    --black: #1f2937;
    --gray-text: #666666;
    --light-gray: #f3f4f6;
    
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 8px;
    --transition: all 0.4s ease;
}

/* Global Hover Effects */
* {
    transition: all 0.4s ease;
}

/* Ensure smooth transitions for all interactive elements */
button, a, input, select, textarea, .btn, .card, .feature-item, .benefit-card, .leader-card, .product-card {
    transition: all 0.4s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Layout & Grid System */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 15;
    pointer-events: auto;
}

.btn-primary {
    background: var(--brand-navy);
    color: var(--white);
    border: 2px solid var(--brand-navy);
}

.btn-primary:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(214, 172, 44, 0.8);
    text-shadow: 0 0 5px rgba(15, 27, 45, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--brand-navy);
    border: 2px solid var(--brand-navy);
}

.btn-secondary:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
    border-color: var(--brand-gold);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(214, 172, 44, 0.8);
    text-shadow: 0 0 5px rgba(15, 27, 45, 0.3);
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.loader-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.loader-logo-icon {
    height: 90px;
    width: auto;
    animation: pulse 2s ease-in-out infinite;
    transition: var(--transition);
}

.loader-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--light-beige);
    border-top: 3px solid var(--brand-navy);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.nav-logo .logo {
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-gold);
    text-shadow: 0 0 8px rgba(214, 172, 44, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-gold);
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(214, 172, 44, 0.8);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--brand-navy);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--dark-navy) 100%);
    overflow: hidden;
}

/* Video Playlist Container */
.video-playlist-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Video Styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-video.active {
    opacity: 1;
    z-index: 2;
}

/* Fallback Background */
.hero-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/about/Logo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-fallback-bg.show {
    opacity: 1;
    z-index: 3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 27, 45, 0.6); /* Navy overlay */
    z-index: 4;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.title-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-gold) 50%, var(--brand-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
    transition: all 0.6s ease;
    animation: titlePulse 3s ease-in-out infinite;
}

.title-line:hover {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-yellow) 50%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transform: scale(1.02);
}

.title-subtitle {
    display: block;
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--brand-gold);
    margin-top: 0.5rem;
    text-shadow: 0 0 8px rgba(214, 172, 44, 0.6);
    transition: all 0.4s ease;
}

.title-subtitle:hover {
    text-shadow: 0 0 12px rgba(214, 172, 44, 0.8);
    transform: scale(1.05);
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 193, 7, 0.6);
    }
    50% {
        text-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
    }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
    position: relative;
    z-index: 10;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Mission Section - Compact Premium Layout */
.mission-section {
    margin: 2rem 0;
}

.mission-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.mission-header h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--brand-navy);
    font-weight: 700;
}

.mission-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(214, 172, 44, 0.4);
    border-radius: 16px;
    padding: 20px;
    min-height: 320px;
    max-width: 380px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(214, 172, 44, 0.6);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(214, 172, 44, 0.2);
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .mission-card,
    .mission-card-image,
    .mission-card-image img {
        transition: none;
    }
    
    .mission-card:hover {
        transform: none;
    }
    
    .mission-card:hover .mission-card-image {
        transform: none;
    }
}

.mission-card:focus {
    outline: 2px solid var(--brand-gold);
    outline-offset: 2px;
}

.mission-card-image {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-card-image {
    transform: scale(1.03);
}

.mission-card-content h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--brand-navy);
    font-weight: 600;
    line-height: 1.3;
}

.mission-card-content p {
    font-size: 1rem;
    line-height: 1.55;
    color: var(--gray-text);
    margin: 0;
    flex-grow: 1;
}

/* Legal & Documents Section */
.legal-documents-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--white) 100%);
}

.legal-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-text);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.document-card {
    background: var(--white);
    border: 1px solid rgba(214, 172, 44, 0.3);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
    cursor: pointer;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.document-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(214, 172, 44, 0.6);
}

.document-card.coming-soon {
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
}

.document-card.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0.1);
    border-radius: 16px;
    pointer-events: none;
}

.coming-soon-ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--brand-gold);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.document-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--white);
    font-size: 1.2rem;
}

.document-card.coming-soon .document-icon {
    background: #6c757d;
}

.document-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--brand-navy);
    font-weight: 600;
    line-height: 1.3;
}

.document-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.document-status.available {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.document-status.coming-soon {
    background: rgba(255, 193, 7, 0.1);
    color: var(--brand-gold);
}

.document-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn-view, .btn-download {
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-view {
    background: var(--brand-navy);
    color: var(--white);
}

.btn-view:hover {
    background: #0a1424;
    transform: translateY(-1px);
}

.btn-download {
    background: var(--brand-gold);
    color: var(--white);
}

.btn-download:hover {
    background: #c19a26;
    transform: translateY(-1px);
}

.btn-view.disabled, .btn-download.disabled {
    background: #6c757d;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-view.disabled:hover, .btn-download.disabled:hover {
    transform: none;
    background: #6c757d;
}

/* Document Modal */
.document-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.document-modal-content {
    position: relative;
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 1000px;
    height: 90%;
    max-height: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.document-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--gray-text);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.document-modal-close:hover {
    color: var(--brand-navy);
    background: var(--white);
}

.document-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
}

.document-modal-header h3 {
    margin: 0;
    color: var(--brand-navy);
    font-size: 1.3rem;
}

.document-modal-body {
    height: calc(100% - 80px);
    padding: 0;
}

.document-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 16px 16px;
}

/* Documents preview (homepage) and resources page styles */
.documents-preview {
    padding: 3rem 0;
}

.documents-preview .documents-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 1.5rem;
}

.doc-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.doc-card h4 {
    margin: 12px 0;
    color: var(--brand-navy);
    font-size: 1rem;
}

.doc-card .btn { margin-top: 8px; }

/* Make documents grid responsive */
@media (max-width: 900px) {
    .documents-grid, .documents-preview .documents-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .documents-grid, .documents-preview .documents-preview-grid {
        grid-template-columns: 1fr;
    }
}

/* Modern Resources styles */
.resources-page .section-header { text-align: center; margin-bottom: 2rem; }
.modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.document-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(8,15,25,0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}
.document-card-body { text-align: left; }
.document-icon.large { width:56px; height:56px; border-radius:12px; display:flex; align-items:center; justify-content:center; background:var(--brand-navy); color:#fff; font-size:1.2rem; margin-bottom:12px; }
.document-card h4 { font-size:1.05rem; margin:6px 0; color:var(--brand-navy); }
.document-card .muted { color:var(--gray-text); font-size:0.95rem; margin-bottom:12px; }
.document-card-actions { display:flex; gap:10px; align-items:center; }
.document-card .btn { padding:8px 12px; font-size:0.95rem; }

@media (max-width: 900px) {
    .modern-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px) {
    .modern-grid { grid-template-columns: 1fr; }
}

/* Document modal tweaks (override if needed) */
.document-modal { position: fixed; inset: 0; display:none; align-items:center; justify-content:center; background: rgba(0,0,0,0.6); z-index:1200; }
.document-modal .document-modal-content { width: 90%; max-width: 1100px; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.document-modal .document-modal-close { position:absolute; right:16px; top:12px; background:transparent; border:none; font-size:1.5rem; color:var(--brand-navy); cursor:pointer; padding:8px; }
.document-modal .document-modal-body { height: 75vh; }
.document-modal iframe { width:100%; height:100%; border:none; }

/* Legacy feature styles - kept for other sections that might use them */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 3.5rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    min-height: 320px;
}

.feature-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.7);
    border-color: var(--brand-yellow);
    background: rgba(255, 255, 255, 0.8);
}

.feature-content {
    flex: 1;
    max-width: 450px;
}

.feature-content h4 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--brand-navy);
    font-weight: 700;
    line-height: 1.3;
}

.feature-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-text);
    font-weight: 400;
}

.feature-image {
    width: 280px;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-image {
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.8);
    transform: scale(1.05);
}

.feature-item:hover .feature-image img {
    transform: scale(1.1);
}

/* Keep the old feature-icon styles for backward compatibility */
.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--black);
}

/* Responsive styles for feature items */
@media (max-width: 1024px) {
    .feature-image {
        width: 250px;
        height: 180px;
    }
    
    .feature-item {
        gap: 2rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 1rem;
    }
    
    .document-card {
        min-height: 180px;
        padding: 20px;
    }
    
    .document-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-view, .btn-download {
        width: 100%;
        justify-content: center;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 1rem;
    }
    
    .mission-card {
        min-height: 280px;
        max-width: none;
    }
    
    .mission-header h3 {
        font-size: 1.8rem;
    }
    
    .mission-header p {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .feature-image {
        width: 100%;
        max-width: 280px;
        height: 200px;
        margin: 0 auto;
    }
    
    .feature-content {
        max-width: none;
    }
    
    .feature-content h4 {
        font-size: 1.3rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .feature-image {
        height: 150px;
        max-width: 220px;
    }
    
    .feature-item {
        padding: 1.5rem;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-content h4 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.6);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 27, 45, 0.3);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item::after {
    content: 'View More';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--brand-gold);
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    text-shadow: 0 0 10px rgba(214, 172, 44, 0.8);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Products Section */
.products-section {
    padding: var(--section-padding);
    background: var(--white);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid var(--brand-navy);
    background: transparent;
    color: var(--brand-navy);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
    border-color: var(--brand-gold);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(214, 172, 44, 0.8);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.7);
    border-color: var(--brand-yellow);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.6);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 27, 45, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-details {
    background: var(--white);
    color: var(--brand-navy);
    border: 2px solid var(--white);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-details:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
    border-color: var(--brand-gold);
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.product-info p {
    color: var(--gray-text);
}

/* Manufacturing Section */
.manufacturing-section {
    padding: var(--section-padding);
    background: var(--white);
}

.manufacturing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.facility-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-content h3 {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.manufacturing-gallery {
    position: relative;
}

.process-carousel {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-btn {
    background: var(--brand-navy);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.carousel-btn:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(214, 172, 44, 0.8);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-text);
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot:hover {
    background: var(--brand-gold);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(214, 172, 44, 0.6);
}

.dot.active {
    background: var(--brand-navy);
    box-shadow: 0 0 8px rgba(15, 27, 45, 0.6);
}

/* Why Choose Us Section */
.why-us-section {
    padding: var(--section-padding);
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.7);
    border-color: var(--brand-yellow);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

.achievements-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement-item {
    padding: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1.1rem;
    color: var(--gray-text);
    font-weight: 500;
}

/* Leadership Section */
.leadership-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.leader-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.leader-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.7);
    border-color: var(--brand-yellow);
}

.leader-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.6);
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 27, 45, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--brand-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-link:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(214, 172, 44, 0.8);
}

.leader-info {
    padding: 1.5rem;
    text-align: center;
}

.leader-info h3 {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.leader-title {
    color: var(--brand-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-bio {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-quote {
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote i {
    color: var(--brand-navy);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-quote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--black);
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--black);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.testimonial-btn {
    background: var(--brand-navy);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.testimonial-btn:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(214, 172, 44, 0.8);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

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

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logo-grid img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.logo-grid img:hover {
    filter: grayscale(0%);
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--black);
}

.contact-details p {
    color: var(--gray-text);
    line-height: 1.6;
}

.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--light-beige);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.4s ease;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 0 10px rgba(214, 172, 44, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-navy);
    box-shadow: 0 0 15px rgba(15, 27, 45, 0.3);
    transform: translateY(-1px);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
    color: var(--brand-gold);
    margin-bottom: 1rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--brand-gold);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--brand-gold);
    transition: all 0.4s ease;
    box-shadow: 0 0 8px rgba(214, 172, 44, 0.6);
}

.footer-links a:hover {
    color: var(--brand-gold);
    text-shadow: 0 0 8px rgba(214, 172, 44, 0.6);
}

.footer-links a:hover::after {
    width: 100%;
}

.contact-info-footer p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

.footer-bottom i {
    color: #ff6b6b;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.4s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
    background: #20ba5a;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: var(--brand-navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(15, 27, 45, 0.3);
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--brand-gold);
    color: var(--brand-navy);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(214, 172, 44, 0.8);
}

/* Product Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 800px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray-text);
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--brand-navy);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.product-modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.product-modal-info h3 {
    margin-bottom: 1rem;
    color: var(--black);
}

.product-modal-info p {
    margin-bottom: 1.5rem;
    color: var(--gray-text);
    line-height: 1.6;
}

.product-specs {
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-beige);
}

.spec-label {
    font-weight: 600;
    color: var(--black);
}

.spec-value {
    color: var(--gray-text);
}

/* Utilities & Components */
.text-center {
    text-align: center;
}

/* Brand Gradient Utility */
.brand-gradient {
    background-image: linear-gradient(90deg, var(--brand-navy) 0%, var(--brand-gold) 50%, var(--brand-navy) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: var(--transition);
}

.brand-gradient:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Animations & Transitions */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Media Queries (Mobile-First) */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .logo-icon {
        height: 35px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .manufacturing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-body {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }

/* Testimonials styles */
.testimonials-section {
    padding: 60px 0;
    background: #f9fafb;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 6px 20px rgba(30,41,59,0.06);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #e5e7eb;
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 18px;
}
.testimonial-quote {
    color: #1f2937;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 18px 0;
}
.testimonial-client {
    font-weight: 600;
    color: #0f172a;
    font-size: 14px;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .testimonial-card {
        padding: 18px;
    }
    .testimonial-card .quote-mark {
        font-size: 40px;
        right: 14px;
    }
}

    .back-to-top {
        right: 80px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .title-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .achievements-section {
        grid-template-columns: 1fr;
    }

    .product-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }

    .logo-icon {
        height: 30px;
    }

    .logo-text {
        font-size: 1.3rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .documents-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 1rem;
    }
    
    .document-card {
        min-height: 200px;
    }
    
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 1rem;
    }
    
    .mission-card {
        min-height: 300px;
    }
    
    .about-content {
        gap: 3rem;
    }

    .manufacturing-content {
        gap: 3rem;
    }

    .contact-content {
        gap: 3rem;
    }

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

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

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

@media (min-width: 1025px) {
    .hero-title {
        font-size: 5rem;
    }

    .title-subtitle {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 3rem;
    }
}
