/* ============================================
   PEAKWAY FITNESS - MAIN STYLESHEET
   Industrial Grit Meets Byron Wellness
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Barlow', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #2A2A2A;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   COLOR PALETTE
   ============================================ */

:root {
    --color-primary: #E05C1F;          /* Burnt Orange */
    --color-primary-dark: #C44E18;     /* Hover state */
    --color-charcoal: #1C1C1C;         /* Dark sections */
    --color-dark-grey: #2A2A2A;        /* Cards, dividers */
    --color-mid-grey: #777777;         /* Body text */
    --color-off-white: #F5F5F5;        /* Light backgrounds */
    --color-white: #FFFFFF;
    --color-steel-blue: #4A5568;       /* Accent */
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-orange: 0 8px 16px rgba(224, 92, 31, 0.3);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, .section-headline, .hero-headline {
    font-family: 'Bebas Neue', 'Impact', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h1, .hero-headline {
    font-size: clamp(36px, 8vw, 72px);
    margin-bottom: 24px;
}

h2, .section-headline {
    font-size: clamp(28px, 6vw, 56px);
    margin-bottom: 40px;
}

h3 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
}

h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--color-mid-grey);
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */

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

.section {
    padding: 100px 0;
}

/* Section backgrounds */
.section-problem {
    background-color: var(--color-charcoal);
}

.section-guide {
    background-color: var(--color-white);
}

.section-plan {
    background-color: var(--color-charcoal);
}

.section-offer {
    background-color: var(--color-off-white);
}

.section-scorecard {
    background-color: var(--color-primary);
}

.section-proof {
    background-color: var(--color-off-white);
}

.section-faq {
    background-color: var(--color-white);
}

.section-urgency {
    background-color: var(--color-charcoal);
}

