/* =========================
   VARIABLES - Refined
========================= */
:root {
    --navy: #1e2b4f;
    --navy-deep: #121c33;
    --navy-mid: #1a3a5a;
    --red: #e63e3e;
    --red-dark: #c72a2a;
    --white: #FFFFFF;
    --off-white: #f5f7fa;
    --muted: #5e6a7a;
    --border: rgba(255,255,255,0.12);
    --shadow-soft: 0 15px 40px -12px rgba(0,0,0,0.15);
    --shadow-medium: 0 20px 50px -15px rgba(0,0,0,0.2);
    --shadow-hard: 0 25px 60px -15px rgba(0,0,0,0.3);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.3s ease;
}

/* =========================
   RESET & BASE - Cleaner foundation
========================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* Typography improvements */
h1, h2, h3, h4, .section-title, .hero h1, .page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Remove Playfair Display references */
.section-title, .hero h1, .page-hero h1 {
    font-family: 'Inter', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* =========================
   NAVBAR - Modern & minimal
========================= */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(25,38,73,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s;
}

.nav-logo img {
    height: 44px;
    width: auto;
    transition: height 0.3s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

/* Simple underline */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; 
    bottom: -4px;
    width: 0; 
    height: 2px;
    background: var(--red);
    transition: width 0.2s;
}

.nav-links a:hover::after,
.nav-links a.active::after { 
    width: 100%; 
}

/* DROPDOWN */
.nav-item {
    position: relative;
}

.dropdown-toggle::after {
    content: " ▾";
    font-size: 0.7rem;
    opacity: 0.7;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: var(--navy-deep);
    border-radius: 12px;
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    border-left: 2px solid transparent;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding-left: 2rem;
    border-left-color: var(--red);
}

/* Hamburger menu button - FIXED VERSION */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Active state (X animation) */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile menu */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex !important; /* Force display on mobile */
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--navy-deep);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem;
        transition: right 0.3s ease;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Mobile dropdown adjustments */
    .nav-item.dropdown {
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin-top: 0.5rem;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        transition: max-height 0.3s ease;
    }
    
    .nav-item.dropdown.open .dropdown-menu {
        max-height: 300px;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu a {
        text-align: center;
        padding: 0.8rem;
    }
    
    .dropdown-menu a:hover {
        padding-left: 1rem;
    }
}

/* =========================
   HERO - Cleaner design
========================= */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    display: flex;
    align-items: center;
    padding: 8rem 6% 5rem;
    color: var(--white);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero h1 span { 
    color: var(--red);
    font-weight: 600;
}

.hero p {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    line-height: 1.6;
}

.hero-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.stat strong {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--red);
    display: block;
}

.stat span {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.3rem;
    display: block;
}

/* =========================
   BUTTONS - Clean & modern
========================= */
.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    letter-spacing: normal;
}

.btn.primary {
    background: var(--red);
    color: var(--white);
}

.btn.primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -8px var(--red);
}

.btn.ghost {
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    background: transparent;
}

.btn.ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn.dark {
    background: var(--navy);
    color: var(--white);
}

.btn.dark:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
}

.btn-blue {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-weight: 500;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.2s;
    margin-top: 0.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-blue:hover {
    background: rgba(255,255,255,0.25);
}

/* =========================
   LAYOUT UTILITIES
========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 6%;
}

.center { text-align: center; }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* =========================
   ABOUT SECTION - Cleaner
========================= */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    padding: 2rem;
    text-align: center;
    background: var(--off-white);
    border-radius: var(--radius);
    transition: transform 0.2s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.6;
}

/* =========================
   PRODUCTS SECTION
========================= */



/* =========================
   SERVICES SECTION - Premium Upgrade
   Matching product card aesthetics
========================= */

/* Main services section */
.services {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern for depth */
.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(230,62,62,0.03) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.02) 0%, transparent 40%);
    pointer-events: none;
}

.services .section-title {
    color: var(--white);
    position: relative;
    z-index: 2;
}

.services .section-title::after {
    background: var(--red);
    width: 60px;
    height: 3px;
}

.services .section-subtitle {
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 2;
}

/* Service grid - main cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    position: relative;
    height: 260px; /* Slightly taller for better presence */
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 15px 30px -12px rgba(0,0,0,0.3);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(18,28,51,0.9) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -15px rgba(230,62,62,0.3);
}

/* Red gradient overlay on hover - matches product cards */
.service-card:hover::before {
    background: linear-gradient(180deg, transparent 20%, rgba(230,62,62,0.85) 100%);
}

.service-overlay {
    position: relative;
    z-index: 2;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.service-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease 0.1s;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.service-overlay p {
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease 0.2s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    line-height: 1.5;
}

.service-card:hover .service-overlay h3,
.service-card:hover .service-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   SERVICE FULL CARDS - Premium Upgrade
   For services page
========================= */

.service-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-full-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

/* Red accent line on top - matches product cards */
.service-full-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), rgba(230,62,62,0.3));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 2;
}

.service-full-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px -15px rgba(230,62,62,0.25);
    border-color: rgba(230,62,62,0.1);
}

.service-full-card:hover::before {
    transform: scaleX(1);
}

