/* ===========================
    BOOK A FREE CONSULTATION PAGE
    =========================== */

:root {
    --bc-primary: #173F7A;
    --bc-secondary: #0F2C56;
    --bc-accent: #F6B019;
    --bc-bg: #F8FAFC;
    --bc-card: #FFFFFF;
    --bc-text: #374151;
    --bc-text-light: #6B7280;
    --bc-border: #E5E7EB;
    --bc-whatsapp: #25D366;
    --bc-radius: 24px;
    --bc-radius-lg: 32px;
    --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.10);
}

/* ===========================
    HERO SECTION
    =========================== */

.bc-hero {
    position: relative;
    overflow: hidden;
    padding: 28px 0 39px;
    background: #fff;
}

.bc-hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 40px;
    min-height: auto;
}

.bc-hero-content {
    display: flex;
    flex-direction: column;
    max-width: 580px;
}

.bc-hero-content .page-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--bc-primary);
    background: #F5F7FB;
    margin-bottom: 18px;
    text-transform: uppercase;
    width: fit-content;
}

.bc-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.8vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-bottom: 18px;
}

.bc-hero-content h1 span {
    color: var(--bc-accent);
}

.bc-hero-content .hero-description {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--bc-text-light);
    margin-bottom: 20px;
    max-width: 520px;
}

.bc-hero-image {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.bc-hero-image-inner {
    position: relative;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(23, 63, 122, 0.2), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bc-hero-img {
    width: 100%;
    max-height: 50.4vh;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 8s ease;
}

.bc-hero-image-inner:hover .bc-hero-img {
    transform: scale(1.04);
}

.bc-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.12) 38%,
        transparent 65%
    );
    pointer-events: none;
}

/* ===========================
    CONSULTATION SECTION
    =========================== */

.bc-consultation-section {
    padding: 56px 0;
    background: var(--bc-bg);
}

.bc-consultation-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 40px;
    align-items: flex-start;
}

.bc-consultation-card {
    background: var(--bc-card);
    border-radius: var(--bc-radius-lg);
    padding: 40px;
    box-shadow: 0 8px 28px rgba(23, 63, 122, 0.07);
    height: fit-content;
}

.bc-consultation-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--bc-primary);
    margin-bottom: 16px;
}

.bc-consultation-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bc-primary);
    margin-bottom: 16px;
    margin-top: 24px;
}

.bc-consultation-card .intro-text {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--bc-text);
    margin-bottom: 12px;
}

.bc-consultation-card .description-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--bc-text-light);
    margin-bottom: 24px;
}

.divider {
    height: 1px;
    background: var(--bc-border);
    margin: 24px 0;
}

.consultation-checklist {
    list-style: none;
    margin-bottom: 0;
}

.consultation-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--bc-text);
    margin-bottom: 12px;
    line-height: 1.5;
}

.consultation-checklist li:last-child {
    margin-bottom: 0;
}

.consultation-checklist i {
    color: var(--bc-accent);
    font-weight: 700;
    flex-shrink: 0;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--bc-accent);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item .label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bc-text-light);
    margin-bottom: 4px;
}

.contact-item a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--bc-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--bc-accent);
}

/* ===========================
    CALENDLY SECTION
    =========================== */

.bc-calendly-wrapper {
    background: var(--bc-card);
    border-radius: var(--bc-radius-lg);
    padding: 20px;
    box-shadow: 0 8px 28px rgba(23, 63, 122, 0.07);
    overflow: hidden;
}

.calendly-embed {
    width: 100%;
    border-radius: var(--bc-radius);
    overflow: hidden;
    border: 1px solid var(--bc-border);
}

.calendly-embed iframe {
    width: 100% !important;
    border: none !important;
}

.calendly-header {
    margin-bottom: 32px;
    text-align: center;
}

.calendly-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 700;
    color: var(--bc-primary);
    margin-bottom: 8px;
}

.calendly-header p {
    font-size: 0.9375rem;
    color: var(--bc-text-light);
    font-weight: 500;
}

.calendly-embed {
    width: 100%;
    border-radius: var(--bc-radius);
    overflow: hidden;
    border: 1px solid var(--bc-border);
}

.calendly-embed iframe {
    width: 100% !important;
    border: none !important;
}

/* ===========================
    WHATSAPP CTA SECTION
    =========================== */

.bc-whatsapp-section {
    padding: 56px 0;
    background: #fff;
}

.bc-whatsapp-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
    border-radius: var(--bc-radius-lg);
    padding: 48px;
    border: 2px solid var(--bc-whatsapp);
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: var(--bc-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.whatsapp-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--bc-primary);
    margin-bottom: 8px;
}

.whatsapp-text p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--bc-text-light);
}

.whatsapp-action {
    flex-shrink: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--bc-whatsapp);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-whatsapp:hover {
    background: #20BA5C;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
}

/* ===========================
    ANIMATIONS
    =========================== */

.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up--delay {
    transition-delay: 0.15s;
}

/* ===========================
    RESPONSIVE DESIGN
    =========================== */

@media (max-width: 992px) {
    .bc-hero {
        padding: 24px 0 32px;
    }

    .bc-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bc-hero-img {
        max-height: 400px;
    }

    .bc-consultation-section {
        padding: 40px 0;
    }

    .bc-consultation-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bc-consultation-card {
        padding: 32px;
    }

    .bc-calendly-wrapper {
        padding: 32px;
    }

    .bc-whatsapp-card {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px;
    }

    .whatsapp-action {
        width: 100%;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .bc-hero {
        padding: 32px 0;
    }

    .bc-hero-grid {
        gap: 24px;
    }

    .bc-hero-img {
        max-height: 56vw;
    }

    .bc-consultation-section {
        padding: 40px 0;
    }

    .bc-consultation-card,
    .bc-calendly-wrapper {
        padding: 16px;
    }

    .bc-consultation-card h3 {
        font-size: clamp(1.2rem, 2vw, 1.6rem);
    }

    .bc-whatsapp-card {
        padding: 24px;
    }

    .whatsapp-content {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-icon {
        width: 64px;
        height: 64px;
    }

    .whatsapp-icon i {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .bc-hero {
        padding: 24px 0;
    }

    .bc-hero-grid {
        gap: 20px;
    }

    .bc-hero-content h1 {
        font-size: clamp(1.4rem, 2.4vw, 2.2rem);
        margin-bottom: 12px;
    }

    .bc-hero-content .page-tag {
        font-size: 0.7rem;
        padding: 8px 12px;
        margin-bottom: 12px;
    }

    .bc-hero-content .hero-description {
        font-size: 0.875rem;
        margin-bottom: 16px;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .bc-hero-img {
        max-height: 50vw;
    }

    .bc-consultation-section {
        padding: 32px 0;
    }

    .bc-consultation-card,
    .bc-calendly-wrapper {
        padding: 12px;
    }

    .consultation-checklist li {
        font-size: 0.875rem;
    }

    .contact-methods {
        gap: 16px;
    }

    .contact-item i {
        font-size: 1rem;
    }

    .calendly-embed {
        min-height: 600px;
    }

    .bc-whatsapp-card {
        padding: 20px;
        grid-template-columns: 1fr;
    }

    .btn-whatsapp {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
}
