/* ===================
   DESIGN SYSTEM
=================== */
:root {
    --primary-gold: #f4c430;
    --primary-gold-hover: #e6b800;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b7280;
    --background-light: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================
   BASE STYLES
=================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===================
   UTILITY CLASSES
=================== */
.section-padding { padding: 80px 24px; }
.section-padding-large { padding: 100px 24px; }
.bg-white { background: white; }
.bg-light { background: var(--background-light); }
.text-center { text-align: center; }
.mb-large { margin-bottom: 48px; }
.mb-medium { margin-bottom: 32px; }
.mb-small { margin-bottom: 16px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }

/* ===================
   SKIP LINK
=================== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-gold);
    color: var(--text-dark);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

/* ===================
   HEADER
=================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.header.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

.header.scrolled .logo-light {
    display: none;
}

.header.scrolled .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary-gold);
    outline: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

/* Collapsible content for signups */
.collapsible-content {
    max-height: 1000px; /* Arbitrarily large value for initial state */
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.collapsible-content.minimized {
    max-height: 0;
}

.signup-date-header .toggle-icon {
    transition: transform 0.3s ease;
}

.signup-date-header.minimized-header .toggle-icon {
    transform: rotate(-90deg); /* Rotate right arrow to point down */
}

.signup-date-header.past-date-header {
    opacity: 0.6;
    color: var(--text-light) !important;
}

.signup-date-header.past-date-header .toggle-icon {
    color: var(--text-light);
}

/* Styles for Date Management table past dates */
.past-date-row {
    /* Initially hidden, controlled by JavaScript */
    display: none; 
    opacity: 0.6;
    color: var(--text-light);
}

/* ===================
   BOOTCAMP PAGE HEADER
=================== */
.header.bootcamp-page {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.header.bootcamp-page .nav-links a {
    color: var(--text-dark);
}

.header.bootcamp-page .logo-light {
    display: none;
}

.header.bootcamp-page .logo-dark {
    display: block;
}

.header.bootcamp-page .mobile-menu-btn span {
    background: var(--text-dark);
}

/* ===================
   BUTTONS
=================== */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    color: var(--text-dark);
}

.btn--primary:hover,
.btn--primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 196, 48, 0.3);
    outline: none;
}

.btn--secondary {
    background: #2d3748; /* Navy background */
    color: white;
    border: 2px solid #2d3748; /* Navy border */
}

.btn--secondary:hover,
.btn--secondary:focus {
    background: var(--primary-gold); /* Gold on hover */
    color: var(--text-dark);
    border-color: var(--primary-gold); /* Gold border on hover */
    outline: none;
}

.btn--large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn--full-width {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    color: var(--text-dark);
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 196, 48, 0.3);
    outline: none;
}

/* ===================
   MOBILE MENU
=================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    transition: var(--transition);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: var(--transition);
}

.header.scrolled .mobile-menu-btn span,
.header.mobile-menu-active .mobile-menu-btn span {
    background: var(--text-dark);
}

/* When mobile menu is active, switch to dark logo */
.header.mobile-menu-active .logo-light {
    display: none;
}

.header.mobile-menu-active .logo-dark {
    display: block;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    padding: 80px 24px 24px;
    transition: left 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    margin: 24px 0;
}

.mobile-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block; /* Ensure it takes full width for button styling */
    padding: 12px 24px; /* Add padding for button feel */
    border-radius: 8px; /* Rounded corners */
    transition: var(--transition);
}

.mobile-nav a.mobile-cta-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    color: var(--text-dark);
    padding: 12px 24px;
    border: none;
    border-radius: 25px; /* More rounded for button look */
    font-weight: 600;
    font-size: 16px; /* Slightly larger font for button */
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 24px; /* Add some space above the button */
}

.mobile-nav a.mobile-cta-button:hover,
.mobile-nav a.mobile-cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 196, 48, 0.3);
    outline: none;
}

/* ===================
   HERO SECTION
=================== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                url('/static/images/hero_optimized.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
	padding-top: 100px;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero h1 strong {
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================
   TRUST INDICATORS
=================== */
.trust-indicators {
    padding: 60px 24px;
    background: white;
    text-align: center;
}

