@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&family=Inter:wght@400;600&display=swap');

:root {
    --brand-pink: #c92a6d;
    --brand-pink-light: #fce4ec;
    --brand-green: #2e8b57;
    --brand-dark: #2c3e50;
    --brand-grey: #f0f2f5;
    --brand-white: #ffffff;
    --primary: var(--brand-pink);
    --secondary: var(--brand-dark);
    --accent: var(--brand-green);
    --bg-body: var(--brand-white);
    --bg-alt: var(--brand-pink-light);
    --text-main: #333333;
    --text-light: #666666;
    --radius-sm: 8px;
    --radius-lg: 30px;
    --radius-pill: 50px;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
}


* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background: var(--bg-body);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; text-transform: capitalize; color: var(--primary); text-shadow: 2px 2px 0px #fff; }
h2 { font-size: 2.5rem; text-align: center; color: var(--primary); }
a { text-decoration: none; color: inherit; transition: 0.3s; }

.btn {
    display: inline-block;
    background: var(--brand-green);
    color: #fff;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.btn:hover { 
    background: #236b42; 
    transform: translateY(-2px); 
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; position: relative; }
.section.compact { padding: 60px 0; }
.section-alt { background: var(--brand-grey); padding: 100px 0; }

/* Compact Spacing Utilities */
.page-hero.compact { padding: 80px 0; }
.content-card.compact { padding: 35px; }
.feature-item.compact { padding: 25px; }
.location-card.compact { padding: 18px; }
.location-grid.compact { gap: 15px; margin-top: 30px; }
.cta-box.compact { padding: 60px; margin: 40px 0; }
.wave-section.compact { padding: 50px 0; }

header {
    background: #fff;
    position: sticky;
    top: 50px;
    z-index: 100;
    height: 85px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-top: 5px solid var(--brand-pink);
    transition: transform 0.3s ease-in-out;
    overflow: visible;
}



body {
    padding-top: 50px;
}

/* Hide mobile logo on desktop, show on mobile */
.mobile-bar-logo {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }
}

/* Mobile header auto-hide */
@media (max-width: 768px) {
    /* Show logo in top bar on mobile */
    .mobile-bar-logo {
        display: flex !important;
        align-items: center;
    }

    .top-contact-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--brand-pink-light);
        z-index: 110;
    }
    
    header {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease-out, box-shadow 0.25s ease;
        padding: 0;
        box-shadow: none;
        z-index: 100;
    }

    header.header-visible {
        max-height: 500px;
        padding: 10px 0 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        overflow: visible;
    }

    header.header-hidden {
        max-height: 0;
        padding: 0;
        box-shadow: none;
        overflow: hidden;
    }

    /* Hide the full-size logo inside nav on mobile */
    .desktop-logo {
        display: none !important;
    }
    
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
        gap: 6px;
    }

    .nav-container > a:first-child {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
    }
    
    /* Stack nav links vertically with styled touch targets */
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-left: 0;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--brand-dark);
        background: #f8f9fa;
        border-radius: 12px;
        border-left: 4px solid var(--brand-pink);
        margin-bottom: 6px;
        transition: all 0.2s ease;
    }
    
    .nav-links a:hover,
    .nav-links a:active {
        background: #fce4ec;
        color: var(--brand-pink);
        transform: translateX(4px);
    }

    /* Hide the CTA button in mobile nav (already in top bar) */
    .nav-links .btn {
        display: none;
    }
    
    /* Keep body padding so content stays below fixed top bar */
    /* padding-top set in the media query above */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 85px;
    position: relative;
}

.nav-container > a:first-child {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.logo-img { 
    height: 200px; 
    width: auto;
    object-fit: contain;
    pointer-events: auto;
}

.nav-links { display: flex; gap: 30px; font-weight: 500; font-size: 1rem; color: var(--text-light); margin-left: auto; }
.nav-links a:hover { color: var(--primary); }
.nav-links .btn { padding: 10px 25px; font-size: 0.8rem; margin-left: 10px; }

/* Partner Logos */
.partner-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.partner-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    min-height: 120px;
    width: 100%;
}

