:root {
    --primary: #0f172a;
    --primary-dark: #0b1120;
    --primary-deeper: #020617;
    --accent: #2563eb;
    --accent-mid: #3b82f6;
    --accent-dark: #1d4ed8;
    --accent-light: #60a5fa;
    --accent-glow: rgba(37, 99, 235, 0.12);
    --accent-glow-strong: rgba(37, 99, 235, 0.25);
    --blue-gradient: linear-gradient(135deg, #1d4ed8, #2563eb, #60a5fa);
    --white: #ffffff;
    --off-white: #f8fafc;
    --light-gray: #e2e8f0;
    --text: #1e293b;
    --text-light: #475569;
    --text-lighter: #64748b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 38, 54, 0.96);
    backdrop-filter: blur(16px);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(62, 184, 192, 0.08);
}

.navbar.scrolled {
    background: rgba(11, 17, 32, 0.85); /* Dark blue with higher transparency */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 -1px 0 rgba(255,255,255,0.05);
}

.nav-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 9px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s;
    letter-spacing: 0.4px;
}

.nav-links li a:hover {
    color: var(--white);
    background: rgba(62, 184, 192, 0.1);
}

.nav-cta {
    background: var(--blue-gradient) !important;
    color: var(--white) !important;
    padding: 10px 26px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 14px rgba(37, 99, 235, 0.3);
    border: none;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 22px rgba(37, 99, 235, 0.4) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--primary-deeper) 0%, var(--primary-dark) 35%, var(--primary) 70%, #172554 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 74px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-1 {
    top: -15%;
    right: -8%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 65%);
    animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb-2 {
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 65%);
    animation: orbFloat 12s ease-in-out infinite reverse;
}

.hero-orb-3 {
    top: 30%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.04) 0%, transparent 65%);
    animation: orbFloat 8s ease-in-out infinite 2s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(15px, -20px) scale(1.03)
    }

    66% {
        transform: translate(-10px, 10px) scale(0.98)
    }
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero-badge span {
    font-size: 12px;
    color: var(--accent-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 4.5vw, 60px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
}

.hero-content h1 em {
    font-style: normal;
    background: var(--blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85); /* Ensures visibility */
    line-height: 1.6;
    margin-bottom: 40px;
}
.hero-image-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}
.hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}
.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background-color: var(--off-white);
    overflow: hidden;
}

.clients-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    white-space: nowrap;
}

.clients-track {
    display: inline-flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    align-items: center;
}

.client-logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    border: 1px solid var(--light-gray);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

@keyframes scroll {
    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Base Utility Classes */
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; padding: 0 20px; }
.section-tag { color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 15px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--primary); font-weight: 700; line-height: 1.2; }
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.btn-primary, .btn-outline { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; font-size: 1.05rem; cursor: pointer; }
.btn-primary { 
    background: var(--blue-gradient); 
    color: var(--white); 
    box-shadow: 0 4px 15px var(--accent-glow-strong); 
    border: none; 
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}
.btn-primary:hover::after {
    left: 150%;
}
.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 25px rgba(37,99,235,0.5); 
}
.btn-outline { border: 2px solid rgba(255,255,255,0.15); color: var(--white); background: rgba(255,255,255,0.02); backdrop-filter: blur(8px); }
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* Stats Bar */
.stats-bar { background: var(--primary); padding: 50px 0; color: var(--white); position: relative; z-index: 10; margin-top: -30px; }
.stats-inner { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item { padding: 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 3.5rem; font-weight: 700; color: var(--accent-light); font-family: 'Cormorant Garamond', serif; margin-bottom: 5px; }
.stat-number span { color: var(--white); font-size: 2.2rem; }
.stat-label { font-size: 1.05rem; color: rgba(255,255,255,0.8); font-weight: 500; }

/* Products Section */
.products-section { background: var(--off-white); }
.products-grid { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card { background: var(--white); border-radius: 12px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.02); }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--accent-glow); }
.product-icon { font-size: 2.5rem; margin-bottom: 24px; display: inline-flex; align-items: center; justify-content: center; background: var(--off-white); width: 70px; height: 70px; border-radius: 12px; }
.product-card h3 { font-size: 1.4rem; margin-bottom: 16px; color: var(--primary); font-weight: 600; }
.product-card p { color: var(--text-light); line-height: 1.6; }

/* About Section */
.about-grid { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrapper { position: relative; }
.about-pattern { position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px; background: radial-gradient(var(--accent-glow) 2px, transparent 2px); background-size: 20px 20px; border-radius: 20px; z-index: 1; }
.about-eagle { position: relative; z-index: 2; background: var(--primary); border-radius: 20px; padding: 60px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.about-eagle img { max-width: 100%; filter: brightness(0) invert(1); }
.about-badge { position: absolute; bottom: -30px; right: -30px; background: var(--white); border-radius: 50%; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; z-index: 3; width: 140px; height: 140px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 5px solid var(--off-white); }
.about-badge strong { font-size: 2.2rem; color: var(--accent); font-family: 'Cormorant Garamond', serif; }
.about-badge span { font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }
.about-content h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--primary); margin-bottom: 24px; line-height: 1.2; }
.about-content p { color: var(--text-light); font-size: 1.1rem; line-height: 1.7; margin-bottom: 24px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--primary); }
.af-icon { background: var(--accent-glow); color: var(--accent); width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: bold; }

/* Specialties Section */
.specialties-section { background: linear-gradient(135deg, var(--primary), var(--primary-deeper)); color: var(--white); }
.specialties-section .section-title { color: var(--white); }
.specialties-grid { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.specialty-card { background: rgba(255,255,255,0.03); padding: 40px 30px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); text-align: center; transition: all 0.3s; backdrop-filter: blur(10px); }
.specialty-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.08); border-color: rgba(37,99,235,0.3); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.specialty-icon { font-size: 2.8rem; margin-bottom: 20px; display: inline-block; }
.specialty-card h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 500; letter-spacing: 0.5px; }
.specialty-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.6; }