.trust-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.trust-item {
    padding: 24px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.trust-label {
    color: var(--text-medium);
    font-weight: 500;
}

/* ===================
   SECTIONS
=================== */
.section-header {
    text-align: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 0.9rem; /* Made text even smaller as requested */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About section specific header styling */
#about .section-header {
    text-align: center;
    margin-bottom: 56px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

#about .section-title {
    margin-bottom: 8px;
    position: relative;
}

#about .section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    border-radius: 2px;
}

#about .section-subtitle {
    margin: 16px 0 0 0;
    max-width: none;
    font-size: 1.25rem;
    font-weight: 400;
}

/* ===================
   ABOUT SECTION
=================== */
.about-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 56px;
}

.about-left-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    border-radius: calc(var(--border-radius-lg) + 8px);
    z-index: -1;
    opacity: 0.1;
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-photo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Consistent content sections */
.content-section {
    padding: 28px;
    background: rgba(248, 250, 252, 0.6);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition);
}

.content-section:hover {
    background: rgba(248, 250, 252, 0.8);
    transform: translateX(4px);
}

.content-section h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
}

.content-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.content-section p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Intro section without background for variety */
.about-intro {
    padding: 0 0 24px 0;
    background: none;
    border: none;
    border-bottom: 2px solid #f1f5f9;
}

.about-intro:hover {
    transform: none;
    background: none;
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    font-weight: 400;
}

/* Bootcamp section with consistent styling */
.about-bootcamp {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
    padding: 32px;
    background: rgba(248, 250, 252, 0.6);
    border-radius: var(--border-radius);
    /* Removed border-left for the yellow bar */
    transition: var(--transition);
}

.about-bootcamp:hover {
    background: rgba(248, 250, 252, 0.8);
    /* Removed transform on hover as it was related to the border */
}

.bootcamp-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.bootcamp-logo {
    height: 80px;
    width: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

.bootcamp-title {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
}

.bootcamp-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.bootcamp-text p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
}

    .bootcamp-content-wrapper {
        /* Reverted changes to this rule */
    }

    .bootcamp-content-wrapper details {
        padding-left: 20px; /* Add 20px buffer on the left for mobile to the details element */
    }

    .bootcamp-content-wrapper summary {
        /* Reverted changes to this rule */
    }

    .bootcamp-content-wrapper summary {
        display: flex;
        align-items: center;
        gap: 8px; /* Space between text and arrow */
        cursor: pointer;
        list-style: none; /* Hide default marker */
    }

    .bootcamp-content-wrapper summary::-webkit-details-marker {
        display: none; /* Hide default marker for webkit browsers */
    }

    .bootcamp-content-wrapper summary::after { /* Changed to ::after */
        content: '▶'; /* Custom arrow */
        color: var(--primary-gold);
        transition: transform 0.2s ease;
    }

    .bootcamp-content-wrapper details[open] summary::after { /* Changed to ::after */
        transform: rotate(90deg); /* Rotate arrow when open */
    }

.bootcamp-content-wrapper ul.checklist {
    margin-top: 10px; /* Space between summary and list */
}

/* ===================
   SERVICES
=================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Individual service images */
.service-card:nth-child(1) .service-image {
    background-image: url('/static/images/katy-db-row_optimized.jpg');
}

.service-card:nth-child(2) .service-image {
    background-image: url('/static/images/katy-stretch_optimized.jpg');
}

.service-card:nth-child(3) .service-image {
    background-image: url('/static/images/mealplan.png');
}

.service-image::before {
    content: '📸';
    font-size: 48px;
    opacity: 0.3;
}

.service-content {
    padding: 32px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.125rem;
}

.service-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    color: var(--text-medium);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* ===================
   FORMS
=================== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-select {
    background: white;
    cursor: pointer;
}

