/* Breaking the Silence - CSS Styles */
/* Design inspired by user-provided look & feel */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap'); /* Example: Montserrat for body, Playfair for headings */

/* CSS Variables - New Palette */
:root {
    /* Brand Colors from Logo/Screenshot */
    --brand-pink: #E6007E;
    --brand-pink-darker: #c4006b; 
    --brand-purple: #6B3E93;
    --brand-purple-lighter: #895DAA;

    /* Backgrounds & Neutrals */
    --bg-main: #FFFFFF;
    --bg-soft-gradient-start: #FEF9FE; /* Very light pink/lavender */
    --bg-soft-gradient-end: #F9F0F9;
    --bg-accent-light: #FDF6FD; /* For subtle cards or sections */
    
    /* Text */
    --text-dark: #4A4A4A;
    --text-light: #FFFFFF;
    --text-heading-color: var(--brand-purple); /* Or var(--brand-pink) for some */

    /* Borders & Shadows */
    --border-light: #EAE0F0;
    --card-shadow: 0 6px 20px rgba(107, 62, 147, 0.07);
    --card-shadow-hover: 0 10px 30px rgba(107, 62, 147, 0.1);

    /* Emergency */
    --blood-orange: #DC2626; 
    
    /* Typography */
    --font-heading: 'Playfair Display', serif; /* Elegant serif for headings */
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions & Spacing */
    --transition-fast: all 0.2s ease-in-out;
    --transition-smooth: all 0.4s ease-in-out;
    --section-padding: 5rem 0;
    --container-width: 1140px;
}

/* Global Reset & Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-heading-color);
}
.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.2rem); /* Slightly more constrained for elegance */
    color: var(--brand-purple); /* Using purple from new palette */
    margin-bottom: 1rem;
    font-weight: 700;
}
h2.section-title { 
    font-size: clamp(2rem, 5vw, 3rem); 
    margin-bottom: 0.75rem;
}
h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin-bottom: 0.75rem; }
p { margin-bottom: 1.5rem; font-size: 1rem; }
p.hero-subtitle, p.section-subtitle {
    font-size: clamp(1.05rem, 2.5vw, 1.2rem);
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    font-family: var(--font-body); /* Subtitles with body font */
    font-weight: 400;
}
a { color: var(--brand-pink); text-decoration: none; transition: var(--transition-fast); }
a:hover { color: var(--brand-pink-darker); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { width: 90%; max-width: var(--container-width); margin: 0 auto; padding: 0 15px; }
.section { padding: var(--section-padding); }
.section-header { margin-bottom: 3rem; }
.section-header.text-center { text-align: center; }
.text-center .section-title::after { /* Optional underline for centered titles */
    content: ''; display: block; width: 70px; height: 3px;
    background-color: var(--brand-pink); margin: 0.75rem auto 0;
}
.light-text { color: var(--text-light) !important; opacity: 0.9; }
.light-text-sm { color: var(--text-light) !important; opacity: 0.8; font-size: 0.9rem; }
.light-text p, .light-text-sm p { color: inherit; } /* Ensure p inherits */

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-outline {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.8rem 1.8rem; 
    border-radius: 25px; /* Rounded like screenshot */
    font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
    text-transform: uppercase; letter-spacing: 0.8px;
    border: 2px solid transparent; cursor: pointer; transition: var(--transition-smooth);
    text-decoration: none !important;
}
.btn-primary span, .btn-secondary span { margin-left: 0.5rem; }
.btn-primary {
    background-color: var(--brand-pink); color: var(--text-light);
    box-shadow: 0 4px 12px rgba(230, 0, 126, 0.3);
}
.btn-primary:hover {
    background-color: var(--brand-pink-darker); transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 0, 126, 0.4);
}
.btn-secondary {
    background-color: var(--brand-purple); color: var(--text-light);
    box-shadow: 0 4px 12px rgba(107, 62, 147, 0.25);
}
.btn-secondary:hover {
    background-color: var(--brand-purple-lighter); transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(107, 62, 147, 0.35);
}
.btn-primary-outline { /* For use on dark backgrounds */
    background-color: transparent; color: var(--text-light);
    border-color: var(--text-light);
}
.btn-primary-outline:hover { background-color: var(--text-light); color: var(--brand-purple); }


