/* ============================================================
   BOOK A MEETING PAGE STYLES
   ============================================================ */

/* Hero Section */
.booking-hero {
    background: linear-gradient(135deg, var(--clr-accent-light) 0%, var(--clr-white) 100%);
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 2rem;
}


.booking-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.booking-hero h1 span {
    color: var(--clr-accent);
}

.booking-hero p {
    font-size: 1.2rem;
    color: var(--clr-muted);
}

/* Meeting Options Grid */
.meeting-options {
    padding: 4rem 2rem;
    background: var(--clr-white);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.option-card {
    background: var(--clr-bg);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--clr-border);
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 38, 211, 0.3);
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.1);
}

.option-card i {
    font-size: 2.5rem;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.option-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.option-card p {
    color: var(--clr-muted);
    margin-bottom: 1rem;
}

.option-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--clr-accent-light);
    color: var(--clr-accent);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.option-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.option-card ul li {
    padding: 0.5rem 0;
    color: var(--clr-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-card ul li::before {
    content: '✓';
    color: var(--clr-accent);
    font-weight: bold;
}

.option-card .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Calendly Section */
.calendly-section {
    padding: 2rem;
    background: var(--clr-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendly-section .container {
    background: var(--clr-white);
    border-radius: 28px;
    padding: 1.5rem;
    max-width: 800px;
    position: relative;
}

.calendly-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--clr-border);
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--clr-muted);
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: var(--clr-accent);
}

/* Manual Form Section */
.manual-form-section {
    padding: 2rem;
    background: var(--clr-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.manual-booking-card {
    background: var(--clr-white);
    border-radius: 28px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.manual-booking-card h2 {
    margin-bottom: 0.5rem;
}

.manual-booking-card p {
    color: var(--clr-muted);
    margin-bottom: 1.5rem;
}

.manual-booking-card .form-group {
    margin-bottom: 1.25rem;
}

.manual-booking-card label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.manual-booking-card input,
.manual-booking-card select,
.manual-booking-card textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    font-family: inherit;
}

.manual-booking-card input:focus,
.manual-booking-card select:focus,
.manual-booking-card textarea:focus {
    outline: none;
    border-color: var(--clr-accent);
}

.booking-status {
    margin-top: 1rem;
    text-align: center;
}

.booking-status.success {
    color: #10b981;
}

.booking-status.error {
    color: #ef4444;
}

/* What to Expect Section */
.expect-section {
    padding: 4rem 2rem;
    background: var(--clr-bg);
    text-align: center;
}

.expect-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.expect-section h2 span {
    color: var(--clr-accent);
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.expect-card {
    padding: 1.5rem;
}

.expect-card i {
    font-size: 2rem;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.expect-card h3 {
    margin-bottom: 0.5rem;
}

.expect-card p {
    color: var(--clr-muted);
}

/* ============================================================ */
/* Booking & Cancellation Policy */
/* ============================================================ */
.policy-section {
    padding: 3rem 2rem;
    background: var(--clr-bg);
}

.policy-card {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--clr-white);
    border-radius: 28px;
    padding: 2.5rem;
    border: 1px solid var(--clr-border);
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.08);
}

.policy-header {
    text-align: center;
    margin-bottom: 2rem;
}

.policy-header i {
    font-size: 2.5rem;
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
}

.policy-header h2 {
    font-size: 1.8rem;
}

.policy-header h2 span {
    color: var(--clr-accent);
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.policy-block {
    background: var(--clr-bg);
    padding: 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.policy-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.1);
}

.policy-block h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-block h3 i {
    color: var(--clr-accent);
}

.policy-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-block ul li {
    padding: 0.5rem 0;
    color: var(--clr-muted);
    line-height: 1.5;
    border-bottom: 1px solid var(--clr-border);
    font-size: 0.9rem;
}

.policy-block ul li:last-child {
    border-bottom: none;
}

.policy-block ul li strong {
    color: var(--clr-text);
}

.policy-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border);
}

.policy-footer p {
    margin-bottom: 0.5rem;
    color: var(--clr-muted);
    font-size: 0.9rem;
}

.policy-footer a {
    color: var(--clr-accent);
    text-decoration: none;
}

.policy-footer a:hover {
    text-decoration: underline;
}

.policy-note {
    font-size: 0.8rem;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-section {
        padding: 2rem 1rem;
    }
    
    .policy-card {
        padding: 1.5rem;
    }
    
    .policy-header h2 {
        font-size: 1.4rem;
    }
    
    .policy-block {
        padding: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .booking-hero {
        margin-top: 4rem;
    }
    
    .booking-hero h1 {
        font-size: 2rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .manual-booking-card {
        padding: 1.5rem;
    }

    .booking-hero.scrolled {
    margin-top: 6rem;
}
}

/* ============================================================ */
/* Fix for navbar white links - ensures contrast */
/* ============================================================ */
.booking-nav .nav-links a {
    color: rgba(3, 2, 3, 0.745);
  }

  .navbar .logo-text{
    display: inline;
    color: rgba(3, 2, 3, 0.745);
  }