.form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.form-message--success {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.form-message--warning {
    background: #fff3cd; /* Light yellow */
    border-left: 4px solid #ffc107; /* Darker yellow/orange */
    color: #664d03; /* Dark text for contrast */
}

.form-message--error {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.bootcamp-static-warning {
    background: #fff3cd; /* Light yellow */
    border-left: 4px solid #ffc107; /* Darker yellow/orange, similar to form-message--warning */
    border-radius: 8px;
    padding: 12px;
    color: #664d03; /* Dark text for contrast */
    font-weight: 600;
    text-align: center;
    /* Removed 'border' to use 'border-left' for a more highlighted look */
    border-top: 1px solid #ffc107; /* Add top/right/bottom borders for a box effect */
    border-right: 1px solid #ffc107;
    border-bottom: 1px solid #ffc107;
}

/* Field error states */
.form-input.field-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
    background-color: #fef2f2;
}

.form-input.field-error:focus {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

/* Screen reader only class for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Admin table specific styles for responsiveness */
.table-wrapper {
    overflow-x: auto; /* Enable horizontal scrolling for tables */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

@media (max-width: 768px) {
    .data-table th,
    .data-table td {
        white-space: nowrap; /* Prevent text from wrapping in table cells */
    }

    .data-table td:nth-child(4), /* Capacity column */
    .data-table th:nth-child(4),
    .data-table td:nth-child(5), /* Type column */
    .data-table th:nth-child(5),
    .data-table td:nth-child(6), /* Price column */
    .data-table th:nth-child(6),
    .data-table td:nth-child(7), /* Confirmed column */
    .data-table th:nth-child(7),
    .data-table td:nth-child(8), /* Pending column */
    .data-table th:nth-child(8),
    .data-table td:nth-child(9), /* Available column */
    .data-table th:nth-child(9),
    .data-table td:nth-child(10), /* Status column */
    .data-table th:nth-child(10) {
        display: table-cell !important; /* Ensure these columns are always visible */
    }
}

/* ===================
   BOOTCAMP DATE SELECTION
=================== */
.bootcamp-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.bootcamp-date-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px 24px 24px; /* Further adjusted padding for badge clearance */
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bootcamp-date-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-gold);
}

.bootcamp-date-card.selected {
    border-color: var(--primary-gold);
    background: rgba(244, 196, 48, 0.05);
}

.bootcamp-date-card .date-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 10px; /* Added margin to push text down from badge */
    margin-right: 40px; /* Added margin to push text left from badge */
}

.bootcamp-date-card .date-details {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 4px; /* Reduced from 12px to bring location closer */
}

.bootcamp-date-card .date-location {
    color: var(--text-dark); /* Changed from var(--text-medium) */
    font-size: 0.95rem;
    margin-top: 4px;
    margin-bottom: 12px;
    font-weight: 600; /* Changed from 500 to 600 */
}

.bootcamp-date-card .spots-available {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.bootcamp-date-card button {
    width: 100%;
    margin: 0;
}

.bootcamp-date-card:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bootcamp-date-card:disabled:hover {
    transform: none;
    box-shadow: none;
}

.bootcamp-date-card.bootcamp-date-card--studio {
    border: 2px solid var(--primary-gold) !important;
}

.bootcamp-date-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bootcamp-date-card:hover::before,
.bootcamp-date-card.selected::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .bootcamp-dates {
        grid-template-columns: 1fr;
    }
    
    .bootcamp-date-card {
        padding: 36px 26px 20px 20px; /* Further adjusted padding for mobile badge clearance */
    }
}
/* ===================
   CTA SECTIONS
=================== */
.cta-section {
    background: linear-gradient(135deg, var(--text-dark), #2d3748);
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* ===================
   FOOTER
=================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-gold);
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    color: #9ca3af;
}

/* ===================
   ANIMATIONS
=================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.loading {
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================
   RESPONSIVE DESIGN
=================== */
@media (max-width: 768px) {
    .nav-links,
    .cta-button {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
	.hero {
			padding-top: 100px;
	}
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 60px 16px;
    }

    .section-padding-large {
        padding: 80px 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text {
        gap: 24px;
    }

    .content-section h3,
    .bootcamp-title {
        font-size: 1.25rem;
    }

    #about .section-header {
        text-align: center;
    }

    #about .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .bootcamp-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .bootcamp-logo {
        height: 100px;
        width: 100px;
    }

    .bootcamp-content-wrapper {
        padding-left: 4px; /* Add 4px padding to the wrapper to make total 20px from screen edge (16px from section-padding + 4px here) */
    }

    /* No specific overrides needed for .bootcamp-content-wrapper summary or ::after in mobile media query */
}


