@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-navy: #0F172A;
    --primary-navy-light: #1E293B;
    --primary-navy-dark: #020617;
    --accent-gold: #38BDF8;
    --accent-gold-hover: #0EA5E9;
    --accent-gold-light: #E0F2FE;
    --accent-gradient: linear-gradient(135deg, #38BDF8 0%, #818CF8 100%);
    --accent-gradient-hover: linear-gradient(135deg, #0EA5E9 0%, #6366F1 100%);
    --text-dark: #0F172A;
    --text-muted: #475569;
    --text-light: #94A3B8;
    --bg-white: #ffffff;
    --bg-gray: #F8FAFC;
    --bg-light-gray: #F1F5F9;
    --border-color: #E2E8F0;
    --border-gold: rgba(56, 189, 248, 0.4);
    --success-green: #10b981;
    --error-red: #ef4444;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: linear-gradient(180deg, #FFFFFF 0%, #E0F2FE 25%, #F0F9FF 50%, #E0F2FE 85%, #FFFFFF 100%);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-navy);
}

a {
    color: inherit;
    text-decoration: none;
}

/* Shared Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 5%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 0.75rem;
}

.logo-icon-svg {
    width: 44px;
    height: 44px;
}

.logo-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-navy);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-text span {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-top: 0.1rem;
}

.nav-links {
    display: flex;
    gap: 1.75rem;
    align-items: center;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-navy);
    transition: var(--transition-fast);
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-gold);
}

.btn-header-cta {
    background: var(--accent-gradient);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    box-shadow: 0 4px 14px 0 rgba(56, 189, 248, 0.39);
}

.btn-header-cta:hover {
    background: var(--accent-gradient-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(56, 189, 248, 0.5);
}

/* Views Container */
.view {
    display: none;
    opacity: 0;
}

.view.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Page 1: Root landing view styling */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(224, 242, 254, 0.85) 100%), url('family_beach.png');
    background-size: cover;
    background-position: center;
    min-height: 580px;
    padding: 4.5rem 5% 4rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.hero-left {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

.hero-title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.15;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px 0 rgba(56, 189, 248, 0.39);
}

