/* Book a Call Page Styles */

/* Hero Section */
.bookcall-hero {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f5f3ff 100%);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
}

.bookcall-hero h1 {
    font-size: 4rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #0b1120;
}

.bookcall-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* What to Expect Section */
.expect-section {
    padding: 60px 0;
    background: white;
}

.expect-box {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.expect-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #0b1120;
}

.expect-box > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expect-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.expect-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expect-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #0b1120;
}

.expect-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Calendar Section */
.calendar-section {
    display: none;
    padding: 60px 0;
    background: white;
    text-align: center;
}

.calendar-section h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #0b1120;
}

.calendar-section > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.booking-widget {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    max-width: 1000px;
    margin: 20px auto;
    display: flex;
    text-align: left;
    overflow: hidden;
}

.calendar-side {
    flex: 1;
    padding: 40px;
    border-right: 1px solid var(--border-color);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-header h3 {
    font-size: 1.25rem;
    color: #0b1120;
    margin: 0;
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.calendar-nav button {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.calendar-nav button:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}

.calendar-grid {
    width: 100%;
    margin-bottom: 40px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    text-align: center;
}

.date-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0b1120;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.date-cell:hover:not(.disabled):not(.active) {
    background: var(--bg-light);
}

.date-cell.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
}

.date-cell.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.timezone-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.timezone-value {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #0b1120;
    cursor: pointer;
}

.timeslot-side {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
}

.timeslot-header {
    margin-bottom: 24px;
}

.timeslot-header h3 {
    font-size: 1.1rem;
    color: #0b1120;
    margin-bottom: 4px;
}

.timeslot-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.timeslot-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.timeslot-btn {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0b1120;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.timeslot-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.timeslot-btn.selected {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
    color: var(--primary);
}

/* Project Form Section */
.form-section {
    padding: 60px 0;
    background: var(--bg-light);
    text-align: center;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #0b1120;
}

.form-section > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.project-form-container {
    background: white;
    border-radius: 20px;
    padding: 60px;
    max-width: 800px;
    margin: 20px auto;
    text-align: left;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0b1120;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.radio-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.radio-card:hover {
    border-color: var(--accent);
}

.radio-card input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.radio-card span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #0b1120;
}

.btn-submit {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 16px;
}

.btn-submit:hover {
    background: var(--accent-dark);
}

/* Stats Row */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0b1120;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* What Happens Next */
.process-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #0b1120;
}

.process-section > p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 1000px;
    margin: 20px auto;
}

.process-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: left;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
}

.process-line {
    width: 50px;
    height: 2px;
    background: rgba(139, 92, 246, 0.3);
    z-index: 1;
}

.process-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #0b1120;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.process-note {
    background: #f5f3ff;
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 20px auto;
}

.note-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-note h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #0b1120;
}

.process-note p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Not Ready CTA */
.not-ready-cta {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.not-ready-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #0b1120;
}

.not-ready-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 1px solid #0b1120;
    color: #0b1120;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    background: white;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--bg-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-widget {
        flex-direction: column;
    }
    .calendar-side {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .process-flow {
        flex-direction: column;
        gap: 20px;
    }
    .process-line {
        width: 2px;
        height: 30px;
    }
    .stats-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .bookcall-hero h1 {
        font-size: 3rem;
    }
    .expect-grid {
        grid-template-columns: 1fr;
    }
    .radio-group {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }
    .project-form-container {
        padding: 30px 20px;
    }
    .expect-box {
        padding: 30px 20px;
    }
}