@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 16px;
    }

    .content-section {
        padding: 20px;
    }

    .about-bootcamp {
        padding: 24px;
    }
	
	.hero {
        padding-top: 140px;
    }

    .btn--small {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ===================
   ACCESSIBILITY
=================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

*:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* FREE Corner Banner */
.bootcamp-hero-banner {
    position: relative;
    overflow: hidden;
}

.bootcamp-banner-wrapper {
    position: absolute;
    top: 15px;
    right: -45px;
    background: linear-gradient(135deg, #f4c430 0%, #d4a017 100%);
    color: #1a1a1a;
    padding: 10px 70px;
    font-weight: 900;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
    letter-spacing: 2px;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.2; /* Adjust line height for better spacing */
}

.banner-main-text {
    font-size: 1.1rem; /* Original font size for "FREE" */
    font-weight: 900;
}

.banner-sub-text {
    font-size: 0.7rem; /* Smaller font size for "Until 9/6" */
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 2px; /* Small margin to separate from main text */
}

/* Bootcamp Date Card Banners - Updated Corner Style */
.bootcamp-date-banner {
    position: absolute;
    top: -1px;
    right: -1px;
    padding: 8px 16px;
    font-weight: bold;
    font-size: 18px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    border-radius: 0 12px 0 12px; /* Cut corner effect */
    transform: none; /* Remove rotation */
}

.bootcamp-date-banner--free {
    background: var(--primary-gold);
    color: var(--text-dark);
}

.bootcamp-date-banner--paid {
    background: #3b82f6;
    color: white;
}

/* Mobile responsive for date card banners */
@media (max-width: 768px) {
    .bootcamp-date-banner {
        top: -1px;
        right: -1px;
        padding: 8px 16px;
        font-size: 16px;
        transform: none; /* Ensure no rotation on mobile */
    }
}

/* FREE Corner Banner */
.bootcamp-hero-banner {
    position: relative;
    overflow: hidden;
}

.bootcamp-banner-wrapper {
    position: absolute;
    top: 15px;
    right: -45px;
    background: linear-gradient(135deg, #f4c430 0%, #d4a017 100%);
    color: #1a1a1a;
    padding: 10px 70px;
    font-weight: 900;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
    letter-spacing: 2px;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.2; /* Adjust line height for better spacing */
}

.banner-main-text {
    font-size: 1.1rem; /* Original font size for "FREE" */
    font-weight: 900;
}

.banner-sub-text {
    font-size: 0.7rem; /* Smaller font size for "Until 9/6" */
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 2px; /* Small margin to separate from main text */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .bootcamp-banner-wrapper {
        top: 10px; /* Adjusted for mobile */
        right: -35px; /* Adjusted for mobile */
        padding: 8px 50px;
        letter-spacing: 1px;
    }
    .banner-main-text {
        font-size: 0.9rem; /* Smaller font for mobile */
    }
    .banner-sub-text {
        font-size: 0.6rem; /* Even smaller font for mobile subtext */
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

.header.scrolled .logo-light {
    display: none;
}

.header.scrolled .logo-dark {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--primary-gold);
    outline: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}
/* ===================
   BOOTCAMP PAGE HEADER
=================== */
.header.bootcamp-page {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.header.bootcamp-page .nav-links a {
    color: var(--text-dark);
}

.header.bootcamp-page .logo-light {
    display: none;
}

.header.bootcamp-page .logo-dark {
    display: block;
}

.header.bootcamp-page .mobile-menu-btn span {
    background: var(--text-dark);
}

/* ===================
   BUTTONS
=================== */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    color: var(--text-dark);
}

.btn--primary:hover,
.btn--primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 196, 48, 0.3);
    outline: none;
}

.btn--secondary {
    background: #2d3748; /* Navy background */
    color: white;
    border: 2px solid #2d3748; /* Navy border */
}

.btn--secondary:hover,
.btn--secondary:focus {
    background: var(--primary-gold); /* Gold on hover */
    color: var(--text-dark);
    border-color: var(--primary-gold); /* Gold border on hover */
    outline: none;
}

.btn--large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn--full-width {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    color: var(--text-dark);
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 0.5px;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 196, 48, 0.3);
    outline: none;
}

/* ===================
   MOBILE MENU
=================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
    transition: var(--transition);
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: var(--transition);
}

.header.scrolled .mobile-menu-btn span,
.header.mobile-menu-active .mobile-menu-btn span {
    background: var(--text-dark);
}

/* When mobile menu is active, switch to dark logo */
.header.mobile-menu-active .logo-light {
    display: none;
}

.header.mobile-menu-active .logo-dark {
    display: block;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    padding: 80px 24px 24px;
    transition: left 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
}

.mobile-nav li {
    margin: 24px 0;
}

.mobile-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

/* ===================
   HERO SECTION
=================== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), 
                url('/static/images/hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
	padding-top: 100px;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 0 24px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero h1 strong {
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================
   TRUST INDICATORS
=================== */
.trust-indicators {
    padding: 60px 24px;
    background: white;
    text-align: center;
}

.trust-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.trust-item {
    padding: 24px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 8px;
}

.trust-label {
    color: var(--text-medium);
    font-weight: 500;
}

/* ===================
   SECTIONS
=================== */
.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 0px;
    font-weight: 600;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About section specific header styling */
#about .section-header {
    text-align: center;
    margin-bottom: 56px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

#about .section-title {
    margin-bottom: 8px;
    position: relative;
}

