/* ========================================
   Jim Dawe Fitness - Custom Styles
   Main Color: #5AFE3D
    Dark Theme Default with Light Mode Toggle
   ======================================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Dark Theme (Default) */
:root {
    --primary: #5AFE3D;
    --primary-dark: #4bd932;
    --primary-muted: rgba(90, 254, 61, 0.15);
    --primary-on: #0a0a0a;
    
    /* Background colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1a1a1a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    
    /* Text colors */
    --text-primary: #fafafa;
    --text-secondary: #c0c0c0;
    --text-muted: #888888;
    --text-light: #666666;
    
    /* Border colors */
    --border-light: #2a2a2a;
    --border-medium: #3a3a3a;
    --border-dark: #4a4a4a;
    
    /* Header specific */
    --header-bg: rgba(10, 10, 10, 0.92);
    --header-border: rgba(255, 255, 255, 0.05);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.5);
    
    /* Misc */
    --overlay-bg: rgba(255, 255, 255, 0.02);
    --glow-primary: rgba(90, 254, 61, 0.2);

    --font-display: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme */
[data-theme="light"] {
    --primary: #2dd41b;
    --primary-dark: #25b816;
    --primary-muted: rgba(45, 212, 27, 0.12);
    --primary-on: #fff;
    
    /* Background colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f7f7f8;
    --bg-tertiary: #efefef;
    --bg-card: #ffffff;
    --bg-card-hover: #fafafa;
    
    /* Text colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6b6b6b;
    --text-light: #888888;
    
    /* Border colors */
    --border-light: #e5e5e5;
    --border-medium: #d0d0d0;
    --border-dark: #bbb;
    
    /* Header specific */
    --header-bg: rgba(255, 255, 255, 0.92);
    --header-border: rgba(0, 0, 0, 0.06);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
    
    /* Misc */
    --overlay-bg: rgba(0, 0, 0, 0.03);
    --glow-primary: rgba(45, 212, 27, 0.15);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color var(--transition), color var(--transition);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--header-border);
    transition: background-color var(--transition);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 10px 22px;
    background: var(--primary);
    color: var(--primary-on);
    border-radius: 6px;
    transition: all var(--transition);
}

.btn-header:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    margin-right: 16px;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-medium);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.theme-toggle .sun-icon {
    display: none;
}

.theme-toggle .moon-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--glow-primary) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-tag {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 28px;
    line-height: 1.1;
}

.hero-desc {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 540px;
    line-height: 1.75;
}

.hero-desc-secondary {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--primary);
    color: var(--primary-on);
    border-radius: 6px;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-primary);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    border-radius: 6px;
    transition: all var(--transition);
}

.btn-secondary:hover {
    border-color: var(--border-dark);
    background: var(--overlay-bg);
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: clamp(10px, 2vw, 24px);
}

.hero-image {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    border: 4px solid var(--bg-card);
}

.hero-shape {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
    position: relative;
    animation: morph 12s ease-in-out infinite;
}

.hero-shape::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 50%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%; }
    25% { border-radius: 55% 45% 50% 50% / 45% 55% 50% 50%; }
    50% { border-radius: 45% 55% 45% 55% / 50% 50% 55% 45%; }
    75% { border-radius: 50% 50% 55% 45% / 55% 45% 45% 55%; }
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 28px;
}

.stat-item {
    text-align: center;
    background: var(--bg-card);
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    min-width: 130px;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 60px; }
    50% { opacity: 1; height: 80px; }
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 20px;
}

.section-desc {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 560px;
}

/* ========================================
   DIFFERENTIATOR SECTION
   ======================================== */
.differentiator {
    padding: 100px 24px 120px;
    background: var(--bg-secondary);
    position: relative;
}

.differentiator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.diff-container {
    max-width: 1280px;
    margin: 0 auto;
}

.diff-header {
    text-align: center;
    margin-bottom: 64px;
}

.diff-header .section-desc {
    margin: 0 auto;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.diff-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.diff-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.diff-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-muted);
    border-radius: 10px;
    margin-bottom: 20px;
}

.diff-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.diff-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.diff-card p {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}

