:root {
    /* Aspen Consultores Design System - Premium Boutique Aesthetic */
    --primary: #0f172a;
    --accent: #b2945d;
    --text-main: #1e293b;
    --text-light: #64748b;
    --background: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-dark: rgba(15, 23, 42, 0.8);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Legacy compatibility / UI specific */
    --aspen-navy: var(--primary);
    --aspen-blue: #464995;
    --aspen-verde: #059571;
    --aspen-gold: var(--accent);
    --aspen-white: var(--white);
    --aspen-gray: #f8f9fa;
    --aspen-text-dark: var(--text-main);
    --aspen-text-muted: var(--text-light);
    --border-radius-lg: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--aspen-text-dark);
    line-height: 1.6;
    background-color: var(--aspen-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, .btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(3.5rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.2rem); }

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Sections */
section {
    padding: 12rem 0;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--aspen-navy);
    color: var(--aspen-white);
}

.btn-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--aspen-white);
    border: 2px solid var(--aspen-white);
}

.btn-secondary:hover {
    background-color: var(--aspen-white);
    color: var(--aspen-navy);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}



/* Utilities */
.text-center { text-align: center; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Background Blobs */
.blob-c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(120px);
    opacity: 0.25;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 700px;
    height: 700px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.15;
    animation: moveBlob 35s infinite alternate ease-in-out;
}

.blob:nth-child(2) {
    background: #4f46e5;
    width: 800px;
    height: 800px;
    left: -200px;
    top: -200px;
    animation-duration: 45s;
}

.blob:nth-child(3) {
    background: #f43f5e;
    width: 500px;
    height: 500px;
    right: -100px;
    bottom: -100px;
    animation-duration: 30s;
}

@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    50% { transform: translate(150px, 100px) scale(1.1) rotate(45deg); }
    100% { transform: translate(-50px, 150px) scale(0.9) rotate(-30deg); }
}

.brand-floater {
    position: fixed;
    top: 20%;
    right: -5%;
    font-size: 60rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.03;
    z-index: -2;
    pointer-events: none;
    line-height: 1;
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.1);
    padding: var(--spacing-md) var(--spacing-lg); /* Reduced top/bottom padding */
    border-radius: var(--border-radius-lg);
    max-width: 850px;
    width: 95%;
    margin: 0 auto;
}

/* Hero Section Refined - Diagnostic Style */
.hero {
    height: 100vh;
    min-height: 850px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%), 
                url('assets/hero_image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
    padding-top: 15vh; /* Increased for more air */
}

.hero-content {
    max-width: 900px;
    text-align: left;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero .highlight {
    color: var(--accent);
}

.hero p {
    font-size: 1.25rem;
    max-width: 550px; /* More compact for better reading */
    margin-bottom: 3rem;
    opacity: 0.85;
    line-height: 1.6;
}

.hero-logo {
    height: 60px;
    margin-bottom: 2.5rem;
    filter: brightness(1);
    opacity: 1;
}

/* Trust Bar */
.hero-trust-bar {
    margin-top: 4rem;
}

.trust-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-logos {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-logo-item {
    transition: var(--transition);
}

.hero-logo-item img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(500%) opacity(0.5);
    transition: var(--transition);
}

.hero-logo-item:hover img {
    filter: grayscale(100%) brightness(800%) opacity(0.9);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Staggered Reveals */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* WhatsApp Refined */
.btn-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--aspen-verde);
    padding: 0.5rem 1.5rem 0.5rem 0.5rem;
    border-radius: 50px;
    box-shadow: 0 12px 40px rgba(5, 149, 113, 0.4);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
}

.btn-whatsapp.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.btn-whatsapp:hover {
    filter: brightness(0.9);
    transform: translateY(-5px);
}