.partner-logos a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 42, 109, 0.15);
}

.partner-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    transition: transform 0.3s;
    filter: grayscale(0%);
    object-fit: contain;
}

.partner-logo:hover {
    transform: scale(1.05);
}

/* Button Outline Style */
.btn-outline {
    background: #fff !important;
    color: var(--brand-green) !important;
    border: 2px solid var(--brand-green) !important;
}

.btn-outline:hover {
    background: var(--brand-green) !important;
    color: #fff !important;
}

/* Partner Placeholder (for missing images) */
.partner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.partner-placeholder strong {
    font-size: 1.8rem;
    color: var(--brand-pink);
    font-weight: 700;
    letter-spacing: 2px;
}

.partner-placeholder span {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════ */
/* DYNAMIC HERO — Parallax Background with Overlay       */
/* ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 50px 0 40px;
}

/* Background image layer */
.hero::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    bottom: -30px;
    background-image: url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    background-attachment: fixed; /* Parallax */
    z-index: 0;
    transition: transform 8s ease-out;
}

/* Slow Ken Burns drift on page load */
@keyframes heroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero::before {
    animation: heroZoom 20s ease-out forwards;
}

/* Dark gradient overlay for text legibility */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.45) 40%,
        rgba(201, 42, 109, 0.35) 100%
    );
    z-index: 0;
}

.hero .container { 
    position: relative; 
    z-index: 1; 
    text-align: center; 
}

/* Hero heading — white text on dark overlay */
.hero h1 { 
    color: #fff; 
    background: none;
    display: block;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    text-shadow: 2px 3px 12px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    animation: heroFadeUp 1s ease-out 0.3s both;
}

/* Animated underline accent under the h1 */
.hero h1::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: var(--brand-pink);
    margin: 16px auto 0;
    border-radius: 2px;
    animation: heroLineGrow 0.8s ease-out 0.8s both;
}

@keyframes heroLineGrow {
    0%   { width: 0; opacity: 0; }
    100% { width: 120px; opacity: 1; }
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.92);
    background: none;
    display: block;
    padding: 0;
    border-radius: 0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
    animation: heroFadeUp 1s ease-out 0.6s both;
}

/* Hero CTA button */
.hero .btn {
    background: var(--brand-pink);
    color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 25px rgba(201, 42, 109, 0.45);
    transition: all 0.3s ease;
    animation: heroFadeUp 1s ease-out 0.9s both;
}

.hero .btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 35px rgba(201, 42, 109, 0.55);
    background: #b52565;
}

/* Entrance animation */
@keyframes heroFadeUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Mobile-only logo in hero section */
.mobile-only-logo {
    display: none;
}

/* Bottom wave clip for smooth section transition */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 1;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