.section-callback {
    background-color: var(--color-primary);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.logo-peak {
    color: var(--color-white);
}

.logo-way {
    color: var(--color-primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.spots-badge {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-phone {
    color: var(--color-white);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.nav-phone:hover {
    color: var(--color-primary);
}

.btn-nav {
    font-size: 14px;
    padding: 12px 24px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-charcoal);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: var(--color-white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-content {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu-link {
    color: var(--color-white);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-link:hover {
    color: var(--color-primary);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-charcoal);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
    min-width: 280px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-text-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    text-decoration: underline;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
}

.btn-text-link:hover {
    color: var(--color-white);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1C1C1C 0%, #2A2A2A 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 40px 80px;
    margin-top: 70px;
}

/* When you add hero image, uncomment and update this */
/*
.hero {
    background-image: url('../images/hero-bg.jpg');
}
*/

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    color: var(--color-white);
}

.hero-badge {
    display: inline-block;
    background-color: rgba(224, 92, 31, 0.9);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-headline {
    color: var(--color-white);
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.trust-icon {
    font-size: 24px;
    color: var(--color-primary);
}

.trust-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.section-problem .section-headline {
    color: var(--color-white);
    text-align: center;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.pain-card {
    background-color: var(--color-dark-grey);
    padding: 32px 24px;
    border-left: 3px solid var(--color-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pain-card p {
    color: var(--color-white);
    font-size: 18px;
    margin: 0;
}

.callout-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border: 2px solid var(--color-primary);
    background-color: rgba(224, 92, 31, 0.05);
    text-align: center;
}

.callout-box h3 {
    color: var(--color-white);
    font-size: 32px;
    margin-bottom: 20px;
}

.callout-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
}

/* ============================================
   GUIDE SECTION
   ============================================ */

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.guide-image {
    position: sticky;
    top: 120px;
}

.guide-image img {
    width: 100%;
    border: 8px solid var(--color-mid-grey);
    box-shadow: var(--shadow-lg);
}

.guide-text h2 {
    color: var(--color-charcoal);
}

.guide-text p {
    color: var(--color-mid-grey);
    margin-bottom: 24px;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: var(--color-off-white);
    border-radius: 4px;
}

.credential-icon {
    font-size: 24px;
}

.credential-item span:last-child {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-charcoal);
}

/* ============================================
   PLAN SECTION
   ============================================ */

.section-plan .section-headline {
    color: var(--color-white);
    text-align: center;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background-color: rgba(255, 255, 255, 0.1);
}

.plan-step {
    background-color: var(--color-dark-grey);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 24px;
}

.plan-step h3 {
    color: var(--color-white);
    font-size: 28px;
    margin-bottom: 20px;
}

.plan-step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 12px;
}

/* ============================================
   OFFER SECTION
   ============================================ */

.offer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.offer-stack h2 {
    color: var(--color-charcoal);
}

.offer-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 32px;
}

.stack-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background-color: var(--color-white);
    margin-bottom: 16px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stack-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.stack-check {
    font-size: 24px;
    color: var(--color-primary);
    font-weight: 700;
    flex-shrink: 0;
}

.stack-content h4 {
    color: var(--color-charcoal);
    font-size: 20px;
    margin-bottom: 8px;
}

.stack-content p {
    font-size: 16px;
    color: var(--color-mid-grey);
    margin-bottom: 8px;
}

.stack-value {
    font-size: 14px;
    color: var(--color-mid-grey);
    text-decoration: line-through;
    font-style: italic;
}

.stack-total {
    text-align: center;
    font-size: 28px;
    color: var(--color-primary);
    padding: 24px;
    background-color: var(--color-white);
    border: 3px solid var(--color-primary);
    margin-top: 16px;
}

/* Price Card */
.price-card-wrapper {
    position: relative;
}

.price-card {
    position: sticky;
    top: 100px;
    background-color: var(--color-dark-grey);
    padding: 40px;
    border: 3px solid var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.price-badge {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.price-main {
    text-align: center;
    margin-bottom: 16px;
}

.price-currency {
    font-size: 40px;
    color: var(--color-primary);
    vertical-align: top;
}

.price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 96px;
    color: var(--color-white);
    line-height: 1;
}

.price-subtext {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.price-benefits {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px;
    margin-bottom: 24px;
}

.price-benefits p {
    color: var(--color-white);
    font-size: 14px;
    margin-bottom: 8px;
}

.countdown-box {
    background-color: rgba(224, 92, 31, 0.1);
    border: 2px solid var(--color-primary);
    padding: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.countdown-text {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.countdown-deadline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.guarantee-box {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 24px;
    margin-bottom: 32px;
}

.guarantee-box h4 {
    color: var(--color-primary);
    font-size: 16px;
    margin-bottom: 12px;
    font-family: 'Barlow', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.guarantee-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.price-ctas {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============================================
   SCORECARD SECTION
   ============================================ */

.scorecard-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-scorecard h2 {
    color: var(--color-white);
}

.scorecard-subtitle {
    color: var(--color-white);
    font-size: 20px;
    margin-bottom: 16px;
}

.scorecard-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 40px;
}

.scorecard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.stat-box {
    background-color: var(--color-white);
    padding: 32px 24px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.stat-label {
    font-weight: 700;
    font-size: 18px;
    color: var(--color-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scorecard-fine-print {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    max-width: 600px;
    margin: 32px auto 0;
}

/* ============================================
   PROOF SECTION
   ============================================ */

.section-proof .section-headline {
    color: var(--color-charcoal);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-mid-grey);
    margin-bottom: 24px;
}

.testimonial-quote::before {
    content: '"';
    font-size: 48px;
    color: var(--color-primary);
    line-height: 0;
    display: block;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 14px;
    color: var(--color-charcoal);
    line-height: 1.6;
}

.stats-bar {
    background-color: var(--color-white);
    padding: 48px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.stats-bar h3 {
    text-align: center;
    color: var(--color-charcoal);
    font-size: 24px;
    margin-bottom: 40px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.stat-icon-large {
    font-size: 56px;
    margin-bottom: 16px;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-mid-grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.section-faq .section-headline {
    color: var(--color-charcoal);
    text-align: center;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 2px solid var(--color-off-white);
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-charcoal);
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-toggle {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 18px;
    color: var(--color-mid-grey);
    line-height: 1.7;
}

/* ============================================
   URGENCY SECTION
   ============================================ */

.urgency-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-urgency h2 {
    color: var(--color-white);
    margin-bottom: 32px;
}

.urgency-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 24px;
}

.urgency-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

/* ============================================
   CALLBACK SECTION
   ============================================ */

.callback-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-callback h2 {
    color: var(--color-white);
}

.callback-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 20px;
    margin-bottom: 40px;
}

.callback-form-notice {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.callback-form-notice p {
    color: var(--color-charcoal);
    font-size: 18px;
    margin-bottom: 16px;
}

.callback-phone {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
    display: block;
    margin: 16px 0;
}

.callback-phone:hover {
    color: var(--color-primary-dark);
}

.callback-reassurance {
    color: var(--color-mid-grey) !important;
    font-size: 14px !important;
    font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #0F0F0F;
    color: var(--color-white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: var(--color-primary);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-primary);
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */

.mobile-sticky-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    padding: 16px 20px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: bottom 0.3s ease;
}

.mobile-sticky-bar.visible {
    bottom: 0;
}

.mobile-sticky-bar .btn {
    margin: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.fade-in-delay-4 {
    animation: fadeIn 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

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

/* Scroll animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }