/* ========================================
   PEAK PERFORMANCE FITNESS
   Premium, refined wellness aesthetic
   Enhanced with animations and visual depth
   ======================================== */

:root {
    --white: #ffffff;
    --off-white: #f8f7f4;
    --cream: #f2f0eb;
    --light-gray: #e8e6e1;
    --mid-gray: #9a9590;
    --dark-gray: #5c5955;
    --charcoal: #2d2a26;
    --black: #1a1816;
    --accent: #2EBDB3;
    --accent-soft: #e8f7f6;
    --accent-dark: #259992;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 42, 38, 0.08);
    --shadow-lg: 0 8px 40px rgba(45, 42, 38, 0.12);
    --shadow-xl: 0 20px 60px rgba(45, 42, 38, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--charcoal);
    line-height: 1.7;
    font-size: 17px;
    overflow-x: hidden;
}

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

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

.fade-in {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible,
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

h1 { 
    font-size: clamp(3rem, 6vw, 5rem); 
    letter-spacing: 0.02em;
}

h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

h3 { 
    font-size: 1.4rem; 
    margin-bottom: 0.75rem;
    font-weight: 500;
}

h4 { 
    font-size: 1rem; 
    margin-bottom: 0.5rem; 
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

p { 
    margin-bottom: 1rem; 
    color: var(--dark-gray);
}

a {
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent);
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--accent);
}

.section-tag::before { left: -20px; }
.section-tag::after { right: -20px; }

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

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

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

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

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

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

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

.btn-ghost:hover {
    background: var(--white);
    color: var(--charcoal);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1rem;
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
}

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

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--black);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--black);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.nav-cta {
    background: var(--accent);
    color: var(--white);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.nav-cta:hover {
    background: var(--accent-dark);
    color: var(--white);
}

/* ========================================
   HERO - FULL WIDTH
   ======================================== */

.hero-full {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 24, 22, 0.7) 0%,
        rgba(26, 24, 22, 0.5) 50%,
        rgba(26, 24, 22, 0.8) 100%
    );
    z-index: 2;
}

.hero-content-centered {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 1.5rem;
    padding: 8px 20px;
    border: 1px solid var(--accent);
    border-radius: 30px;
}

.hero-full h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.highlight {
    color: var(--accent);
}

.hero-sub {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.scroll-indicator span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.5; }
}

/* ========================================
   STATS BAR
   ======================================== */