/* Emergency Banner */
.emergency-banner {
    position: fixed; top: 0; left: 0; right: 0;
    background: var(--blood-orange); color: var(--text-light);
    padding: 0.6rem 0; text-align: center; z-index: 9999;
    font-weight: 500; font-size: 0.85rem;
    transition: top 0.3s ease-in-out; /* Added for smooth hide/show */
}

.emergency-banner.hidden-on-scroll {
    top: -60px; /* Moves banner off-screen; adjust if banner height changes */
}

.emergency-banner a { color: var(--text-light); font-weight: 700; text-decoration: underline; }

/* Navigation */
.navbar {
    position: fixed; top: 38px; /* Adjust based on banner height */
    left: 0; right: 0; background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.navbar.scrolled { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.navbar.hidden { top: -100px; }

.nav-wrapper { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; }
.logo img { max-width: 220px; /* Adjust based on new logo.png dimensions */ height: auto; } /* Ensure this works with logo.png */

.nav-menu { display: flex; list-style: none; align-items: center; gap: 1.5rem; }
.nav-menu a {
    color: var(--text-dark); text-decoration: none; font-weight: 500;
    font-size: 0.85rem; letter-spacing: 0.5px; text-transform: uppercase;
    position: relative; padding: 0.5rem 0.25rem;
}
.nav-menu a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background-color: var(--brand-pink);
    transition: width 0.3s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

/* .nav-cta { padding: 0.6rem 1.2rem; font-size: 0.8rem; } - Comentando la regla original o eliminándola */

.nav-menu a.nav-cta {
    background-color: var(--brand-purple);
    color: var(--text-light) !important; /* Importante para sobrescribir el color de .nav-menu a */
    padding: 0.6rem 1.2rem; /* Mantenemos el padding actual que es razonable para un nav */
    border-radius: 25px;
    font-weight: 600; /* Un poco más de peso como los otros botones */
    font-size: 0.8rem; /* Mantener el tamaño de fuente original de nav-cta */
    letter-spacing: 0.5px; /* Coherente con otros nav-menu a */
    text-transform: uppercase; /* Coherente con otros nav-menu a */
    box-shadow: 0 2px 8px rgba(107, 62, 147, 0.2); /* Sombra sutil */
    transition: var(--transition-smooth);
    text-decoration: none !important; /* Asegurar que no haya subrayado */
    line-height: normal; /* Asegurar alineación vertical si es necesario */
}

.nav-menu a.nav-cta::after {
    display: none !important; /* Eliminar el efecto de subrayado, con !important si es necesario */
}

.nav-menu a.nav-cta:hover {
    background-color: var(--brand-purple-lighter);
    color: var(--text-light) !important; /* Mantener color de texto en hover */
    transform: translateY(-1px); /* Efecto sutil de elevación */
    box-shadow: 0 4px 10px rgba(107, 62, 147, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1001; }
.mobile-menu-toggle span {
    display: block; width: 22px; height: 2px; background-color: var(--brand-purple);
    margin: 5px 0; transition: var(--transition-fast); border-radius: 3px;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* Hero Section */
.hero {
    padding-top: calc(80px + 3rem); /* Navbar height + extra space */
    padding-bottom: 4rem; background-color: var(--bg-main);
    position: relative; overflow: hidden; min-height: 90vh;
    display: flex; align-items: center;
}
.hero-gradient-bg { /* Soft gradient fullscreen */
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(160deg, var(--bg-soft-gradient-start) 0%, var(--bg-soft-gradient-end) 60%, var(--bg-main) 100%);
    z-index: 0; opacity: 0.8;
}
.hero .container { position: relative; z-index: 1; }
.hero-content { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center; }
.hero-text { padding-right: 1rem; }
.hero-statement {
    background-color: rgba(255,255,255,0.5); /* Semi-transparent white */
    border-left: 3px solid var(--brand-pink);
    padding: 1.2rem; margin: 1.8rem 0; border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.hero-statement p { font-family: var(--font-body); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.5rem; color: var(--text-dark); font-style: italic;}
.hero-statement p:last-child { margin-bottom: 0; }
.hero-statement strong { color: var(--brand-purple); font-weight: 600; font-style: normal; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: nowrap; margin-top: 2rem; }

.hero-image-container { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-backdrop { /* Inspired by screenshot */
    position: absolute;
    width: 110%; height: 110%;
    background: linear-gradient(135deg, rgba(253, 246, 253, 0.7), rgba(249, 240, 249, 0.4));
    border-radius: 30px; 
    filter: blur(10px); /* Soft blurred edge */
    z-index: -1;
    transform: rotate(-5deg); /* Slight tilt */
}
.hero-image {
    max-width: 400px; width: 100%; border-radius: 20px;
    box-shadow: 0 10px 30px rgba(107, 62, 147, 0.12);
    border: 4px solid var(--bg-main); 
    position: relative; /* To sit above backdrop */
}

/* Intro/Trust Section */
.intro-trust { background-color: var(--bg-main); }
.trust-points-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; margin-top: 2rem;
}
.trust-point { text-align: center; padding: 1.5rem; }
.trust-icon {
    font-size: 2.2rem; color: var(--brand-pink); margin-bottom: 0.75rem;
    line-height: 1;
}
.trust-point h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.2rem; color: var(--brand-purple); margin-bottom: 0.5rem;}
.trust-point p { font-size: 0.9rem; margin-bottom: 0; opacity: 0.9; }

/* Story Section */
.story-section { background-color: var(--brand-purple); /* Darker background for contrast */ }
.story-section .section-title, .story-section .section-subtitle { color: var(--text-light); }
.story-section .section-title::after { background-color: var(--brand-pink); } /* Pink accent on dark */

.story-content-wrapper { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: center; }
.story-image-side img {
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}
.story-text-side .section-title { text-align: left; }
.story-text-side .section-title::after { left: 0; transform: none; margin-left:0; margin-right:0; }
.story-highlights { margin-top: 2rem; margin-bottom: 2rem; }
.highlight-item { display: flex; align-items: center; margin-bottom: 1rem; }
.highlight-icon { font-size: 1.5rem; color: var(--brand-pink); margin-right: 0.8rem; line-height: 1.3; }
.highlight-item h4 {
    font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
    color: var(--text-light); margin-bottom: 0.2rem;
}
.highlight-item p { font-size: 0.9rem; margin-bottom: 0; line-height: 1.6; color: var(--text-light); opacity: 0.8; }


/* Services Section */
.services { background-color: var(--bg-accent-light); } /* Subtle light bg */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem; }
.service-card {
    background-color: var(--bg-main); padding: 2rem 1.5rem;
    border-radius: 12px; box-shadow: var(--card-shadow);
    transition: var(--transition-smooth); text-align: center;
    border-bottom: 4px solid var(--brand-pink); /* Accent bottom border */
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.service-icon { font-size: 2.2rem; line-height: 1; margin-bottom: 1rem; display: inline-block; color: var(--brand-purple); }
.service-card h3 {
    font-family: var(--font-body); font-weight: 600; font-size: 1.25rem;
    color: var(--brand-purple); margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; line-height: 1.65; margin-bottom: 0; }

/* Testimonials Section */
.testimonials { background-color: var(--bg-main); }
.testimonials .section-title { color: var(--brand-purple); }
.testimonial-carousel-wrapper {
    position: relative; /* For positioning nav if needed */
    margin-top: 2rem;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden; /* If slides are floated or inline-block and wider than container */
    /* min-height: 300px; /* Adjust as needed based on card height */
}

.testimonial-slide {
    display: none; /* Hide all slides by default */
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block; /* Show only the active slide */
    opacity: 1;
}

.testimonial-card {
    background-color: var(--bg-accent-light);
    padding: 2rem; border-radius: 12px; margin: 0 0.5rem; /* For carousel */
    position: relative; min-height: 260px; 
    display: flex; flex-direction: column; justify-content: center;
    box-shadow: 0 4px 15px rgba(107, 62, 147, 0.05);
    border-left: 4px solid var(--brand-pink);
}
.quote-icon {
    font-family: var(--font-heading); font-size: 3.5rem; color: var(--brand-pink);
    opacity: 0.3; position: absolute; top: 0.8rem; left: 1rem; line-height: 1;
}
.testimonial-text {
    font-family: var(--font-body); font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.75; font-style: italic; margin-bottom: 1.2rem;
    color: var(--text-dark); padding-left: 0.5rem; /* Space from quote */
}
.testimonial-author {
    font-weight: 600; color: var(--brand-purple); font-size: 0.9rem;
    text-align: right; margin-top: auto;
}
/* Testimonial Navigation (from JS) */
.testimonial-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 1.8rem; }
.testimonial-prev, .testimonial-next {
    background: transparent; border: 1px solid var(--brand-pink);
    color: var(--brand-pink); width: 38px; height: 38px; border-radius: 50%;
    font-size: 1.1rem; cursor: pointer; transition: var(--transition-fast);
}
.testimonial-prev:hover, .testimonial-next:hover { background: var(--brand-pink); color: var(--text-light); }
.testimonial-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.2rem; }
.dot {
    width: 9px; height: 9px; border-radius: 50%;
    border: 1px solid var(--brand-pink); background: transparent;
    cursor: pointer; transition: var(--transition-fast);
}
.dot.active { background: var(--brand-pink); }

/* Contact Section */
.contact { background-color: var(--bg-soft-gradient-end); } /* Soft gradient end */
.contact-wrapper { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; margin-top: 2.5rem; }
.contact-form-container {
    background-color: var(--bg-main); padding: 2rem;
    border-radius: 12px; box-shadow: var(--card-shadow);
}
.form-intro { font-style: italic; color: var(--brand-purple); margin-bottom: 1.5rem; text-align: center; font-size: 0.9rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block; font-weight: 500; color: var(--brand-purple);
    margin-bottom: 0.4rem; font-size: 0.85rem;
}
.form-control {
    width: 100%; padding: 0.75rem 0.9rem; 
    border: 1px solid var(--border-light); border-radius: 6px;
    background-color: var(--bg-main); font-family: var(--font-body);
    font-size: 0.9rem; transition: var(--transition-fast); color: var(--text-dark);
}
.form-control:focus {
    outline: none; border-color: var(--brand-pink);
    box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.1);
}
.form-control::placeholder { color: #aaa; }
textarea.form-control { min-height: 100px; resize: vertical; }
.submit-btn { width: 100%; font-size: 0.95rem; letter-spacing: 1px; }

.contact-info h3 { font-size: 1.5rem; color: var(--brand-purple); margin-bottom: 1rem; }
.contact-info p { font-size: 0.95rem; }
.info-card {
    background-color: var(--bg-main); padding: 1.5rem;
    border-radius: 10px; margin-bottom: 1.5rem;
    border-left: 3px solid var(--brand-pink); box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.info-card h4 {
    font-family: var(--font-body); font-weight: 600; color: var(--brand-purple);
    font-size: 1.1rem; margin-bottom: 0.6rem;
}
.info-card ul li {
    margin-bottom: 0.4rem; font-size: 0.9rem; padding-left: 1.3rem; position: relative;
}
.info-card ul li::before {
    content: '✓'; color: var(--brand-pink); position: absolute;
    left: 0; font-weight: 600;
}
.direct-contact p { margin-bottom: 0.4rem; font-size: 0.9rem; }
.direct-contact span { font-weight: 600; color: var(--brand-purple); }
.direct-contact small { display: block; font-size: 0.8rem; margin-top: 0.8rem; opacity: 0.8; }

.emergency-contact-reminder {
    margin-top: 3rem; padding: 1.5rem; background-color: #fff0f5; /* Light pink */
    border: 1px solid var(--brand-pink); border-radius: 8px; text-align: center;
}
.emergency-contact-reminder h4 { color: var(--blood-orange); font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; }
.emergency-contact-reminder p { font-size: 0.9rem; }
.emergency-contact-reminder ul { margin-top: 0.5rem; }
.emergency-contact-reminder ul li { font-size: 0.9rem; margin-bottom: 0.3rem; }

/* Success/Error Messages */
.success-message { background: #e6ffed; color: #006421; padding: 1rem; border-radius: 6px; text-align: center; margin-top: 1rem; border: 1px solid #a3e0b5; }
.success-message h3 { color: #006421; font-size: 1.1rem; } .success-message p { font-size: 0.9rem; margin-bottom: 0; }
.error { color: var(--blood-orange); font-size: 0.8rem; display: block; margin-top: 0.25rem; }


/* Footer */
.footer {
    background-color: var(--brand-purple); color: var(--text-light);
    padding: 3.5rem 0 1.5rem; font-size: 0.85rem;
}
.footer a { color: var(--brand-pink); } .footer a:hover { color: #f8b0ce; /* Lighter pink for hover */ }

.footer-content {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem; margin-bottom: 2.5rem; padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-logo-area .footer-logo-img { max-width: 200px; margin-bottom: 0.8rem; }
.footer-logo-area p { font-size: 0.9rem; opacity: 0.85; line-height: 1.6; margin-bottom: 0; }
.footer h5 {
    font-family: var(--font-body); text-transform: uppercase; font-weight: 600;
    font-size: 0.95rem; color: var(--text-light); margin-bottom: 0.8rem; letter-spacing: 0.5px;
}
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul li a {
    color: #f0e6f7; /* Lighter color for better contrast */
    transition: var(--transition-fast);
}
.footer-links ul li a:hover {
    color: var(--text-light); /* White on hover */
}

.footer-contact-info p { margin-bottom: 0.5rem; font-size: 0.85rem; }
.footer-contact-info p a { opacity: 0.85; color: #f0e6f7; /* Lighter purple/pink for better contrast */}
.footer-contact-info p a:hover { opacity: 1; color: var(--brand-pink); }
.social-links { display: flex; gap: 0.8rem; margin-top: 0.8rem; }
.social-links a {
    width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
    background-color: rgba(255,255,255,0.1); color: var(--text-light); /* Ensuring icon color is light */
    border-radius: 50%; font-size: 0.9rem; text-decoration: none;
}
.social-links a:hover { background-color: var(--brand-pink); color: var(--text-light); /* Ensure icon is light on hover */ }

.footer-bottom { text-align: center; padding-top: 1.5rem; }
.footer-bottom p { margin-bottom: 0.4rem; opacity: 0.85; font-size: 0.8rem; color: #e0d4e8; /* Lighter color for copyright text */}

/* Animations (from JS) */
.animate-on-scroll { opacity: 0; transform: translateY(15px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.animate-on-scroll.animate-in { opacity: 1; transform: translateY(0); }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.25);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 3px 3px 8px rgba(0,0,0,0.35);
    color: #FFF; /* Ensure icon color stays white on hover */
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}


/* Responsive Design */
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { padding-right: 0; order: 2; }
    .hero-image-container { order: 1; margin-bottom: 2rem; }
    .hero-image { max-width: 320px; }
    .hero-buttons { justify-content: center; }
    .story-content-wrapper { grid-template-columns: 1fr; text-align: center; }
    .story-image-side { margin-bottom: 2rem; display: flex; justify-content: center;}
    .story-image-side img { max-width: 350px; }
    .story-text-side .section-title, .story-text-side .section-title::after { text-align: center; left: 50%; transform: translateX(-50%); margin-left:auto; margin-right:auto;}
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info { margin-top: 2rem; }
}

@media (max-width: 768px) {
    :root { --section-padding: 3.5rem 0; }
    .navbar { top: 36px; /* Approx emergency banner height */ }
    .emergency-banner { font-size: 0.75rem; padding: 0.5rem 0; }

    .mobile-menu-toggle { display: flex; flex-direction: column; justify-content: center; }
    .nav-menu {
        position: fixed; top: 0; left: -100%; width: 100%; height: 100vh;
        background-color: var(--bg-main); flex-direction: column;
        justify-content: center; align-items: center; gap: 1.8rem;
        transition: left 0.3s ease-in-out; padding-top: 50px; 
        box-shadow: 3px 0 12px rgba(0,0,0,0.1); z-index: 999;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { width: 100%; text-align: center; }
    .nav-menu a { font-size: 1.1rem; padding: 0.8rem 0; }
    .nav-cta { font-size: 1rem; padding: 0.7rem 1.5rem; }

    .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; gap: 0.8rem; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 280px; margin: 0 auto; }
    
    .trust-points-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonial-card { margin: 0; padding: 1.8rem 1.2rem; min-height: auto;}
    .testimonial-text { font-size: 0.95rem; }

    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-logo-area .footer-logo-img { margin-left: auto; margin-right: auto; }
    .social-links { justify-content: center; }
}

@media (max-width: 480px) {
    .container { width: 92%; }
    .hero-title { font-size: 2rem; }
    .hero-statement { padding: 1rem; }
    .hero-statement p { font-size: 0.9rem; }
    h2.section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    p.section-subtitle { font-size: 0.9rem; }
    .contact-form-container { padding: 1.5rem; }
    .form-group label { font-size: 0.8rem; }
    .form-control { padding: 0.7rem; font-size: 0.85rem; }
    .logo img { max-width: 180px; }
}