.btn-whatsapp .icon-box {
    width: 45px;
    height: 45px;
    background: white;
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.btn-whatsapp span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Why Choose Us & Utilities */
.glass-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.p-lg { padding: 4rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.lead { font-size: 1.4rem; color: var(--aspen-navy); line-height: 1.4; }

/* Methodology Section Upgrade */
.methodology {
    background-color: #0f172a;
    color: var(--white);
    padding: 15rem 0; /* More air */
    position: relative;
    overflow: hidden;
    margin-top: -2px; /* Prevent tiny gaps */
}

.methodology h2 {
    color: var(--white);
    margin-bottom: 4rem;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.methodology-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px);
}

.methodology-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.methodology-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(178, 148, 93, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--accent);
    transition: var(--transition);
}

.methodology-card:hover .methodology-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--accent);
    color: var(--white);
}

.methodology-card i {
    font-size: 2rem;
}

.methodology-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.methodology-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Google Reviews Widget Simulation */
.reviews {
    background-color: white;
    padding: var(--spacing-xl) 0;
}

/* Google Reviews Section Upgrade */
.reviews {
    background-color: var(--aspen-gray);
    padding: 18rem 0; /* More space to avoid margin proximity */
}

.google-reviews-header {
    margin-bottom: 4rem;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.rating-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3c4043;
}