#about .section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    border-radius: 2px;
}

#about .section-subtitle {
    margin: 16px 0 0 0;
    max-width: none;
    font-size: 1.25rem;
    font-weight: 400;
}

/* ===================
   ABOUT SECTION
=================== */
.about-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 56px;
}

.about-left-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    border-radius: calc(var(--border-radius-lg) + 8px);
    z-index: -1;
    opacity: 0.1;
}

.about-photo {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-photo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Consistent content sections */
.content-section {
    padding: 28px;
    background: rgba(248, 250, 252, 0.6);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition);
}

.content-section:hover {
    background: rgba(248, 250, 252, 0.8);
    transform: translateX(4px);
}

.content-section h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
}

.content-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.content-section p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Intro section without background for variety */
.about-intro {
    padding: 0 0 24px 0;
    background: none;
    border: none;
    border-bottom: 2px solid #f1f5f9;
}

.about-intro:hover {
    transform: none;
    background: none;
}

.about-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    font-weight: 400;
}

/* Bootcamp section with consistent styling */
.about-bootcamp {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 48px;
    padding: 32px;
    background: rgba(248, 250, 252, 0.6);
    border-radius: var(--border-radius);
    /* Removed border-left for the yellow bar */
    transition: var(--transition);
}

.about-bootcamp:hover {
    background: rgba(248, 250, 252, 0.8);
    /* Removed transform on hover as it was related to the border */
}

.bootcamp-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}

.bootcamp-logo {
    height: 80px;
    width: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
	transform: scale(1.5);       /* new line */
    transform-origin: center;    /* keep it centered */
}

.bootcamp-title {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
    position: relative;
}

.bootcamp-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.bootcamp-text p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* ===================
   SERVICES
=================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Individual service images */
.service-card:nth-child(1) .service-image {
    background-image: url('/static/images/katy-db-row.jpg');
}

.service-card:nth-child(2) .service-image {
    background-image: url('/static/images/katy-stretch.jpg');
}

.service-card:nth-child(3) .service-image {
    background-image: url('/static/images/mealplan.png');
}

.service-image::before {
    content: '📸';
    font-size: 48px;
    opacity: 0.3;
}

.service-content {
    padding: 32px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.125rem;
}

.service-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    color: var(--text-medium);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* ===================
   FORMS
=================== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(244, 196, 48, 0.1);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-select {
    background: white;
    cursor: pointer;
}

.form-message {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.form-message--success {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.form-message--warning {
    background: #fff3cd; /* Light yellow */
    border-left: 4px solid #ffc107; /* Darker yellow/orange */
    color: #664d03; /* Dark text for contrast */
}

.form-message--error {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.bootcamp-static-warning {
    background: #fff3cd; /* Light yellow */
    border-left: 4px solid #ffc107; /* Darker yellow/orange, similar to form-message--warning */
    border-radius: 8px;
    padding: 12px;
    color: #664d03; /* Dark text for contrast */
    font-weight: 600;
    text-align: center;
    /* Removed 'border' to use 'border-left' for a more highlighted look */
    border-top: 1px solid #ffc107; /* Add top/right/bottom borders for a box effect */
    border-right: 1px solid #ffc107;
    border-bottom: 1px solid #ffc107;
}

/* Field error states */
.form-input.field-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
    background-color: #fef2f2;
}

.form-input.field-error:focus {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}

/* Screen reader only class for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* ===================
   BOOTCAMP DATE SELECTION
=================== */
.bootcamp-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.bootcamp-date-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: 24px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bootcamp-date-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-gold);
}

.bootcamp-date-card.selected {
    border-color: var(--primary-gold);
    background: rgba(244, 196, 48, 0.05);
}

.bootcamp-date-card .date-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.bootcamp-date-card .date-details {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 12px;
}

