@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===========================
   PREMIUM DESIGN VARIABLES
   =========================== */
:root {
    --primary: #0F3B66;
    --primary-light: #1A5490;
    --primary-dark: #082847;
    --secondary: #D4AF37;
    --accent: #C19B2C;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-gray: #F0F4F8;
    --gray: #E0E6ED;
    --dark-gray: #6B7280;
    --black: #1A1A1A;
    --charcoal: #2D2D2D;
    --text-primary: #0F1419;
    --text-secondary: #667085;
    --text-light: #9CA3AF;
    --text-dark: #0F1419;
    --border: #E5E7EB;
    --shadow: 0 8px 32px rgba(15, 59, 102, 0.08);
    --shadow-lg: 0 20px 60px rgba(15, 59, 102, 0.12);
    --shadow-xl: 0 30px 80px rgba(15, 59, 102, 0.15);
}

/* ===========================
   GLOBAL RESET & BASE
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.8px;
    color: var(--text-primary);
}

h1 { font-size: 4rem; line-height: 1.1; }
h2 { font-size: 2.8rem; line-height: 1.2; }
h3 { font-size: 1.8rem; line-height: 1.3; }

/* ===========================
   HEADER & NAVIGATION - PREMIUM
   =========================== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

/* ===========================
   PREMIUM BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.4px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 59, 102, 0.25);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
}

/* ===========================
   PREMIUM HERO SECTION
   =========================== */
.hero-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 50%, #f8fafb 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-modern-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-modern-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.hero-modern-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -1.2px;
}

.hero-blue-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-modern-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 540px;
    font-weight: 400;
}

.hero-modern-ctas {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
    box-shadow: 0 8px 24px rgba(15, 59, 102, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 59, 102, 0.3);
}