.review-count {
    font-size: 0.9rem;
    color: #70757a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 columns on desktop */
    gap: 2.5rem;
    max-width: 1050px;
    margin: 6rem auto 0; /* More space from title */
    padding: 0 2rem;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.review-card {
    background: white;
    padding: 2.5rem;
    border-radius: 30px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 15px 35px -15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px -15px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.review-info h4 {
    font-size: 1.1rem;
    color: var(--aspen-navy);
    margin: 0;
}

.review-info p {
    font-size: 0.85rem;
    color: #70757a;
    margin: 0;
}

.google-icon-small {
    position: absolute;
    right: 0;
    top: 0;
    color: #4285F4;
    font-size: 1.2rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: normal;
}

.review-date {
    font-size: 0.8rem;
    color: #9aa0a6;
}

.google-link {
    color: #4285F4;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    display: inline-block;
    margin-top: 3rem; /* Increased spacing as requested */
}

.google-link:hover {
    border-bottom-color: #4285F4;
}

/* Timeline Stacking Effect */
.timeline-stack {
    padding: 15rem 0;
    background-color: var(--aspen-gray);
}

.sticky-title {
    position: sticky;
    top: 50px;
    margin-bottom: 100px;
    z-index: 5;
    background: transparent;
}

.stack-wrapper {
    position: relative;
    padding-bottom: 400px; /* Space for the cards to stack */
}

.stack-card {
    position: sticky;
    top: 150px;
    min-height: 400px;
    margin-bottom: 150px;
    background: white;
    border-radius: 32px;
    display: flex;
    align-items: center;
    padding: 4rem;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stack-content {
    max-width: 600px;
}

.stack-card h3 {
    font-size: 2.5rem;
    color: var(--aspen-blue);
    margin-bottom: 1.5rem;
}

.stack-card p {
    font-size: 1.2rem;
    color: var(--aspen-text-muted);
}

.card-number {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    font-family: 'Inter', sans-serif;
}

.card-1 { background: #fff; z-index: 10; transform: translateY(0px) scale(1); }
.card-2 { background: #fdfdfd; z-index: 20; transform: translateY(0px) scale(1.02); }
.card-3 { background: #fafafa; z-index: 30; transform: translateY(0px) scale(1.04); }

/* FAQ Section Modernization - 2 Columns */
.faq {
    background-color: var(--white);
    padding: 15rem 0; /* Consistent with other sections */
}

.faq-wrapper {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.faq-header-side {
    flex: 0 0 35%;
    position: sticky;
    top: 180px; /* Lower position for more air */
    padding-top: 2rem;
}

.faq-header-side h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: left;
}

.faq-header-side p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-grid {
    flex: 1;
    margin-top: 0;
}

@media (max-width: 992px) {
    .faq-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    
    .faq-header-side {
        flex: none;
        position: static;
    }
}

.faq-item {
    background: var(--white);
    border: none;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 0;
    transition: var(--transition);
    border-radius: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item summary {
    padding: 2rem 1rem;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\2b'; /* Plus sign */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.4s ease;
    width: 30px;
    height: 30px;
    background: rgba(178, 148, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item[open] summary::after {
    content: '\f068'; /* Minus sign */
    transform: rotate(180deg);
    background: var(--accent);
    color: var(--white);
}

.faq-item summary:hover {
    color: var(--accent);
    padding-left: 1.5rem;
}

.faq-item p {
    padding: 0 1rem 2.5rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Form Premium - Glass Dark */
#contacto {
    background: radial-gradient(circle at center, #1e293b, #0f172a);
    padding: 15rem 0;
    margin-top: -2px;
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 5rem;
    border-radius: 32px;
    color: white;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.booking-form::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--accent);
    opacity: 0.1;
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
}

.booking-form h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.booking-form .form-group {
    margin-bottom: 2rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.booking-form input, .booking-form select, .booking-form textarea {
    width: 100%;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1.05rem;
    transition: var(--transition);
}

.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(178, 148, 93, 0.2);
}

.booking-form select option {
    background-color: var(--aspen-navy);
    color: white;
}

/* Success Message styles */
.success-message {
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    color: var(--aspen-verde);
    margin-bottom: 2rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-message h3 {
    color: var(--aspen-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.success-message p {
    color: var(--aspen-white);
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.6;
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.form-disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 2rem;
    text-align: center;
}

/* FAQ Accordion Styling Refinement */
.faq-grid {
    margin-top: 3rem;
}

/* Footer Overhaul */
.footer {
    padding: 6rem 0 4rem;
    background: var(--aspen-navy);
    color: var(--aspen-white);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.footer-tagline {
    font-size: 1rem;
    opacity: 0.7;
    max-width: 300px;
    line-height: 1.6;
}

.footer-title {
    color: var(--aspen-blue);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links {
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--aspen-white);
    opacity: 0.7;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--aspen-verde);
    padding-left: 5px;
}

.footer-group-logos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-group-logo {
    height: 35px; /* Uniform height for all logos */
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-group-link:hover .footer-group-logo {
    opacity: 1;
    transform: translateX(5px);
}

.footer-info {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.4;
    letter-spacing: 0.05rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: left;
    }
    
    .footer {
        padding: 4rem 0;
    }
    
    .footer-logo {
        align-self: flex-start;
    }
}

/* WhatsApp Selection Modal - Premium Style */
.wa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeIn 0.3s ease forwards;
}

.wa-modal-content {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUpModal 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUpModal {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #f3f4f6;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.wa-modal-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.wa-modal-header {
    background: #f9fafb;
    padding: 3rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.wa-icon-circle {
    width: 70px;
    height: 70px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.wa-modal-header h3 {
    color: var(--aspen-navy);
    font-size: 1.6rem;
    margin: 0;
}

.wa-modal-body {
    padding: 2rem;
}

.wa-modal-body p {
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.wa-option-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #f3f4f6;
    border-radius: 20px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wa-option-card:hover {
    border-color: #25d366;
    background: #f0fdf4;
    transform: translateX(8px);
}

.wa-option-icon {
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #464995;
    transition: all 0.3s ease;
}

.wa-option-card:hover .wa-option-icon {
    background: #ffffff;
    color: #25d366;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.wa-option-text h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.15rem;
    color: var(--aspen-navy);
}

.wa-option-text p {
    margin: 0 !important;
    text-align: left !important;
    font-size: 0.9rem !important;
    color: #6b7280 !important;
    font-weight: 400 !important;
}

@media (max-width: 480px) {
    .wa-modal-content {
        max-width: 100%;
        border-radius: 20px;
    }
}