.bootcamp-date-card .spots-available {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.bootcamp-date-card button {
    width: 100%;
    margin: 0;
}

.bootcamp-date-card:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bootcamp-date-card:disabled:hover {
    transform: none;
    box-shadow: none;
}

.bootcamp-date-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bootcamp-date-card:hover::before,
.bootcamp-date-card.selected::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .bootcamp-dates {
        grid-template-columns: 1fr;
    }
    
    .bootcamp-date-card {
        padding: 20px;
    }
}
/* ===================
   CTA SECTIONS
=================== */
.cta-section {
    background: linear-gradient(135deg, var(--text-dark), #2d3748);
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* ===================
   FOOTER
=================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-gold);
}

.footer-section p,
.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    color: #9ca3af;
}

/* ===================
   ANIMATIONS
=================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.loading {
    pointer-events: none;
    opacity: 0.7;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================
   RESPONSIVE DESIGN
=================== */
@media (max-width: 768px) {
    .nav-links,
    .cta-button {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
	.hero {
			padding-top: 100px;
	}
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 60px 16px;
    }

    .section-padding-large {
        padding: 80px 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text {
        gap: 24px;
    }

    .content-section h3,
    .bootcamp-title {
        font-size: 1.25rem;
    }

    #about .section-header {
        text-align: center;
    }

    #about .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .bootcamp-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .bootcamp-logo {
        height: 100px;
        width: 100px;
    }
}


@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .nav-container {
        padding: 0 16px;
    }

    .content-section {
        padding: 20px;
    }

    .about-bootcamp {
        padding: 24px;
    }
	
	.hero {
        padding-top: 140px;
    }

    .btn--small {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ===================
   ACCESSIBILITY
=================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

*:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* FREE Corner Banner */
.bootcamp-hero-banner {
    position: relative;
    overflow: hidden;
}

.bootcamp-banner-wrapper {
    position: absolute;
    top: 15px;
    right: -45px;
    background: linear-gradient(135deg, #f4c430 0%, #d4a017 100%);
    color: #1a1a1a;
    padding: 10px 70px;
    font-weight: 900;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
    letter-spacing: 2px;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.2; /* Adjust line height for better spacing */
}

.banner-main-text {
    font-size: 1.1rem; /* Original font size for "FREE" */
    font-weight: 900;
}

.banner-sub-text {
    font-size: 0.7rem; /* Smaller font size for "Until 9/6" */
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 2px; /* Small margin to separate from main text */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .bootcamp-banner-wrapper {
        top: 10px; /* Adjusted for mobile */
        right: -35px; /* Adjusted for mobile */
        padding: 8px 50px;
        letter-spacing: 1px;
    }
    .banner-main-text {
        font-size: 0.9rem; /* Smaller font for mobile */
    }
    .banner-sub-text {
        font-size: 0.6rem; /* Even smaller font for mobile subtext */
    }
}


/* Tighten the end of the hero */
.bootcamp-hero-banner.section-padding-large {
  padding-bottom: 5px;   /* reduce from 100px */
}

/* Tighten spacing inside hero */
.bootcamp-hero-banner .section-header { margin-bottom: 8px; }
.bootcamp-hero-banner .about-bootcamp {
  margin-top: 8px;
  margin-bottom: 0;       /* no extra gap at bottom */
}

.bootcamp-hero-banner {
    border-left: none !important; /* Explicitly remove the yellow bar */
}

/* ===================
   PACKAGE OPTIONS
=================== */
.package-options-container {
    margin-top: 32px;
    text-align: center;
}

.package-options-header {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the entire content */
    gap: 20px; /* Add a gap between the left and right sections */
    padding: 16px 20px;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color 0.2s ease;
    user-select: none;
}

.package-options-header:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.package-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    /* flex-grow: 1; Removed as parent flexbox will handle centering */
    /* justify-content: center; Removed as parent flexbox will handle centering */
}

.package-header-left h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.package-header-right {
    display: flex;
    align-items: center;
}

.package-chevron {
    font-size: 0.75rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
    display: inline-block;
}

.package-options-header.expanded .package-chevron {
    transform: rotate(90deg);
}

.package-new-badge {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(244, 196, 48, 0.3);
}

.package-options-content {
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 500px;
    opacity: 1;
}

.package-options-content.collapsed {
    max-height: 0;
    opacity: 0;
}

.package-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.package-option-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.package-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-hover));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.package-option-card:hover::before {
    opacity: 1;
}