.diff-footer {
    font-family: 'Inter', -apple-system, sans-serif;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0;
}

/* ========================================
   ABOUT PREVIEW SECTION
   ======================================== */
.about-preview {
    padding: 120px 24px;
    position: relative;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 16px 4px 16px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-placeholder span {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--border-medium);
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 2px solid var(--primary);
    border-radius: 4px 16px 4px 16px;
    opacity: 0.3;
    z-index: -1;
}

.about-content .section-title {
    max-width: 500px;
}

.about-content p {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
}

.about-highlight {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 24px 0;
    line-height: 1.7;
}

.about-list {
    margin: 28px 0;
    padding-left: 0;
}

.about-list li {
    font-family: 'Inter', -apple-system, sans-serif;
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 2px;
    background: var(--primary);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--primary);
    transition: all var(--transition);
}

.btn-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* ========================================
   SERVICES PREVIEW SECTION
   ======================================== */
.services-preview {
    padding: 100px 24px 120px;
    background: var(--bg-secondary);
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    grid-template-rows: auto auto;
    gap: 24px;
    margin-bottom: 48px;
}

.service-card {
    background: var(--bg-card);
    padding: 36px 32px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.service-card p {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0;
}

.service-main {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.service-main h3 {
    font-size: 1.5rem;
}

.service-main p {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-top: auto;
}

.service-list li {
    font-family: 'Inter', -apple-system, sans-serif;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-muted);
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.services-cta {
    text-align: center;
}

/* ========================================
   WHY SECTION
   ======================================== */
.why-section {
    padding: 120px 24px;
}

.why-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 80px;
}

.why-content {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-item {
    display: flex;
    gap: 28px;
    padding: 32px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.why-item:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.why-number {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    flex-shrink: 0;
}

.why-text h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.why-text p {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ========================================
   CLIENT RESULTS SECTION
   ======================================== */
.client-results {
    padding: 100px 24px;
    background: var(--bg-secondary);
}

.client-results-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.client-results-content .section-title {
    margin-bottom: 16px;
}

.client-results-content .section-desc {
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 60%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.cta-subtitle {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 24px;
    margin-bottom: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 18px 48px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--primary);
    color: var(--primary-on);
    border-radius: 8px;
    transition: all var(--transition);
}

.btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--glow-primary);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 80px 24px 40px;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-light);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    font-size: 2rem;
    display: block;
    margin-bottom: 16px;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
    padding: 160px 24px 80px;
    background: var(--bg-secondary);
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.page-hero-content {
    max-width: 1280px;
    margin: 0 auto;
}

.page-hero h1 {
    max-width: 700px;
}

.page-hero-short {
    padding: 140px 24px 60px;
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */
.about-main {
    padding: 100px 24px;
}

.about-main-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.45fr 0.55fr;
    gap: 80px;
    align-items: start;
}

.about-img-large {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-main-content .lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.75;
}

.about-quote {
    margin: 40px 0;
    padding: 32px 0 32px 28px;
    border-left: 3px solid var(--primary);
}

.about-quote blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

/* What I Bring Section */
.what-i-bring {
    padding: 100px 24px 120px;
    background: var(--bg-secondary);
}

.wib-container {
    max-width: 1080px;
    margin: 0 auto;
}

.wib-header {
    margin-bottom: 56px;
}

.wib-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.wib-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wib-item {
    display: flex;
    gap: 28px;
    padding: 32px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.wib-item:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-md);
}

.wib-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-muted);
    border-radius: 10px;
    flex-shrink: 0;
}

.wib-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.wib-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.wib-content p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Philosophy Section */
.philosophy {
    padding: 120px 24px;
}

.philosophy-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.philosophy-content h2 {
    margin-bottom: 24px;
}

.philosophy-content p {
    font-size: 1.05rem;
}

.philosophy-content ul {
    margin-top: 24px;
}

.philosophy-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: var(--text-secondary);
}

.philosophy-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.philosophy-visual {
    display: flex;
    justify-content: center;
}