@media (max-width: 768px) {
    .mobile-only-logo {
        display: block;
        margin: -25px auto 0;
        width: auto;
        max-width: 200px;
        animation: heroFadeUp 1s ease-out 0.1s both;
    }
    
    .hero {
        min-height: 75vh;
        padding: 0 20px 40px !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .hero .container {
        margin-top: 0 !important;
    }

    /* Disable parallax on mobile (perf) */
    .hero::before {
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .hero-wave svg {
        height: 35px;
    }

    /* Page hero (inner pages) */
    .page-hero {
        padding: 80px 20px 50px;
    }
    
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    /* Service cards stack */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    /* Features row */
    .features-row {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Process steps */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Form layout */
    .form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-sidebar {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Section spacing */
    .section {
        padding: 50px 0;
    }
    
    .wave-section {
        padding: 40px 0;
    }
    
    /* Content cards */
    .content-card {
        padding: 25px 20px;
    }
    
    /* CTA box */
    .cta-box {
        padding: 40px 25px;
    }
    
    /* Partner logos */
    .partner-logos {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    overflow: visible;
    box-shadow: var(--shadow);
    transition: 0.3s;
    text-align: center;
    padding: 35px 30px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    min-height: 200px;
    height: auto;
}

.service-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 40px rgba(201, 42, 109, 0.15); 
}

.service-img { 
    height: 250px; 
    width: 100%; 
    object-fit: cover; 
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-content h3 { 
    margin-bottom: 15px; 
    color: var(--brand-pink); 
    font-size: 1.3rem;
}

.service-content p { 
    color: var(--text-light); 
    margin-bottom: 0; 
    font-size: 0.95rem; 
    line-height: 1.7;
    flex: 1;
}

.wave-section {
    background: var(--brand-pink-light);
    padding: 60px 0;
    position: relative;
}

.wave-top {
    position: absolute;
    top: -50px; left: 0; right: 0; height: 50px;
    background: var(--brand-pink-light);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scaleX(1.5);
}

.wave-bottom {
    position: absolute;
    bottom: -50px; left: 0; right: 0; height: 50px;
    background: var(--brand-pink-light);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    transform: scaleX(1.5);
}

footer { 
    background: var(--brand-dark); 
    color: #fff; 
    padding: 80px 0 30px; 
    position: relative;
    border-radius: 50px 50px 0 0;
    margin-top: 50px;
}

footer h3 { color: var(--primary); margin-bottom: 20px; }
footer a { color: rgba(255,255,255,0.7); display: block; margin-bottom: 10px; }
footer a:hover { color: #fff; }

.copyright { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    margin-top: 50px; 
    padding-top: 20px; 
    text-align: center; 
    font-size: 0.8rem; 
    color: rgba(255,255,255,0.4);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* CENTERED INTRO SECTION */
.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--brand-dark);
    line-height: 1.8;
}

/* HORIZONTAL FEATURE ROW */
.features-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.feature-item {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(201, 42, 109, 0.2);
    border-color: var(--primary);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 100px; height: 100px;
    background: var(--brand-pink-light);
    border-radius: 50%;
    opacity: 0.5;
    transition: 0.5s;
}

.feature-item:hover::before { transform: scale(5); }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-pink), #a82063);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(201, 42, 109, 0.3);
}

.feature-title {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    color: var(--text-main);
}

.feature-item p { position: relative; z-index: 1; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 0 40px 40px 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    position: relative;
    border-left: 5px solid var(--primary);
    transition: 0.3s;
}

.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(201, 42, 109, 0.15); }

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px; left: 20px;
    font-size: 5rem;
    color: var(--brand-pink-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text { font-style: italic; color: #555; position: relative; z-index: 1; }

.cta-box {
    background: linear-gradient(135deg, var(--brand-pink), #a82063);
    padding: 80px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin: 60px 0;
    box-shadow: 0 20px 60px rgba(201, 42, 109, 0.3);
}

.cta-box h2 { color: #fff !important; font-size: 3rem; margin-bottom: 20px; text-align: center; }
.cta-box p { color: rgba(255, 255, 255, 0.95); font-size: 1.2rem; }

.cta-blob {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.blob-1 { width: 300px; height: 300px; top: -150px; left: -100px; }
.blob-2 { width: 400px; height: 400px; bottom: -200px; right: -100px; animation-delay: 2s; }

.text-center { text-align: center; }
.text-center * { text-align: center; }
.text-center .intro-grid { margin: 0 auto; }

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, var(--brand-pink-light), #fff);
    padding: 120px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 30px;
}

.phone-banner {
    display: inline-block;
    background: var(--brand-green);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.3);
    transition: 0.3s;
}

.phone-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 139, 87, 0.4);
}

/* CONTENT CARDS */
.content-card {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-left: 5px solid var(--brand-pink);
}

.content-card h2 {
    text-align: left;
    margin-bottom: 30px;
}

.content-card p {
    line-height: 1.8;
    color: var(--text-main);
}

/* LOCATION GRID — Flex-wrap for dynamic sizing */
.location-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.location-card {
    background: linear-gradient(135deg, #ffffff 0%, #fce4ec 100%);
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 3px 12px rgba(201, 42, 109, 0.1);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--brand-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.location-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand-pink);
    box-shadow: 0 6px 20px rgba(201, 42, 109, 0.2);
    background: linear-gradient(135deg, #fce4ec 0%, #ffffff 100%);
}

/* Compact variant for about-us page */
.location-grid.compact {
    gap: 10px;
    margin-top: 30px;
}

.location-grid.compact .location-card {
    padding: 10px 18px;
    font-size: 0.85rem;
}

@media (max-width: 480px) {
    .location-card {
        padding: 10px 16px;
        font-size: 0.82rem;
    }
}

/* PROCESS STEPS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.process-step {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 42, 109, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-pink), #a82063);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(201, 42, 109, 0.3);
}

.process-step h3 {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* INFO BOXES */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.info-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.info-box h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.info-box p {
    color: var(--text-light);
}

/* FAQ ACCORDION */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 2px solid transparent;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--brand-pink-light);
}

.faq-item summary {
    padding: 25px 30px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--brand-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--brand-pink);
    font-weight: 700;
}

.faq-item[open] summary {
    background: var(--brand-pink-light);
    color: var(--brand-pink);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 30px 25px;
    color: var(--text-main);
    line-height: 1.8;
}

/* CONTACT METHODS */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: center;
    transition: 0.3s;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--brand-pink-light);
    box-shadow: 0 15px 40px rgba(201, 42, 109, 0.12);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-card a {
    transition: 0.3s;
}