.package-option-card.selected {
    border-color: var(--primary-gold);
    background: rgba(244, 196, 48, 0.05);
    box-shadow: 0 8px 24px rgba(244, 196, 48, 0.2);
}

.package-option-card.selected::before {
    opacity: 1;
}

.package-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.package-savings {
    font-size: 0.875rem;
    color: #059669;
    font-weight: 600;
    background: rgba(5, 150, 105, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

@media (max-width: 480px) {
    .package-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-width: 100%;
    }
    
    .package-option-card {
        padding: 10px 12px;
    }
    
    .package-title {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .package-savings {
        font-size: 0.75rem;
    }
}

/* Pull the "Reserve Your Spot" section up */
.section-padding { padding: 80px 24px; } /* Original value */
.section-padding-large { padding: 100px 24px; } /* Original value */

#dateSelection {
    margin-top: -20px; /* Adjusted negative margin to reduce overlap */
}

/* Reduce padding-top and padding-bottom for the section containing "Reserve Your Spot" */
.section-padding.bg-white {
    padding-top: 20px; /* Reduced from 80px */
    padding-bottom: 0px; /* Removed padding at the bottom */
}

/* Adjust margin-bottom for section-subtitle to reduce space before calendar */
.section-subtitle {
    margin-bottom: 24px; /* Adjusted to add a little more space */
}

/* ===================
   DISCOUNT CODE SECTION
=================== */
.discount-section {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(248, 250, 252, 0.6);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition);
}

.discount-section:hover {
    background: rgba(248, 250, 252, 0.8);
}

.discount-input-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.discount-input {
    flex: 1;
    min-width: 200px;
}

.discount-btn {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.btn--link {
    background: none;
    color: var(--primary-gold);
    border: none;
    text-decoration: underline;
    padding: 12px 16px;
}

.btn--link:hover,
.btn--link:focus {
    color: var(--primary-gold-hover);
    background: rgba(244, 196, 48, 0.1);
    text-decoration: none;
    transform: none;
    box-shadow: none;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 12px;
    background: rgba(244, 196, 48, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
}

.discounted-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.25rem;
}

.discount-savings {
    color: #059669;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(5, 150, 105, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Mobile responsive for discount section */
@media (max-width: 768px) {
    .discount-input-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .discount-input {
        min-width: auto;
    }
    
    .discount-btn {
        width: 100%;
        justify-content: center;
    }
    
    .price-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
/* ========================================
   CLIENT REVIEWS CAROUSEL STYLES
   ======================================== */

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 40px 0;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* Carousel Container */
.reviews-carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0 40px;
    width: 100%;
}

.reviews-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Review Cards */
.review-card {
    min-width: 350px;
    max-width: 350px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Desktop: Show 3 cards at once */
@media (min-width: 1200px) {
    .review-card {
        min-width: calc((100% - 48px) / 3);
        max-width: calc((100% - 48px) / 3);
    }
}

/* Tablet: Show 2 cards at once */
@media (min-width: 769px) and (max-width: 1199px) {
    .review-card {
        min-width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: #2c3e50;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
    min-width: 0;
}

.reviewer-info h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 6px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 13px;
    color: #999;
    white-space: nowrap;
}

.review-stars {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
    margin-left: 12px;
}

.review-star {
    color: #ffc107;
    font-size: 20px;
    line-height: 1;
}

.review-star.empty {
    color: #ddd;
}

.review-text {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex: 1;
}

/* Carousel Controls */
.reviews-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.reviews-carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #2c3e50;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.reviews-carousel-btn:hover {
    background: #2c3e50;
    color: white;
}

.reviews-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Carousel Dots */
.reviews-carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-dot.active {
    background: #2c3e50;
    width: 24px;
    border-radius: 5px;
}

.reviews-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .stats-bar {
        gap: 24px;
        padding: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .review-card {
        min-width: 280px !important;
        max-width: 280px !important;
        padding: 24px;
    }

    .reviews-carousel-track {
        gap: 16px;
    }

    .reviews-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .reviewer-info h4 {
        font-size: 16px;
    }

    .review-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .review-card {
        min-width: 260px !important;
        max-width: 260px !important;
        padding: 20px;
    }

    .stats-bar {
        flex-direction: column;
        gap: 20px;
    }

    .review-star {
        font-size: 18px;
    }
}

/* ===================
   CALENDAR STYLES
=================== */
.calendar-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #f3f4f6;
    overflow: hidden;
    margin-bottom: 2rem;
}

.calendar-inner {
    padding: 2.5rem;
}

.month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.month-title {
    font-size: 1.875rem;
    font-weight: 300;
    letter-spacing: -0.025em;
    color: var(--text-dark);
}

.month-year {
    color: #9ca3af;
}

.month-nav {
    display: flex;
    gap: 0.25rem;
}

.nav-btn {
    background: none;
    border: none;
    padding: 0.625rem;
    cursor: pointer;
    border-radius: 9999px;
    transition: background 0.2s;
    color: var(--text-dark);
}

.nav-btn:hover:not(:disabled) {
    background: #f9fafb;
}

.nav-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.day-header {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: #9ca3af;
    padding: 0.75rem 0;
    letter-spacing: 0.05em;
}

.day-cell {
    aspect-ratio: 1;
    border: none;
    background: none;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-dark);
    font-weight: 400;
}