.btn-primary:hover {
    background: var(--accent-gradient-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(56, 189, 248, 0.5);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-navy);
    color: var(--primary-navy);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.play-icon {
    width: 14px;
    height: 14px;
    fill: var(--accent-gold);
}

/* Quiz Preview on Home page */
.hero-right {
    flex-shrink: 0;
    width: 420px;
}

.quiz-preview-card {
    background: var(--bg-white);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.quiz-preview-header {
    margin-bottom: 1.5rem;
}

.quiz-preview-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.quiz-preview-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.quiz-setup-box {
    background-color: var(--accent-gold-light);
    border-radius: 6px;
    padding: 1.5rem;
    border: 1px dashed var(--accent-gold);
}

.quiz-setup-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

/* Features strip right below Hero */
.features-strip {
    background: linear-gradient(90deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    color: var(--bg-white);
    padding: 3rem 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-bottom: 1px solid var(--primary-navy-dark);
}

.feature-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon-svg {
    width: 42px;
    height: 42px;
    margin-bottom: 1.25rem;
}

.feature-title {
    color: var(--bg-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Diagnostic Quiz Section on main page */
.quiz-section {
    background: transparent;
    padding: 5rem 5%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

.quiz-container {
    width: 100%;
    max-width: 680px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 3rem 2.5rem;
}

.progress-wrapper {
    margin-bottom: 2rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.progress-bar-bg {
    height: 6px;
    background-color: var(--bg-light-gray);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 33%;
    background-color: var(--accent-gold);
    border-radius: 10px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.quiz-question {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.35;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quiz-option {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.15rem 1.5rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.quiz-option:hover {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold-light);
}

.quiz-option.selected {
    border-color: var(--accent-gold);
    background-color: var(--accent-gold-light);
    font-weight: 600;
}

.option-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--bg-light-gray);
    border-radius: 50%;
    margin-right: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

.quiz-option.selected .option-marker {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

/* Spinner during evaluation */
.quiz-loading {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-light-gray);
    border-top: 4px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

.loading-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-navy);
}

/* About Us Section */
.about-section {
    padding: 5rem 5%;
    background: transparent;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 3rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.about-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.about-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.about-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

.about-center {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-logo-overlay {
    position: absolute;
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-gold);
}

.about-logo-overlay svg {
    width: 50px;
    height: 50px;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkmark-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.check-icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.checkmark-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.checkmark-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Our Services / Pillars Grid */
.services-section {
    padding: 5rem 5%;
    background: transparent;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 2.5rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.service-card-icon-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
}

.service-card-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.service-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--accent-gold-hover);
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 5%;
    background: transparent;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.testimonial-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 2rem auto 0 auto;
    display: flex;
    align-items: center;
}

.testimonial-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    width: 100%;
}
.testimonial-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
    padding: 0 2rem;
    box-sizing: border-box;
}

.carousel-btn {
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: var(--accent-gold);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition-fast);
    z-index: 10;
}
.carousel-btn:hover {
    color: var(--accent-gold-hover);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}
.dot.active {
    background-color: var(--accent-gold);
    transform: scale(1.2);
}

.quote-icon {
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    opacity: 0.6;
    margin-bottom: -1rem;
    display: block;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--primary-navy);
    max-width: 780px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-icon {
    color: var(--accent-gold);
    font-size: 1.15rem;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    background-color: var(--bg-white);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-navy);
    text-align: left;
}

.faq-icon {
    font-size: 1.15rem;
    color: var(--accent-gold);
    font-weight: 600;
    transition: transform 0.2s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 1.5rem;
    background-color: var(--bg-gray);
}

.faq-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding-bottom: 1.25rem;
}

.faq-item.active .faq-content {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* PAGE 2: /qualify (Recommendation & Lead Gate) */
.qualify-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.qualify-container {
    width: 100%;
    max-width: 580px;
}

.recommendation-banner {
    background-color: var(--accent-gold-light);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.recommendation-banner h3 {
    font-size: 1.15rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

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

.form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 2.5rem 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.form-input.error {
    border-color: var(--error-red);
}

.error-message {
    font-size: 0.75rem;
    color: var(--error-red);
    margin-top: 0.35rem;
    font-weight: 500;
    display: none;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-navy);
    color: var(--bg-white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 1.1rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover:not(:disabled) {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
}

.btn-submit:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
}

.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--bg-light-gray);
    border-top: 2px solid var(--accent-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-footnote {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1.25rem;
    text-align: center;
    line-height: 1.5;
}

/* PAGE 3: /discovery (The Booking Interface) */
.discovery-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.discovery-container {
    max-width: 650px;
    margin: 0 auto;
}

.calendar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    margin-top: 2rem;
}

.mock-calendar-widget {
    width: 100%;
}

.calendar-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.calendar-grid-header h3 {
    font-size: 1.1rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.calendar-day-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    padding-bottom: 0.5rem;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.calendar-date.disabled {
    color: var(--border-color);
    cursor: not-allowed;
    font-weight: 400;
}

.calendar-date.active {
    background-color: var(--bg-gray);
}

.calendar-date.active:hover {
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
}

.calendar-date.selected {
    background-color: var(--accent-gold) !important;
    color: var(--primary-navy) !important;
    font-weight: 700;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.time-slot {
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.time-slot:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: var(--accent-gold-light);
}

/* PAGE 4: /thank-you (Universal Success View) */
.thankyou-section {
    padding: 5rem 5%;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.thankyou-container {
    max-width: 500px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.success-icon-wrapper {
    width: 72px;
    height: 72px;
    background-color: var(--accent-gold-light);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.expectation-box {
    margin-top: 2.5rem;
    background-color: var(--bg-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem;
    text-align: left;
    width: 100%;
}

.expectation-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

/* Corporate Footer */
footer {
    background-color: var(--primary-navy);
    color: var(--bg-white);
    padding: 5rem 5% 2rem 5%;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo-container svg {
    width: 38px;
    height: 38px;
}

.footer-logo-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    color: var(--bg-white);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.footer-logo-text span {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1.5px;
}

.footer-desc {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    font-size: 0.8rem;
    color: var(--text-light);
    transition: var(--transition-fast);
    cursor: pointer;
}

.footer-links-list a:hover {
    color: var(--accent-gold);
    padding-left: 3px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.contact-info-icon-svg {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.footer-cta-box {
    margin-top: 0.75rem;
}

.footer-cta-desc {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.btn-footer-cta {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.75rem 1.25rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    width: 100%;
}

.btn-footer-cta:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: var(--text-light);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* Video Script Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(7, 14, 23, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

.modal-content {
    background: var(--bg-white);
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-gold);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--primary-navy);
}

.modal-script-body {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    white-space: pre-line;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */

/* Global button and element styling for mobile menu */
.btn-mobile-cta {
    display: none;
    background: var(--accent-gradient);
    color: var(--bg-white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    box-shadow: 0 4px 14px 0 rgba(56, 189, 248, 0.39);
}

.btn-mobile-cta:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle .hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-navy);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.menu-toggle.active .hamburger-bar {
    background-color: var(--bg-white);
}

.menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Medium Screens / iPad / Tablets (up to 1024px) */
@media (max-width: 1024px) {
    /* Section padding */
    .hero-section, .features-strip, .quiz-section, .about-section, .services-section, .testimonial-section, .faq-section, .qualify-section, footer {
        padding-left: 6%;
        padding-right: 6%;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .about-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-left {
        align-items: center;
    }
    
    .about-center {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .checkmark-item {
        justify-content: center;
        text-align: left;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Navigation Menu Breakpoint & Smaller Tablets (up to 991px) */
@media (max-width: 991px) {
    header {
        padding: 1rem 6%;
    }

    .btn-header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.96);
        backdrop-filter: blur(20px);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        padding: 3rem 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .nav-link:hover, .nav-link.active {
        color: var(--accent-gold);
    }

    .nav-link.active::after {
        bottom: -8px;
        height: 3px;
    }

    .btn-mobile-cta {
        display: inline-block;
        margin-top: 1.5rem;
        width: 100%;
        text-align: center;
    }
}

/* Mobile Screens (up to 768px) */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .hero-buttons button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-right {
        width: 100%;
        max-width: 100%;
        margin-top: 1.5rem;
    }
    
    .features-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .quiz-container {
        padding: 2rem 1.5rem;
    }
    
    .quiz-question {
        font-size: 1.25rem;
    }
    
    .quiz-option {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 1.15rem;
    }
    
    .carousel-btn {
        display: none; /* Hide arrows on mobile since swiping is intuitive */
    }
    
    .testimonial-slide {
        padding: 0 1rem;
    }
    
    .faq-list {
        gap: 0.5rem;
    }
    
    .faq-trigger {
        padding: 1rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .qualify-section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    
    .form-card {
        padding: 2rem 1.25rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        padding-top: 1.5rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        width: 100%;
    }
}

/* Small Smart Phones (up to 480px) */
@media (max-width: 480px) {
    header {
        padding: 0.85rem 5%;
    }
    
    .logo-icon-svg {
        width: 36px;
        height: 36px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }
    
    .nav-links {
        width: 100%;
    }

    .hero-title {
        font-size: 1.85rem;
    }
    
    .features-strip {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .quiz-container {
        padding: 1.75rem 1rem;
    }
    
    .option-marker {
        margin-right: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}
