/* ===================================
   CALENDLY BOOKING SECTION
   =================================== */

.booking {
    background: var(--bg-darker);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calendly-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Calendly Widget Styling */
.calendly-inline-widget {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Custom Calendly color overrides */
.calendly-inline-widget iframe {
    border-radius: 16px;
}

/* Info Box Above Calendly */
.booking-info {
    text-align: center;
    margin-bottom: 32px;
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.booking-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.booking-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Grid */
.booking-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 8px;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.benefit-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    /* Mobile Performance */
    .calendly-wrapper {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
    }
    
    .booking-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .booking-title {
        font-size: 28px;
    }
    
    .calendly-inline-widget {
        height: 600px !important;
    }
}

@media (max-width: 480px) {
    .calendly-wrapper {
        padding: 16px;
        border-radius: 16px;
    }
    
    .calendly-inline-widget {
        height: 550px !important;
    }
}

/* ===================================
   BOOKING CTA SECTION (Lightweight)
   =================================== */

.booking-cta {
    background: var(--bg-darker);
    padding: 80px 0;
    position: relative;
}

.booking-cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-cta-text {
    text-align: left;
}

.booking-cta-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.booking-cta-description {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.booking-benefits-inline {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.booking-benefits-inline span {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.booking-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.booking-note {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

/* ===================================
   BOOKING PAGE (Full Page)
   =================================== */

.booking-hero {
    background: var(--bg-darker);
    padding: 180px 24px 60px;
    text-align: center;
}

.booking-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.booking-hero-description {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.7;
    margin: 24px auto;
    max-width: 600px;
}

.booking-hero .booking-benefits {
    grid-template-columns: repeat(4, 1fr);
    max-width: 800px;
    margin: 40px auto 0;
}

/* Additional Info Cards */
.booking-additional-info {
    margin-top: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.info-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.info-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    fill: none;
    color: var(--primary);
}

/* Support for filled icons (like WhatsApp) */
.info-icon svg[fill="currentColor"] {
    fill: currentColor;
    stroke: none;
}

.info-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.info-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.info-link:hover {
    opacity: 0.8;
}

/* Responsive CTA & Page */
@media (max-width: 1024px) {
    .booking-cta-content {
        gap: 40px;
    }
    
    .booking-cta-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .booking-cta {
        padding: 60px 0;
    }
    
    .booking-cta-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .booking-cta-text {
        text-align: center;
    }
    
    .booking-benefits-inline {
        justify-content: center;
    }
    
    .booking-hero {
        padding: 140px 20px 40px;
    }
    
    .booking-hero .booking-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 480px) {
    .btn-large {
        padding: 16px 28px;
        font-size: 16px;
    }
    
    .booking-cta-title {
        font-size: 28px;
    }
    
    .booking-hero .booking-benefits {
        grid-template-columns: 1fr;
    }
}