.day-cell.available {
    background: #f9fafb;
    font-weight: 500;
}

.day-cell.available:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

.day-cell.full {
    background: #f9fafb;
    font-weight: 500;
    cursor: pointer;
}

.day-cell.full:hover {
    background: #f3f4f6;
    transform: scale(1.05);
}

button.day-cell.selected {
    background: #000 !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

button.day-cell.selected:hover {
    background: #000 !important;
    color: white !important;
}

.day-cell.unavailable {
    color: #d1d5db;
    cursor: not-allowed;
}

.day-cell:disabled {
    cursor: not-allowed;
}

/* Selection Bar */
.selection-bar {
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 2.5rem;
    background: #f9fafb;
    display: none;
}

.selection-bar.visible {
    display: block;
}

.selection-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.selection-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    flex-wrap: wrap;
}

.info-block.time-location-container {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    min-width: 200px;
    flex: 1;
}

.info-block.available-price-container {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    min-width: 200px;
    flex: 1;
}

.info-block.location-field {
    flex: 1;
    text-align: right;
    min-width: 120px;
}

.info-block.available-price-container {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1; /* Give less flex-grow to available/price */
    min-width: 180px; /* Adjust min-width slightly */
}

.info-block.available-field {
    flex: 0 0 auto;
}

.info-block.price-field {
    flex: 1;
    text-align: right;
    min-width: 80px;
}

.info-block-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-block-value {
    font-weight: 500;
    color: var(--text-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.info-divider {
    width: 1px;
    height: 2.5rem;
    background: #d1d5db;
}

.spots-available {
    color: #10b981;
}

.selection-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.price-display {
    text-align: left;
}

.price-display-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-display-value {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.reserve-btn {
    background: #000;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    font-size: 0.875rem;
}

.reserve-btn:hover {
    background: #374151;
}

.calendar-footer {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #9ca3af;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Calendar Mobile Responsive */
@media (max-width: 768px) {
    .calendar-inner {
        padding: 1.5rem;
    }

    .month-header {
        margin-bottom: 1.5rem;
    }

    .month-title {
        font-size: 1.5rem;
    }

    .selection-bar {
        padding: 1rem 1.5rem;
    }

    .selection-content {
        flex-direction: column;
        align-items: stretch;
    }

    .selection-info {
        justify-content: space-between;
    }

    .info-divider {
        display: none;
    }

    .selection-actions {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .reserve-btn {
        flex: 1;
        max-width: 60%;
    }

    .price-display {
        text-align: left;
        flex-shrink: 0;
    }
    
    .price-display-value {
        font-size: 1.25rem;
    }

    .day-cell {
        font-size: 0.75rem;
    }
}

/* Desktop-specific calendar sizing */
@media (min-width: 769px) {
    .calendar-card {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .calendar-inner {
        padding: 1.5rem;
    }
    
    .month-title {
        font-size: 1.5rem;
    }
    
    .day-cell {
        font-size: 0.75rem;
    }
    
    /* Desktop-specific styles for selection bar to prevent overlapping */
    .selection-info {
        flex-wrap: nowrap; /* Prevent wrapping on desktop */
    }

    .info-block.time-location-container {
        flex: 2; /* Give more flex-grow to time/location */
        min-width: 200px; /* Ensure minimum width */
    }

    .info-block.available-price-container {
        flex: 1; /* Give less flex-grow to available/price */
        min-width: 180px; /* Adjust min-width slightly */
    }
}