.service-full-card .card-img {
    height: 220px; /* Slightly taller */
    overflow: hidden;
    position: relative;
}

/* Subtle overlay on image */
.service-full-card .card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(18,28,51,0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-full-card:hover .card-img::after {
    opacity: 1;
}

.service-full-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-full-card:hover .card-img img {
    transform: scale(1.08);
}

.service-full-card .card-body {
    padding: 2rem 2rem 2.2rem;
    position: relative;
    background: var(--white);
}

.service-full-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--navy);
}

.service-full-card h3 .icon {
    font-size: 1.6rem;
    color: var(--red);
    filter: drop-shadow(0 4px 6px rgba(230,62,62,0.2));
}

.service-full-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-tag {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, var(--off-white), #ffffff);
    color: var(--navy);
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(230,62,62,0.15);
    transition: all 0.3s ease;
}

.service-full-card:hover .card-tag {
    background: var(--red);
    color: white;
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -8px var(--red);
}

/* =========================
   SERVICES PAGE SPECIFIC
   (if you have a separate services page)
========================= */

/* Services page intro */
.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--muted);
    line-height: 1.8;
}

/* Services CTA section */
.services-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius);
    padding: 3.5rem 3rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230,62,62,0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.services-cta h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.services-cta p {
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.services-cta .btn {
    position: relative;
    z-index: 2;
}

/* =========================
   RESPONSIVE ADJUSTMENTS
========================= */

@media (max-width: 900px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        height: 240px;
    }
    
    .service-full-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-full-card .card-img {
        height: 200px;
    }
    
    .service-full-card .card-body {
        padding: 1.8rem;
    }
    
    .service-full-card h3 {
        font-size: 1.3rem;
    }
    
    .services-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .services-cta h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .service-card {
        height: 220px;
    }
    
    .service-card .service-overlay {
        padding: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-full-card .card-img {
        height: 180px;
    }
    
    .service-full-card .card-body {
        padding: 1.5rem;
    }
    
    .service-full-card h3 {
        font-size: 1.2rem;
    }
    
    .service-full-card h3 .icon {
        font-size: 1.4rem;
    }
    
    .services-cta {
        padding: 2rem 1.2rem;
    }
    
    .services-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        height: 200px;
    }
    
    .service-card .service-overlay h3 {
        font-size: 1.1rem;
    }
    
    .service-card .service-overlay p {
        font-size: 0.85rem;
    }
    
    .service-full-card .card-body {
        padding: 1.2rem;
    }
    
    .service-full-card h3 {
        font-size: 1.1rem;
        gap: 0.4rem;
    }
    
    .service-full-card h3 .icon {
        font-size: 1.3rem;
    }
    
    .service-full-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .card-tag {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
    }
}

/* =========================
   CONTACT SECTION
========================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: var(--off-white);
    border-radius: 12px;
    transition: transform 0.2s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.contact-item-text span,
.contact-item-text a {
    font-size: 0.95rem;
    color: var(--navy);
}

.contact-map {
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--navy);
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230,62,62,0.1);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.form-submit:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
}

/* =========================
   WHATSAPP FLOAT
========================= */
@keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 99;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 10px 25px -5px rgba(37,211,102,0.4);
    animation: gentle-float 3s infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-float::before {
    content: "💬";
    font-size: 1.1rem;
}

.whatsapp-float:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(37,211,102,0.5);
}

/* =========================
   PAGE HERO
========================= */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
    padding-top: 80px;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* =========================
   ABOUT PAGE
========================= */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-split-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-split-text p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.about-split-img {
    border-radius: var(--radius);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-medium);
}

.about-split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: var(--navy);
    border-radius: var(--radius);
    padding: 3rem;
    margin-top: 4rem;
    color: var(--white);
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 1rem;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item strong {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--red);
    display: block;
}

.stat-item span {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
    display: block;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    background: var(--navy);
    border-radius: var(--radius);
    color: var(--white);
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card .icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-card p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Timeline */
.timeline-items {
    position: relative;
    padding-left: 2rem;
    margin-top: 3rem;
}

.timeline-items::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--red);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 2.5rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -0.45rem;
    top: 0.3rem;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
}

.timeline-item .year {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
    display: block;
}

.timeline-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Partners grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.partner-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.partner-card .flag {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.partner-card strong {
    display: block;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.partner-card span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* =========================
   BRAND LOGOS
========================= */
.brand-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background: var(--off-white);
    border-radius: var(--radius);
}

.brand-logos img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
    margin: 0 auto;
}

.brand-logos img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: var(--navy-deep);
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 6% 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand img {
    height: 44px;
    margin-bottom: 1rem;
    filter: brightness(1.2);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 6%;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   SCROLL REVEAL
========================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   MEDIA QUERIES
========================= */
@media (max-width: 1024px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .hero-inner,
    .contact-grid,
    .about-split,
    .service-full-grid,
    .service-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-panel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-grid-fixed,
    .category-grid,
    .stats-row,
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-panel {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-row .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 1.5rem;
    }
    
    .stats-row .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 3rem 5%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
}

/* =========================
   UTILITY CLASSES
========================= */
.light .section-title {
    color: var(--white);
}

.light .section-subtitle {
    color: rgba(255,255,255,0.6);
}