.btn-hero-secondary {
    background-color: white;
    color: var(--primary);
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid var(--border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.btn-hero-secondary:hover {
    background-color: var(--light-gray);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-modern-image {
    position: relative;
}

.hero-image-slider {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(15, 59, 102, 0.15);
}

.hero-image-slider:hover {
    box-shadow: 0 36px 90px rgba(15, 59, 102, 0.18);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 400px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    pointer-events: none;
    visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hero-dot.active {
    background: white;
    width: 32px;
    border-radius: 6px;
}

.hero-badge-floating {
    position: absolute;
    top: 80%;
    right: 30px;
    background: white;
    padding: 0.45rem 0.75rem;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.badge-number {
    font-size: 1.09rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-weight: 600;
}

/* Responsive Slider Styles */
@media (max-width: 768px) {
    .hero-slider-wrapper {
        min-height: 300px;
    }
    
    .hero-slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-dot.active {
        width: 24px;
    }
    
    .hero-badge-floating {
        top: 20px;
        right: 20px;
        padding: 1rem 1.25rem;
    }
    
    .badge-number {
        font-size: 1.75rem;
    }
    
    .badge-label {
        font-size: 0.75rem;
    }
    
    .hero-image-slider {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .hero-slider-wrapper {
        min-height: 250px;
    }
    
    .hero-slider-dots {
        bottom: 15px;
        gap: 6px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-dot.active {
        width: 20px;
    }
    
    .hero-badge-floating {
        top: 15px;
        right: 15px;
        padding: 0.75rem 1rem;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-label {
        font-size: 0.7rem;
    }
    
    .hero-image-slider {
        border-radius: 12px;
    }
}

/* ===========================
   PREMIUM FEATURES SECTION
   =========================== */
.why-choose {
    padding: 6rem 0;
    background-color: var(--off-white);
}

.why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-title {
    text-align: center;
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.features-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-modern-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(229, 231, 235, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.feature-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-modern-card:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-box svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.feature-icon-box.blue { background: linear-gradient(135deg, rgba(15, 59, 102, 0.1) 0%, rgba(26, 84, 144, 0.08) 100%); color: var(--primary); }
.feature-icon-box.green { background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.08) 100%); color: #10B981; }
.feature-icon-box.orange { background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(217, 119, 6, 0.08) 100%); color: #F97316; }
.feature-icon-box.pink { background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(190, 24, 93, 0.08) 100%); color: #EC4899; }
.feature-icon-box.purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(88, 28, 135, 0.08) 100%); color: #8B5CF6; }
.feature-icon-box.blue-dark { background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(12, 74, 110, 0.08) 100%); color: #1E40AF; }

.feature-modern-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-modern-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================
   APPLICATIONS SECTION - PREMIUM
   =========================== */
.applications-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}

.applications-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    max-width: 100%;
    overflow: hidden;
}

.application-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--secondary);
}

.application-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.application-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.application-card:hover .application-image img {
    transform: scale(1.05);
}

.application-content {
    padding: 2.5rem;
}

.application-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.application-icon svg {
    width: 28px;
    height: 28px;
}

.application-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.application-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.application-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.application-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.application-features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

/* ===========================
   STATS SECTION - PREMIUM
   =========================== */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='rgba(255,255,255,0.05)' fill-rule='nonzero'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary) 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* ===========================
   PRODUCT SHOWCASE COLLAGE
   =========================== */
.product-showcase-collage {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.collage-single {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-width: 100%;
    margin: 0 auto;
}

.collage-single:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.collage-single img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collage-single:hover img {
    transform: scale(1.05);
}

/* Responsive Design for Collage */
@media (max-width: 1024px) {
    .collage-single {
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .product-showcase-collage {
        padding: 3rem 0;
    }
    
    .showcase-container {
        padding: 0 1rem;
    }
    
    .collage-single {
        border-radius: 12px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    }
    
    .collage-single:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 480px) {
    .product-showcase-collage {
        padding: 2rem 0;
    }
    
    .collage-single {
        border-radius: 8px;
    }
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 6rem 3rem;
    background: linear-gradient(135deg, rgba(15, 59, 102, 0.95) 0%, rgba(26, 84, 144, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid var(--secondary);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-cta-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ===========================
   CLIENTS SECTION
   =========================== */
.clients-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.clients-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.clients-logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.client-logo-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    min-height: 150px;
}

.client-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 59, 102, 0.1);
    border-color: var(--secondary);
}

.client-logo {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    /*filter: grayscale(100%);*/
    opacity: 0.7;
    transition: all 0.3s ease;
}

/*.client-logo-card:hover .client-logo {*/
/*    filter: grayscale(0%);*/
/*    opacity: 1;*/
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(15, 59, 102, 0.12);
    border-color: var(--secondary);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.google-logo {
    height: 20px;
    width: auto;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.25rem;
    color: var(--gray);
    transition: color 0.2s ease;
}

.star.filled {
    color: #FFA500;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: auto;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.author-location {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===========================
   REVIEWS CAROUSEL SECTION
   =========================== */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.reviews-carousel {
    position: relative;
    margin-top: 3rem;
}

.reviews-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    pointer-events: none;
}

.review-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    position: relative;
}

.review-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.5);
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.google-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.review-stars .star {
    font-size: 1.5rem;
    color: #FFC107;
}

.review-stars .star.filled {
    color: #FFC107;
}

.review-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding: 0 2rem;
}

.review-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-info {
    text-align: center;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(15, 59, 102, 0.2);
}

.review-arrow:hover svg {
    color: var(--white);
}

.review-arrow svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.review-arrow-left {
    left: -60px;
}

.review-arrow-right {
    right: -60px;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.review-dot:hover {
    background: var(--primary-light);
    transform: scale(1.15);
}

.review-dot.active {
    background: var(--primary);
    width: 36px;
    border-radius: 6px;
}

/* Responsive Reviews */
@media (max-width: 1024px) {
    .review-arrow-left {
        left: -20px;
    }
    
    .review-arrow-right {
        right: -20px;
    }
    
    .review-arrow {
        width: 45px;
        height: 45px;
    }
    
    .review-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 4rem 0;
    }
    
    .reviews-container {
        padding: 0 1.5rem;
    }
    
    .review-card {
        padding: 2rem 1.5rem;
    }
    
    .review-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .review-text::before {
        font-size: 3rem;
        top: -15px;
    }
    
    .reviews-slider-wrapper {
        min-height: 350px;
    }
    
    .review-arrow {
        width: 40px;
        height: 40px;
    }
    
    .review-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .review-arrow-left {
        left: 10px;
    }
    
    .review-arrow-right {
        right: 10px;
    }
    
    .review-stars .star {
        font-size: 1.3rem;
    }
    
    .google-logo {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 3rem 0;
    }
    
    .reviews-container {
        padding: 0 1rem;
    }
    
    .review-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .review-text {
        font-size: 0.95rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .review-text::before {
        font-size: 2.5rem;
        top: -12px;
    }
    
    .reviews-slider-wrapper {
        min-height: 380px;
    }
    
    .review-arrow {
        width: 36px;
        height: 36px;
    }
    
    .review-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .review-arrow-left {
        left: 5px;
    }
    
    .review-arrow-right {
        right: 5px;
    }
    
    .review-stars {
        gap: 0.25rem;
    }
    
    .review-stars .star {
        font-size: 1.1rem;
    }
    
    .google-logo {
        width: 24px;
        height: 24px;
    }
    
    .review-header {
        gap: 0.75rem;
    }
    
    .review-dot {
        width: 10px;
        height: 10px;
    }
    
    .review-dot.active {
        width: 28px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
    }
}

/* ===========================
   FOOTER - PREMIUM
   =========================== */
.footer {
    background: linear-gradient(180deg, var(--charcoal) 0%, #1A1A1A 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-logo-section {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-logo-img {
    height: 45px;
    width: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary);
    transform: translateX(4px);
    display: inline-block;
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(193, 155, 44, 0.1) 100%);
    border-radius: 8px;
    color: var(--secondary);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-modern-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   PAGE HEADER - PREMIUM
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='rgba(255,255,255,0.05)' fill-rule='nonzero'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   CONTACT SECTION - PREMIUM
   =========================== */
.contact-container {
    padding: 5rem 3rem;
    background: var(--off-white);
}

.contact-info-section-full {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-section-full h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info-section-full > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-detail-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(15, 59, 102, 0.1) 0%, rgba(26, 84, 144, 0.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-detail-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: var(--white);
    transform: scale(1.1);
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.contact-detail-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-detail-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-detail-card a:hover {
    color: var(--secondary);
    transform: translateX(4px);
    display: inline-block;
}

.contact-detail-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(193, 155, 44, 0.1) 100%);
    border-radius: 8px;
    color: var(--secondary);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===========================
   FAQ SECTION - PREMIUM
   =========================== */
.faq-section {
    padding: 5rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--off-white);
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-item:hover .faq-question {
    background: rgba(212, 175, 55, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.75rem;
    padding-top: 0;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0.75rem 0;
}

/* ===========================
   MAP SECTION - PREMIUM
   =========================== */
.map-section {
    padding: 0rem 3rem;
    background: var(--off-white);
}

.map-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
    border-radius: 16px;
}

/* ===========================
   BACK TO TOP BUTTON
   =========================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(15, 59, 102, 0.3);
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(15, 59, 102, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ===========================
   RESPONSIVE ENHANCEMENTS
   =========================== */
@media (max-width: 1024px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-info-section-full h2 {
        font-size: 2rem;
    }
    
    .faq-section {
        padding: 3rem 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .features-modern-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .client-logo-card {
        padding: 1.5rem;
        min-height: 120px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* ===========================
   PRODUCTS PAGE
   =========================== */
.page-header {
    background: linear-gradient(135deg, #1A5490 0%, #2667A8 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    color: white;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.products-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.filter-container {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px 0px;
}

.filter-btn {
    padding: 0.75rem 1.75rem;
    border: 2px solid #e0e0e0;
    background: white;
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.product-category {
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.4rem 0.9rem;
    background: rgba(26, 84, 144, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.products-cta {
    background: linear-gradient(135deg, #1A5490 0%, #2667A8 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
    margin: 4rem 0 0;
    border-radius: 24px;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.products-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.products-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===========================
   BREADCRUMB
   =========================== */
.breadcrumb {
    background-color: var(--light-gray);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content a:hover {
    color: var(--primary-light);
}

.breadcrumb-content span {
    color: var(--text-primary);
    font-weight: 500;
}

/* ===========================
   PRODUCT DETAILS PAGE
   =========================== */
.product-details {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product-details-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.product-details-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.product-details-category {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.product-details-content h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.product-details-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-price-display {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.price-value {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
}

.product-specs {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.product-specs h3 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    padding: 0.5rem 0;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.product-details-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.product-details-buttons .btn {
    flex: 1;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-story {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.about-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    text-align: center;
}

.about-content h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: justify;
    max-width: 100%;
}

.mission-vision {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-vision h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
}

/* ===========================
   CERTIFICATIONS PAGE
   =========================== */
.certifications-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.certifications-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.certifications-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.certifications-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.certification-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.cert-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cert-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cert-content {
    padding: 2rem;
}

.cert-content h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.cert-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-info-section-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-info-section-full h2 {
    font-size: 2.5rem;
    text-align: center;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-section-full > p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* contact-details-grid moved to line 2530 section */

.contact-detail-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 84, 144, 0.1);
}

.contact-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 84, 144, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #145a94 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.contact-detail-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-detail-card a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: block;
    margin-top: 0.5rem;
}

.contact-detail-card a:hover {
    color: var(--primary);
}

.map-section {
    max-width: 1200px;
    margin: 0rem auto;
    padding: 0 2rem;
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
    color: var(--white);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/*.footer-logo-section {*/
/*    display: flex;                 */
/*    align-items: center;*/
/*    gap: 30px;                     */
/*    padding-bottom: 2rem;*/
/*    border-bottom: 1px solid rgba(212, 175, 55, 0.2);*/
/*    margin-bottom: 2rem;*/
/*    flex-wrap: wrap;               */
/*}*/

/*.footer-logo-img {*/
/*    height: 110px;*/
/*    width: auto;*/
/*    filter: brightness(0.95);*/
/*    object-fit: contain;*/
/*}*/
.footer-logo-section {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding-left: 0;
}

.footer-logos {
    display: flex !important;
    justify-content: flex-start;
    gap: 10px;
}

.footer-logo-img {
    width: auto;
    height: 100px;
    object-fit: contain;
    flex: 0 0 auto;
    display: block;
}


.social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon:hover {
    background-color: var(--secondary);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-section p {
    color: #B0B0B0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #B0B0B0;
    font-size: 0.9rem;
}

/* ===========================
   BACK TO TOP BUTTON
   =========================== */
.back-to-top {
    position: fixed;
    bottom: -100px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 81, 161, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    bottom: 2rem;
}

.back-to-top:hover {
    background-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 81, 161, 0.4);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .hero-modern-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-modern-title {
        font-size: 2.8rem;
    }

    .features-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .applications-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        padding: 0 2rem;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }
    
    .about-content p {
        font-size: 1.05rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--white);
        border-bottom: 2px solid var(--gray);
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--gray);
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
    }

    .nav-link::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-modern {
        padding: 3rem 0 2rem;
    }

    .hero-modern-title {
        font-size: 2.2rem;
    }

    .about-content {
        padding: 0 1.5rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .features-modern-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-container {
        padding: 2.5rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .page-header-content h1 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .product-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .hero-modern-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        left: 1rem;
    }

    .back-to-top.visible {
        bottom: 1rem;
    }
}

/* ===========================
   FLOATING CONTACT BUTTONS
   =========================== */
.floating-contact-buttons {
    position: fixed;
    bottom: 100px;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease forwards;
}

.contact-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.contact-btn svg {
    width: 24px;
    height: 24px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.email-btn {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
    color: white;
}

.phone-btn {
    background: linear-gradient(135deg, #1A5490 0%, #0D3A6B 100%);
    color: white;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   ABOUT PAGE STYLES
   =========================== */
/* Removed duplicate about-story styles - using main definition above */

.mission-vision {
    background: var(--light-gray);
    padding: 4rem 2rem;
    text-align: center;
}

.mission-vision h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    stroke-width: 2;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mv-card p {
    line-height: 1.7;
    color: var(--text-secondary);
}

.why-choose-us {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.core-values {
    background: var(--light-gray);
    padding: 4rem 2rem;
    text-align: center;
}

.core-values h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.value-card p {
    line-height: 1.7;
    color: var(--text-secondary);
}

.about-team {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.about-team h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.team-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stat h4 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.about-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0 0;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@media (max-width: 992px) {
    .about-content {
        padding: 0 2rem;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }
    
    .about-content p {
        font-size: 1.05rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-modern-section {
        padding: 3rem 0 2rem;
        min-height: auto;
    }
    
    .hero-modern-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .hero-modern-content {
        gap: 1rem;
        order: 2;
    }
    
    .hero-modern-title {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    
    .hero-modern-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .hero-modern-ctas {
        gap: 1rem;
        margin-top: 0.5rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.85rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .hero-badges {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
    }
    
    .hero-modern-image {
        order: 1;
    }
    
    .hero-image-container {
        border-radius: 16px;
        box-shadow: 0 16px 40px rgba(15, 59, 102, 0.12);
    }

    .floating-contact-buttons {
        right: 1rem;
        bottom: 80px;
    }

    .contact-btn {
        width: 45px;
        height: 45px;
    }

    .contact-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-badge-floating {
        top: 72%;
        right: 10px;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
    }
    
    .badge-number {
        font-size: 1.1rem;
    }
    
    .badge-label {
        font-size: 0.55rem;
    }

    .about-content h2,
    .mission-vision h2,
    .why-choose-us h2,
    .core-values h2,
    .about-team h2,
    .about-cta h2 {
        font-size: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .why-number {
        font-size: 2.5rem;
    }

    .stat h4 {
        font-size: 2.5rem;
    }
}

/* ===========================
   CERTIFICATIONS PAGE
   =========================== */
.certifications-grid .grid-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    grid-column: 1 / -1;
}

.cert-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.cert-meta p {
    color: var(--text-secondary);
    margin: 0;
}

.cert-meta strong {
    color: var(--text-dark);
}

/* Compliance Section Styles */
.compliance-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 2rem;
    margin-top: 2rem;
}

.compliance-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.compliance-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.compliance-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #0d3a6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-icon svg {
    width: 35px;
    height: 35px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.compliance-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.compliance-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===========================
   CONTACT PAGE IMPROVEMENTS
   =========================== */
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 100%;
    overflow: hidden;
}

.contact-detail-card .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    justify-content:center;
}

.contact-detail-card .social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    transition: all 0.3s ease;
}

.contact-detail-card .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
}

.contact-detail-card .social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Footer Social Icons Fix */
.footer .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.footer .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer .social-icon svg {
    width: 20px;
    height: 20px;
}

/* FAQ Section */
.faq-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

@media (max-width: 992px) {
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 3rem 1rem;
    }
    
    .contact-info-section-full {
        padding: 0;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .contact-detail-card {
        margin: 0 auto;
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .certifications-grid .grid-title {
        font-size: 1.5rem;
    }
}

/* ===========================
   RELATED PRODUCTS SECTION
   =========================== */
.related-products {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.related-products h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.related-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    justify-items: center;
}

.related-card {
    width: 100%;
    max-width: 280px;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.related-card:hover img {
    transform: scale(1.05);
}

.related-card h4 {
    padding: 1.25rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
    font-weight: 600;
    margin: 0;
}

/* ===========================
   PRODUCT CTA SECTION
   =========================== */
.product-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem auto 0;
    max-width: 1200px;
    border-radius: 24px;
}

.product-cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.product-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-cta .btn-secondary {
    background-color: var(--secondary);
    color: white;
    border: 2px solid var(--secondary);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.product-cta .btn-secondary:hover {
    background-color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Responsive for Related Products and Product CTA */
@media (max-width: 768px) {
    .related-products h2 {
        font-size: 1.8rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .product-cta {
        padding: 3rem 1.5rem;
        margin: 3rem 1rem 0;
        border-radius: 16px;
    }
    
    .product-cta h2 {
        font-size: 1.8rem;
    }
    
    .product-cta p {
        font-size: 1rem;
    }
}

/* ============================= */
/* PRODUCT FILTER BAR */
/* ============================= */

.filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px auto 40px;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    max-width: 1100px;
}

/* Dropdowns */
.filter-select {
    padding: 12px 16px;
    min-width: 190px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-select:hover {
    border-color: #4a90a4;
}

.filter-select:focus {
    outline: none;
    border-color: #4a90a4;
    background: #fff;
}

/* Search box */
.filter-search {
    padding: 12px 16px;
    min-width: 240px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    background: #f9f9f9;
    transition: all 0.2s ease;
}

.filter-search:focus {
    outline: none;
    border-color: #4a90a4;
    background: #fff;
}

/* Apply Button */
.filter-container .btn {
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    background: linear-gradient(135deg, #4a90a4, #082847);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-container .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(74,144,164,0.35);
}


/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        gap: 12px;
    }

    .filter-select,
    .filter-search,
    .filter-container .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ===== IMAGE MODAL ===== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
}

.image-modal img {
max-width: 98%;
max-height: 98%;
object-fit: contain;
border-radius: 12px;
background: #fff;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
}


.cert-image {
width: 100%;
height: 450px;
overflow: hidden;
border-radius: 10px 10px 0 0;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
padding: 0.5rem;
}

.cert-image img {
width: 100%;
height: 100%;
object-fit: contain;
object-position: center;
cursor: zoom-in;
background: #fff;
transition: transform 0.25s ease;
}

.cert-image:hover img {
transform: scale(1.02);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;        /* 🔥 MAIN FIX */
    object-position: top;     /* faces / logo upar rahein */
    transition: transform 0.4s ease;
}

@media (max-width: 768px) {
    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .collage-item {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 260px;
    }
}
.product-image {
    width: 100%;
    height: 260px;          /* desktop height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* 🔥 NO CUT */
    object-position: center;
    transition: transform 0.4s ease;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pagination a {
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: #f2f2f2;
}

.pagination a.active {
    background: #082847; 
    color: #fff;
    border-color: #082847;
}
@media (max-width: 768px) {
    .footer-logo-img {
        height: 70px;
    }
}