.stats-bar {
    background: var(--charcoal);
    padding: 60px 0;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   DIFFERENCE SECTION
   ======================================== */

.difference {
    padding: 120px 0;
    background: var(--white);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.diff-card {
    background: var(--off-white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.diff-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.4s ease;
    border-radius: 3px;
}

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

.diff-card:hover::after {
    width: 60px;
}

.diff-icon {
    margin-bottom: 24px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-soft);
    border: 2px solid var(--accent);
    margin: 0 auto;
    position: relative;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
}

.diff-card h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.diff-card p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ========================================
   TRAINER SPOTLIGHT
   ======================================== */

.trainer-spotlight {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.spotlight-shape {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--accent);
    opacity: 0.05;
    border-radius: 50%;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.spotlight-image-wrapper {
    position: relative;
}

.spotlight-image {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.spotlight-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.spotlight-accent {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.spotlight-info {
    padding-right: 40px;
}

.spotlight-info .section-tag {
    padding: 0;
}

.spotlight-info .section-tag::before,
.spotlight-info .section-tag::after {
    display: none;
}

.spotlight-info h2 {
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.spotlight-info .team-title {
    color: var(--accent-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    display: block;
}

.spotlight-info p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.spotlight-info .btn {
    margin-top: 1.5rem;
}

/* ========================================
   WHO WE SERVE
   ======================================== */

.who-we-serve {
    padding: 120px 0;
    background: var(--white);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.who-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: var(--radius-md);
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.who-card:hover {
    border-left-color: var(--accent);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.who-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.who-card h3 {
    color: var(--black);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.who-card p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.results {
    padding: 120px 0;
    background: var(--cream);
}

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

.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}

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

.quote-mark {
    font-family: Georgia, serif;
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 25px;
    line-height: 1;
}

.testimonial p {
    font-size: 1rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.testimonial cite {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-style: normal;
}

.cite-name {
    color: var(--black);
    font-weight: 600;
}

.cite-stars {
    color: var(--accent);
    letter-spacing: 2px;
}

/* ========================================
   CTA SECTION - FULL WIDTH
   ======================================== */

.cta-section-full {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 24, 22, 0.9) 0%,
        rgba(46, 189, 179, 0.8) 100%
    );
    z-index: 2;
}

.cta-section-full .container {
    position: relative;
    z-index: 3;
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Old CTA section for other pages */
.cta-section {
    padding: 120px 0;
    text-align: center;
    background: var(--accent-soft);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--dark-gray);
    max-width: 550px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

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

.footer {
    background: var(--charcoal);
    padding: 80px 0 40px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-info a {
    color: var(--accent);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   PAGE HERO (for inner pages)
   ======================================== */

.page-hero {
    min-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 24, 22, 0.7) 0%,
        rgba(26, 24, 22, 0.6) 100%
    );
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    padding: 120px 24px 80px;
}

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

.page-header {
    padding: 140px 0 80px;
    text-align: center;
    background: var(--white);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--dark-gray);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto;
}

/* ========================================
   PHOTO PLACEHOLDERS
   ======================================== */

.photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: var(--cream);
    border: 2px dashed var(--light-gray);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--mid-gray);
    text-align: center;
    padding: 20px;
}

.photo-placeholder span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.photo-placeholder small {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========================================
   TEAM SECTION (About page)
   ======================================== */

.team {
    padding: 80px 0;
    background: var(--off-white);
}

.team-member {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--light-gray);
}

.team-member:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.team-member.team-featured {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-bottom: none;
    margin-bottom: 60px;
}

.team-photo {
    height: 420px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

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

.team-photo .photo-placeholder {
    height: 100%;
    min-height: 420px;
}

.team-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.team-title {
    color: var(--accent-dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    display: block;
}

.team-info p {
    color: var(--dark-gray);
}

.bio-placeholder {
    color: var(--mid-gray);
    font-style: italic;
}

.credentials {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.credentials h4 {
    margin-bottom: 0.75rem;
}

.credentials ul {
    list-style: none;
}

.credentials li {
    color: var(--dark-gray);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.credentials li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.team-card .team-photo {
    height: 280px;
    overflow: hidden;
}

.team-card .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.05);
}

.team-card .photo-placeholder {
    height: 100%;
    min-height: 280px;
    border-radius: 0;
}

.team-card-info {
    padding: 24px;
}

.team-card-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
}

.team-card-info .team-title {
    margin-bottom: 0.75rem;
}

.team-card-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Facility Features */
.facility-features {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.facility-features li {
    color: var(--dark-gray);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.facility-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* Map Wrapper */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   STORY SECTION (About page)
   ======================================== */

.story {
    padding: 100px 0;
    background: var(--white);
}

.story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-image {
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

/* ========================================
   SERVICES PAGE
   ======================================== */

.services-grid {
    padding: 80px 0;
    background: var(--off-white);
}

.service-category {
    margin-bottom: 80px;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category h2 {
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    color: var(--dark-gray);
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.specialty-dropdown {
    background: var(--accent-soft);
    padding: 20px;
    margin: 1.5rem 0;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
}

.specialty-dropdown h4 {
    margin-bottom: 0.75rem;
}

.specialty-dropdown ul {
    margin-bottom: 0;
}

.specialty-note {
    color: var(--dark-gray);
    font-style: italic;
    margin-bottom: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-grid {
    padding: 80px 0;
    background: var(--off-white);
}

.contact-grid .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h4 {
    margin-bottom: 0.5rem;
}

.contact-detail p,
.contact-detail a {
    color: var(--dark-gray);
    font-size: 1.05rem;
}

.contact-detail a:hover {
    color: var(--accent);
}

.hours-table {
    margin-top: 2rem;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.hours-table h4 {
    margin-bottom: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: var(--charcoal);
    font-weight: 500;
}

.hours-row span:last-child {
    color: var(--dark-gray);
}

.contact-form-section {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-section h2 {
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    color: var(--charcoal);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

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

.form-group select {
    cursor: pointer;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
    background: var(--off-white);
}

.map-section .container img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.nav-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .difference-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .spotlight-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .spotlight-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .spotlight-info {
        padding-right: 0;
        text-align: center;
    }
    
    .spotlight-info .section-tag {
        display: inline-block;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-member {
        grid-template-columns: 1fr;
    }
    
    .team-member.team-featured {
        padding: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story .container {
        grid-template-columns: 1fr;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-grid .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 10px;
    }
    
    .nav-toggle span {
        width: 24px;
        height: 2px;
        background: var(--charcoal);
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .mobile-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 30px 24px;
        border-bottom: 1px solid var(--light-gray);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .mobile-menu a {
        display: block;
        font-family: var(--font-body);
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--dark-gray);
        padding: 15px 0;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .mobile-menu a:last-child {
        border-bottom: none;
        color: var(--accent);
        margin-top: 15px;
        font-weight: 600;
    }
    
    .mobile-menu a:hover,
    .mobile-menu a.active {
        color: var(--black);
    }
    
    .hero-full {
        min-height: 100vh;
    }
    
    .hero-content-centered {
        padding: 0 20px;
    }
    
    .hero-tag {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .stats-bar .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 14px 24px;
    }
    
    .btn-large {
        padding: 16px 32px;
    }
    
    .difference,
    .who-we-serve,
    .trainer-spotlight,
    .results,
    .cta-section,
    .cta-section-full,
    .team,
    .story,
    .services-grid {
        padding: 80px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .page-hero {
        min-height: 40vh;
    }
    
    .page-hero-content {
        padding: 100px 20px 60px;
    }
    
    .diff-card,
    .testimonial,
    .service-card,
    .who-card {
        padding: 28px;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .contact-form-section {
        padding: 28px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .spotlight-accent {
        display: none;
    }
}

@media (max-width: 480px) {
    .stats-bar .container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .section-tag::before,
    .section-tag::after {
        display: none;
    }
}