/* Partners Section */
.partners-grid { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.partner-item { background: var(--white); padding: 25px 30px; border-radius: 8px; border: 1px solid var(--light-gray); min-width: 200px; text-align: center; transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.02); flex: 1 1 200px; max-width: 250px; display: flex; flex-direction: column; justify-content: center; min-height: 120px; }
.partner-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(37,99,235,0.1); border-color: var(--accent); }
.partner-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; color: var(--primary); }
.partner-desc { font-size: 0.85rem; color: var(--text-light); }

/* Testimonials Section */
.testimonials-section { background: var(--off-white); overflow: hidden; position: relative; padding: 80px 0; }
.testimonial-track { display: flex; gap: 30px; padding: 20px 40px; width: max-content; animation: scrollTrack 35s linear infinite; }
.testimonial-track:hover { animation-play-state: paused; }
.testimonial-card { background: var(--white); padding: 40px; border-radius: 16px; width: 400px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid var(--light-gray); flex-shrink: 0; }
.testimonial-text { font-size: 1.1rem; color: var(--text-light); line-height: 1.6; font-style: italic; margin-bottom: 25px; }
.testimonial-author { display: flex; align-items: center; gap: 15px; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--light-gray); object-fit: cover; }
.author-info h4 { color: var(--primary); font-size: 1.05rem; margin-bottom: 4px; }
.author-info p { color: var(--text-lighter); font-size: 0.85rem; }

@keyframes scrollTrack {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Insights Section */
.insights-section { background: var(--off-white); }
.insights-grid { max-width: 1300px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.insight-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: all 0.3s; border: 1px solid rgba(0,0,0,0.03); }
.insight-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.insight-img-placeholder { height: 220px; background: linear-gradient(160deg, var(--accent-mid), var(--primary)); position: relative; }
.insight-body { padding: 35px; }
.insight-tag { color: var(--accent); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.insight-card h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 16px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.insight-card p { color: var(--text-light); margin-bottom: 24px; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.insight-date { font-size: 0.9rem; color: var(--text-lighter); font-weight: 500; }

/* CTA Section */
.cta-section { background: var(--primary-dark); padding: 100px 40px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 150%, var(--accent-dark) 0%, transparent 60%); opacity: 0.5; pointer-events: none; }
.cta-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 3rem; margin-bottom: 20px; position: relative; z-index: 2; }
.cta-section p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; opacity: 0.9; position: relative; z-index: 2; }
.cta-buttons { display: flex; justify-content: center; gap: 20px; position: relative; z-index: 2; }
.cta-buttons .btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.cta-buttons .btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }

/* Footer */
.footer { background: var(--primary-deeper); padding: 100px 0 30px; color: var(--text-lighter); }
.footer-inner { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-brand { padding-right: 40px; }
.footer-brand-logo img { height: 45px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-brand p { line-height: 1.7; font-size: 0.95rem; }
.footer-col h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 24px; font-weight: 500; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: var(--accent); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-lighter); text-decoration: none; transition: all 0.3s; font-size: 0.95rem; }
.footer-col ul li a:hover { color: var(--accent); padding-left: 5px; }
.footer-divider { border: 0; height: 1px; background: rgba(255,255,255,0.05); margin-bottom: 30px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; transition: all 0.3s; font-weight: 600; }
.footer-socials a:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }

/* Contact Page Form */
.page-header { background: var(--primary); padding: 160px 40px 100px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.ph-bg { position: absolute; inset: 0; background: radial-gradient(circle at 50% 150%, var(--accent-dark) 0%, transparent 60%); opacity: 0.3; }
.ph-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.ph-content h1 { font-family: 'Cormorant Garamond', serif; font-size: 4rem; margin-bottom: 20px; line-height: 1.1; }
.ph-content h1 em { font-style: normal; color: var(--accent-light); }
.ph-content p { font-size: 1.2rem; opacity: 0.8; }
.contact-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--primary); margin-bottom: 20px; line-height: 1.2;}
.contact-info > p { color: var(--text-light); font-size: 1.1rem; line-height: 1.6; margin-bottom: 40px; }
.ci-blocks { display: flex; flex-direction: column; gap: 30px; }
.ci-block { display: flex; gap: 20px; }
.ci-icon { width: 60px; height: 60px; border-radius: 12px; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.ci-text h4 { font-size: 1.2rem; color: var(--primary); margin-bottom: 6px; font-weight: 600; }
.ci-text p { color: var(--text-light); line-height: 1.6; font-size: 0.95rem; }
.ci-text a { color: var(--accent-dark); text-decoration: none; font-weight: 500; }
.ci-text a:hover { text-decoration: underline; color: var(--accent); }
.contact-form-wrapper { background: var(--white); padding: 50px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.06); border: 1px solid var(--light-gray); }
.contact-form h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 30px; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; color: var(--text); font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 1px solid var(--light-gray); border-radius: 8px; font-family: inherit; font-size: 1rem; color: var(--text); background: var(--off-white); transition: all 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 4px var(--accent-glow); }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
    .products-grid, .insights-grid { grid-template-columns: repeat(2, 1fr); }
    .specialties-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-img-wrapper { max-width: 600px; margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.3rem; }
    .products-grid, .specialties-grid, .insights-grid, .footer-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: 1fr; gap: 20px; }
    .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 15px; }
    .stat-item:last-child { border-bottom: none; }
    .about-features { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .contact-form-wrapper { padding: 30px 20px; }
    .ph-content h1 { font-size: 3rem; }
}