.philosophy-image {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */
.services-full {
    padding: 80px 24px 120px;
}

.services-full-container {
    max-width: 1280px;
    margin: 0 auto;
}

.service-full-item {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
}

.service-full-item:first-child {
    padding-top: 0;
}

.service-full-item:last-child {
    border-bottom: none;
}

.service-full-item.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

.service-full-item.reverse .service-full-content {
    order: 2;
}

.service-full-item.reverse .service-full-visual {
    order: 1;
}

.service-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    background: var(--primary-muted);
    color: var(--primary);
    border-radius: 4px;
    margin-bottom: 20px;
}

.service-full-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 20px;
}

.service-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.service-details,
.service-includes {
    margin-bottom: 28px;
}

.service-details h4,
.service-includes h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.service-details ul,
.service-includes ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-details ul li,
.service-includes ul li {
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
}

.service-details ul li::before,
.service-includes ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.service-full-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-visual-image {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.service-visual-shape {
    width: 250px;
    height: 250px;
    background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: 30% 70% 60% 40% / 50% 40% 60% 50%;
    position: relative;
}

.service-visual-shape::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid var(--primary);
    border-radius: inherit;
    opacity: 0.3;
}

.service-visual-shape.shape-alt {
    border-radius: 60% 40% 30% 70% / 40% 60% 40% 60%;
}

/* Process Section */
.process-section {
    padding: 100px 24px 120px;
    background: var(--bg-secondary);
}

.process-container {
    max-width: 1080px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 64px;
}

.process-header h2 {
    margin-bottom: 16px;
}

.process-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: var(--border-medium);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: 50%;
    margin-bottom: 24px;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */
.contact-section {
    padding: 80px 24px 120px;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-muted);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-text a,
.contact-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-text a:hover {
    color: var(--primary);
}

.consultation-note {
    padding: 28px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.consultation-note h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.consultation-note p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.consultation-note ul li {
    position: relative;
    padding-left: 18px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.consultation-note ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--bg-secondary);
    padding: 48px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group .optional {
    color: var(--text-light);
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: 8px;
    transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-on);
    background: var(--primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-success {
    display: none;
    position: absolute;
    inset: 0;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px;
}

.form-success.show {
    display: flex;
}

.success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-muted);
    border-radius: 50%;
    margin-bottom: 24px;
}

.success-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 80px 24px 120px;
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 48px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .header {
        background: var(--bg-primary);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid var(--border-light);
    }

    .header-inner {
        height: 60px;
        padding: 0 16px;
        gap: 8px;
        position: relative;
        justify-content: center;
    }

    .logo-img {
        height: 38px;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .header-controls {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        gap: 6px;
        padding: 4px;
        border-radius: 999px;
        background: var(--bg-secondary);
        border: 1px solid var(--border-light);
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
        margin-left: 0;
        background: transparent;
        border: none;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
        margin-left: 0;
        background: transparent;
        border: none;
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 32px;
    }
    
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container,
    .about-main-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image {
        max-width: 400px;
    }
    
    .about-img-large {
        position: relative;
        top: auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-main {
        grid-row: auto;
    }
    
    .why-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-content {
        position: relative;
        top: auto;
    }
    
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .philosophy-visual {
        order: -1;
    }
    
    .service-full-item,
    .service-full-item.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-full-item.reverse .service-full-content,
    .service-full-item.reverse .service-full-visual {
        order: unset;
    }
    
    .service-full-visual {
        display: flex;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: auto;
        background: var(--bg-primary);
        padding: 0 16px 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all var(--transition);
        z-index: 999;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border-light);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 8px 0;
        background: var(--bg-primary);
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 16px 12px;
        font-family: var(--font-display);
        font-size: 1.05rem;
        font-weight: 500;
        text-align: left;
        color: var(--text-primary);
        transition: all var(--transition);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary);
        background: var(--primary-muted);
    }

    .nav-link::after {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .theme-toggle {
        display: flex;
        margin-right: 8px;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 64px;
        justify-content: space-between;
        padding: 0 16px;
    }

    .logo {
        position: static;
        transform: none;
    }

    .header-controls {
        position: static;
        transform: none;
        margin-left: auto;
        gap: 10px;
        padding: 0;
        background: transparent;
        border: none;
    }

    .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);
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        justify-content: center;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px 28px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}
