/* ============================================
   HAVA Swim Opportunity — styles.css
   Forked from hargrave-swim-landing/styles.css
   Stripped: AOSI quiz, request form modal, ROI calc,
   college destinations, schedule toggle, Tailwind utilities
   ============================================ */

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

body {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    padding-bottom: 100px;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: white;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #ef6c00;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.17rem, 2.7vw, 1.62rem);
    color: #ef6c00;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: -0.5rem auto 3rem;
}

/* Inline text links */
.inline-link {
    color: #ef6c00;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.inline-link:hover {
    color: #cc5c00;
}

/* Accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #ef6c00;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
}

.skip-to-content:focus {
    top: 0;
}

/* ============================================
   HEADER / HERO
   ============================================ */
.header-section {
    position: relative;
    color: white;
    padding: 20px 0 0 0;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.hero-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-static::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

.header-container {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    position: relative;
    z-index: 10;
    padding: 0 1rem;
}

.header-top {
    margin-top: 1rem;
    max-width: 28.8rem;
    position: relative;
    width: fit-content;
    margin-left: 0;
    padding: 0.8rem 1.6rem 0.8rem 0;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -100vw;
    background: white;
    z-index: -1;
    border-radius: 0 16px 16px 0;
}

.header-logo {
    height: auto;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.header-bottom {
    margin-top: auto;
    margin-bottom: auto;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.headline-new {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    margin-bottom: 1rem;
}

.hero-subheadline {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero CTA */
.hero-cta-container {
    margin-top: 0.5rem;
}

.hero-cta-subtitle {
    color: white;
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin-top: 0.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.3px;
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.section {
    padding: 80px 0;
}

/* Fade-in animation — opacity only to avoid layout shift */
.section-fade {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.section-fade.visible {
    opacity: 1;
}

/* ============================================
   SECTION 2: PULL QUOTE
   ============================================ */
.pull-quote-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 50px 0;
}

.pull-quote {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 700;
    color: white;
    font-style: italic;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

.pull-quote cite {
    display: inline;
    font-size: 1rem;
    font-style: normal;
    color: #ef6c00;
    font-weight: 600;
    white-space: nowrap;
}

/* ============================================
   SECTION 3: COACH BIO
   ============================================ */
.coach-profile {
    background: #f9f9f9;
}

.coach-card {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.coach-card > h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.coach-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.coach-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.coach-name {
    text-align: center;
    margin-top: 1.5rem;
    color: #333;
}

.coach-title {
    text-align: center;
    color: #ef6c00;
    font-weight: 600;
}

.coach-bio-col p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.credential-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.credential-card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #ef6c00;
}

.credential-card h4 {
    color: #ef6c00;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.credential-card p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    padding-left: 0;
}

/* ============================================
   SECTION 4: OPEN HOUSE
   ============================================ */
.open-house-section {
    background: white;
}

.open-house-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #fff5ed 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid #ef6c00;
    box-shadow: 0 8px 25px rgba(239, 108, 0, 0.1);
}

.open-house-date-badge {
    display: inline-block;
    background: #ef6c00;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-family: 'Raleway', sans-serif;
}

.open-house-card h2 {
    color: #333;
    margin-bottom: 0.5rem;
}

.open-house-location {
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.open-house-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.open-house-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.open-house-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.open-house-item strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.open-house-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Open House Schedule */
.open-house-schedule {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.schedule-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(239, 108, 0, 0.15);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-time {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ef6c00;
    min-width: 120px;
    flex-shrink: 0;
}

.schedule-label {
    color: #444;
    font-size: 0.95rem;
}

.schedule-label em {
    color: #999;
    font-size: 0.85rem;
}

.open-house-note {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   SECTION 5: PRICING TABLE
   ============================================ */
.pricing-section {
    background: #f9f9f9;
}

.pricing-table-wrapper {
    max-width: 900px;
    margin: 0 auto 2rem;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.pricing-table thead {
    background: #1a1a2e;
    color: white;
}

.pricing-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.pricing-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    color: #444;
    font-size: 0.95rem;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: #fff5ed;
}

.pricing-cards-mobile {
    display: none;
}

.free-week-callout {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    text-align: center;
    background: #ef6c00;
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.05rem;
}

.pricing-note {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

/* ============================================
   SECTION 7: FACILITY & EQUIPMENT
   ============================================ */
.facility-section {
    background: #f9f9f9;
}

.facility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.facility-facts {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.facility-facts h3 {
    margin-bottom: 1.5rem;
}

.facility-pool-img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.facility-list {
    list-style: none;
    padding: 0;
}

.facility-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 1rem;
}

.facility-list .check {
    color: #ef6c00;
    margin-right: 0.75rem;
    font-weight: 700;
}

.facility-equipment {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.facility-equipment h3 {
    margin-bottom: 1.5rem;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    flex: 1;
}

.equipment-item {
    background: #f9f9f9;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.equipment-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.equipment-text {
    padding: 0.75rem 1rem;
}

.equipment-text strong {
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.equipment-text p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   SECTION 8: TRAINING APPROACH VALUES
   ============================================ */
.training-approach {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.value-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   SECTION 9: TRANSFER GUIDANCE
   ============================================ */
.transfer-section {
    background: #f9f9f9;
}

.transfer-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.transfer-card h2 {
    color: #333;
}

.transfer-card p {
    color: #555;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.transfer-note {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ============================================
   SECTION 10: INTAKE FORM
   ============================================ */
.form-section {
    background: linear-gradient(135deg, #fff5ed 0%, #fef3e8 100%);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-header h2 {
    color: #333;
}

.form-header p {
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Form step progress */
.form-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.form-progress-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-progress-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Raleway', sans-serif;
    background: #ddd;
    color: #999;
    transition: all 0.3s ease;
}

.form-progress-dot.active {
    background: #ef6c00;
    color: white;
}

.form-progress-dot.completed {
    background: #2e7d32;
    color: white;
}

.form-progress-line {
    width: 40px;
    height: 3px;
    background: #ddd;
    transition: background 0.3s ease;
}

.form-progress-line.active {
    background: #ef6c00;
}

/* Form card container for each step */
.form-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.form-step.collapsed {
    max-height: 0;
    opacity: 0;
    padding: 0 2rem;
    margin-bottom: 0;
    pointer-events: none;
}

.form-step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ef6c00;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Raleway', sans-serif;
    flex-shrink: 0;
}

.form-step-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

/* Form fields */
.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 0.75rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ef6c00;
    box-shadow: 0 0 0 3px rgba(239, 108, 0, 0.15);
}

.form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.form-group .field-error {
    border-color: #d32f2f;
}

.form-error-msg {
    color: #d32f2f;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Radio card groups */
.radio-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.radio-cards.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.radio-cards.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.radio-card {
    position: relative;
    cursor: pointer;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-card-label {
    display: block;
    padding: 0.75rem 1rem;
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-card input[type="radio"]:checked + .radio-card-label {
    background: #fff5ed;
    border-color: #ef6c00;
    color: #ef6c00;
}

.radio-card-label:hover {
    border-color: #ef6c00;
    background: #fef9f5;
}

/* Swimmer repeater */
.swimmer-entry {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}

.swimmer-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.swimmer-entry-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ef6c00;
}

.remove-swimmer-btn {
    background: none;
    border: none;
    color: #d32f2f;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.remove-swimmer-btn:hover {
    background: rgba(211, 47, 47, 0.1);
}

.add-swimmer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 2px dashed #ef6c00;
    color: #ef6c00;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.add-swimmer-btn:hover {
    background: #fff5ed;
}

/* Form buttons */
.form-btn-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.form-continue-btn {
    padding: 0.7rem 1.8rem;
    background: #ef6c00;
    color: white;
    border: 2px solid #ef6c00;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-continue-btn:hover {
    background: #cc5c00;
    border-color: #cc5c00;
    transform: translateY(-1px);
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: #ef6c00;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    background: #cc5c00;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(239, 108, 0, 0.3);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-consent {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
}

/* Thank-you state */
.form-thank-you {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.form-thank-you .thank-you-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-thank-you h3 {
    color: #2e7d32;
    margin-bottom: 0.75rem;
}

.form-thank-you p {
    color: #555;
    max-width: 500px;
    margin: 0 auto 0.5rem;
}

/* ============================================
   SECTION 12: BOTTOM CTA
   ============================================ */
.bottom-cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 0;
}

.bottom-cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.bottom-cta-card h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.bottom-cta-card p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
    font-family: 'Raleway', sans-serif;
}

.cta-button.primary {
    background: #ef6c00;
    color: white;
}

.cta-button.primary:hover {
    background: #cc5c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 108, 0, 0.4);
}

.cta-large {
    padding: 18px 40px;
    font-size: 1.15rem;
}

/* ============================================
   FLOATING BOTTOM CTA
   ============================================ */
.floating-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.floating-bottom-cta.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.floating-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.floating-cta-primary {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.floating-btn {
    display: inline-block;
    padding: 10px 28px;
    background: #ef6c00;
    color: white;
    border: 2px solid #ef6c00;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.floating-btn:hover {
    background: #cc5c00;
    border-color: #cc5c00;
}

.floating-free-week {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.floating-cta-contact {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    text-align: center;
}

.floating-cta-contact a {
    color: #ef6c00;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.floating-cta-contact a:hover {
    color: #ffab40;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 380px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    background: linear-gradient(135deg, #2e7d32, #1b5e20);
}

.toast-error {
    background: linear-gradient(135deg, #d32f2f, #b71c1c);
}

.toast-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
    .section {
        padding: 40px 0;
    }

    .section-subtitle {
        margin-bottom: 1.5rem;
    }

    .pull-quote-section {
        padding: 30px 0;
    }

    .facility-facts,
    .facility-equipment {
        padding: 1.5rem;
    }

    .equipment-img {
        height: 180px;
    }

    /* Hero mobile */
    .header-section {
        min-height: auto;
    }

    .header-container {
        min-height: auto;
        padding: 0 1rem 2rem;
    }

    .header-bottom {
        max-width: 95vw;
        margin-top: 2rem;
        margin-bottom: 0;
    }

    .header-top {
        margin-left: auto;
        margin-right: auto;
        padding: 0.8rem 1rem;
        max-width: calc(100vw - 2rem);
    }

    .header-top::before {
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% + 2rem);
        border-radius: 16px;
    }

    .headline-new {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    /* Coach bio mobile */
    .coach-card {
        padding: 1.5rem;
    }

    .coach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .coach-photo {
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }

    .coach-name,
    .coach-title {
        text-align: center;
    }

    .credential-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Open House mobile */
    .open-house-card {
        padding: 2rem 1.5rem;
    }

    .open-house-details {
        grid-template-columns: 1fr;
    }

    /* Pricing mobile: hide table, show cards */
    .pricing-table-wrapper {
        display: none;
    }

    .pricing-cards-mobile {
        display: grid;
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .pricing-card-mobile {
        background: white;
        padding: 1.25rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        text-align: center;
    }

    .pricing-card-header {
        font-family: 'Raleway', sans-serif;
        font-weight: 700;
        font-size: 1.05rem;
        color: #333;
        margin-bottom: 0.5rem;
    }

    .pricing-card-price {
        font-size: 2rem;
        font-weight: 800;
        color: #ef6c00;
        font-family: 'Raleway', sans-serif;
    }

    .pricing-card-price span {
        font-size: 0.9rem;
        font-weight: 600;
        color: #888;
    }

    .pricing-card-detail {
        color: #666;
        font-size: 0.9rem;
        margin-top: 0.25rem;
    }

    /* Facility mobile */
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    /* Values mobile */
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    /* Transfer mobile */
    .transfer-card {
        padding: 2rem 1.5rem;
    }

    /* Form mobile */
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .radio-cards {
        grid-template-columns: 1fr;
    }

    .radio-cards.three-col,
    .radio-cards.four-col {
        grid-template-columns: 1fr;
    }

    /* Schedule mobile */
    .schedule-time {
        min-width: 100px;
        font-size: 0.8rem;
    }

    /* Floating CTA mobile */
    .floating-cta-container {
        gap: 4px;
    }

    .floating-cta-primary {
        flex-direction: column;
        gap: 4px;
    }

    .floating-btn {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .floating-free-week {
        font-size: 0.8rem;
    }

    .floating-cta-contact {
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .header-top {
        margin-left: 4rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .header-top {
        margin-left: 4rem;
    }
}

@media (min-width: 1024px) {
    .header-top {
        margin-left: 8rem;
    }
}