.contact-card a:hover {
    opacity: 0.8;
}

/* ASBESTOS TYPE CARDS */
.asbestos-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.asbestos-type-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
    border-left: 5px solid var(--brand-pink);
}

.asbestos-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(201, 42, 109, 0.12);
}

.asbestos-type-card h3 {
    color: var(--brand-pink);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.asbestos-type-card p {
    color: var(--text-main);
    line-height: 1.7;
}

/* STEP ICONS */
.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* TOP CONTACT BAR */
.top-contact-bar {
    background: var(--brand-pink-light);
    border-bottom: 1px solid rgba(201, 42, 109, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 101;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Mobile compact top bar */
@media (max-width: 768px) {
    .top-contact-bar {
        padding: 5px 0;
    }
    
    .top-contact-bar .container {
        flex-direction: column !important;
        gap: 5px !important;
        padding: 5px 15px !important;
    }
    
    .top-contact-bar span {
        font-size: 0.7rem !important;
        text-align: center;
    }
    
    .top-contact-bar .container > div {
        gap: 10px !important;
    }
    
    .top-contact-bar a[href^="tel"] {
        font-size: 0.9rem !important;
    }
    
    .top-contact-bar .btn {
        padding: 5px 15px !important;
        font-size: 0.75rem !important;
    }
    
    /* Navigation Toggle Button */
    .nav-toggle-btn {
        position: absolute;
        bottom: 0px;
        right: 15px;
        background: var(--brand-pink);
        color: white;
        border: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 2px 8px rgba(201, 42, 109, 0.4);
        z-index: 102;
        transition: all 0.3s;
    }
    
    .nav-toggle-btn:hover {
        background: var(--brand-green);
        transform: scale(1.1);
    }
    
    .nav-toggle-btn:active {
        transform: scale(0.95);
    }
}

/* CONTACT FORM */
.form-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-sidebar {
    background: var(--brand-dark);
    color: #fff;
    padding: 50px;
    border-radius: 20px;
}

.form-sidebar h2 {
    color: #fff;
    text-align: left;
    margin-bottom: 15px;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item strong {
    display: block;
    color: var(--brand-pink);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-item a {
    color: #fff;
    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--brand-pink);
}

.contact-info-item p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-pink);
    box-shadow: 0 0 0 3px rgba(201, 42, 109, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group span {
    font-weight: normal;
    font-size: 0.9rem;
}

.btn-large {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

@media (max-width: 968px) {
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* COMPREHENSIVE MOBILE RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero h1 { font-size: 2rem; padding: 15px 30px; }
    .page-hero h1 { font-size: 2.5rem; }
    
    /* Header */
    .top-contact-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        text-align: left;
    }
    
    .nav-links a {
        width: 100%;
        padding: 10px 20px;
        border: 2px solid var(--brand-pink-light);
        border-radius: 8px;
        margin-bottom: 6px;
        display: block;
        background: #fff;
        transition: 0.3s;
        font-size: 0.9rem;
    }
    
    .nav-links a:hover {
        background: var(--brand-pink-light);
        border-color: var(--brand-pink);
    }
    
    .nav-links .btn {
        margin-left: 0;
        background: var(--brand-pink);
        color: #fff;
        border-color: var(--brand-pink);
    }
    
    .nav-links .btn:hover {
        background: var(--brand-green);
        border-color: var(--brand-green);
    }
    
    .logo-img {
        height: 60px;
    }
    
    /* Hero */
    .hero {
        height: 500px;
    }
    
    .hero .container {
        margin-top: 80px;
    }
    
    /* Sections */
    .section {
        padding: 60px 0;
    }
    
    .page-hero {
        padding: 80px 0;
    }
    
    /* Grids */
    .intro-grid {
        gap: 30px;
    }
    
    .features-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .feature-item {
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .info-boxes {
        grid-template-columns: 1fr;
    }
    
    .asbestos-types {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    /* Partner Logos */
    .partner-logos {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partner-logo {
        max-width: 200px;
    }
    
    /* Cards */
    .content-card {
        padding: 30px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    /* CTA */
    .cta-box {
        padding: 50px 30px;
        border-radius: 30px;
    }
    
    .cta-box h2 {
        font-size: 2rem;
    }
    
    /* Wave Section */
    .wave-section {
        padding: 40px 0;
    }
    
    /* Form */
    .form-sidebar {
        padding: 30px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero h1 { font-size: 1.75rem; padding: 12px 25px; }
    .page-hero h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Sections */
    .section {
        padding: 40px 0;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    /* Feature Icons */
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Location Grid */
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    /* Step Numbers */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* CTA */
    .cta-box {
        padding: 40px 20px;
        margin: 40px 0;
    }
    
    .cta-box h2 {
        font-size: 1.75rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .phone-banner {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Cards */
    .content-card {
        padding: 25px;
        border-radius: 20px;
    }
    
    .location-card {
        padding: 20px;
    }
    
    .process-step {
        padding: 30px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Content Box - for text-heavy information sections */
.content-box {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--brand-pink);
    transition: all 0.3s ease;
}

.content-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 42, 109, 0.12);
}

.content-box h3, .content-box h4 {
    color: var(--brand-pink);
    margin-bottom: 15px;
    text-align: left;
}

.content-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.content-box ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-box ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Text utilities */
.text-secondary {
    color: var(--text-light);
}

.text-primary {
    color: var(--text-main);
}

/* WhatsApp Floating Widget */
#whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: fadeInUp 0.5s ease-out;
}

#whatsapp-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    color: #fff;
    animation: pulse 2s infinite;
}

#whatsapp-widget a:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    animation: none;
}

#whatsapp-widget svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    #whatsapp-widget {
        bottom: 80px; /* Move up to avoid overlap with mobile navigation */
        right: 15px;
        z-index: 10000 !important; /* Ensure it's above everything */
    }
    
    #whatsapp-widget a {
        width: 60px;
        height: 60px;
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); /* Stronger shadow for visibility */
    }
    
    #whatsapp-widget svg {
        width: 32px;
        height: 32px;
    }
}

/* Removed duplicate - service-card is properly defined above */

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: var(--brand-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 40px 0 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

footer .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    align-items: start;
}

footer h3 {
    color: var(--brand-pink);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

footer p {
    margin-bottom: 8px;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--brand-pink);
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 6px;
}

footer .copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    footer .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* (Location grid styles consolidated above — no duplicate needed) */

/* ═══════════════════════════════════════════════════════ */
/* BEFORE & AFTER SHOWCASE                                */
/* ═══════════════════════════════════════════════════════ */
.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.ba-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ba-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.ba-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.ba-label {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.ba-before {
    background: #dc3545;
    color: #fff;
}

.ba-after {
    background: #28a745;
    color: #fff;
}

@media (max-width: 768px) {
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ba-img {
        height: 220px;
    }
}
