/* SRL Key Pages Styles (Booking, Thank You, About, Services) */

/* --- Booking Page --- */
.booking-section {
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, var(--blue-lighter) 0%, var(--white) 100%);
    min-height: 100vh;
}

.booking-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.booking-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    color: var(--gray-900);
}

.booking-subheader {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.calendly-container {
    max-width: 1000px;
    margin: 0 auto 80px;
    box-shadow: var(--shadow-xl);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray-900);
    padding: 16px 0;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-top: 8px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* --- Thank You Page --- */
.thank-you-hero {
    padding-top: 160px;
    padding-bottom: 100px;
    text-align: center;
    background: linear-gradient(180deg, var(--blue-lighter) 0%, var(--white) 100%);
}

.thank-you-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    color: var(--gray-900);
}

.thank-you-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.thank-you-checkmark {
    width: 100px;
    height: 100px;
    background: var(--success-green);
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.thank-you-checkmark svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.step-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 102, 255, 0.1);
}

/* --- About & Services Pages --- */
.page-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    background: linear-gradient(135deg, #0033aa 0%, var(--blue-primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

.story-section {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 4px;
    color: var(--gray-900);
}

.team-info p {
    color: var(--blue-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Services Page specific */
.service-detail-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 102, 255, 0.3);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
    stroke: var(--blue-primary);
}

.why-us-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.why-us-table th,
.why-us-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.why-us-table th {
    background: var(--gray-50);
    font-weight: 700;
}

.why-us-table td.check {
    color: var(--success-green);
    font-weight: 700;
    text-align: center;
}

.why-us-table td.cross {
    color: var(--danger-red);
    text-align: center;
}