/* ============================================
   ADOJO - Main Stylesheet
   Design System: Luxury, Refined, Professional
   ============================================ */

/* CSS Variables - Color Palette */
:root {
    /* Primary Colors */
    --navy: #1B2838;
    --navy-light: #2D3E50;
    --navy-dark: #0F1922;
    
    /* Gold/Tan Accents */
    --gold: #B8956B;
    --gold-light: #D4B896;
    --gold-dark: #8B6914;
    
    /* Neutral Colors */
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --white: #FFFFFF;
    
    /* Text Colors */
    --text-light: #FAF8F5;
    --text-dark: #1B2838;
    --text-muted: #6B7280;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 7rem 5rem 5rem;
    --container-max: 1300px;
    --card-gap: 2rem;
    
    /* Transitions */
    --transition-smooth: 0.3s ease;
    
    /* Shadows */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    font-size: 1rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-smooth);
}

/* Section Label */
.section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Backgrounds */
.section {
    min-height: 100vh;
    padding: var(--section-padding);
    display: flex;
    align-items: center;
}

.slide-navy {
    background-color: var(--navy);
    color: var(--text-light);
}

.slide-navy .section-label {
    color: var(--gold-light);
}

.slide-cream {
    background-color: var(--cream);
    color: var(--text-dark);
}

/* Section Titles */
.section-title {
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

.slide-navy .section-subtitle {
    color: rgba(250, 248, 245, 0.7);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(27, 40, 56, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all var(--transition-smooth);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.05em;
    transition: color var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-login {
    color: var(--gold) !important;
}

.nav-btn {
    background-color: var(--gold);
    color: var(--navy) !important;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem !important;
    transition: all var(--transition-smooth);
}

.nav-btn:hover {
    background-color: var(--gold-light);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: all var(--transition-smooth);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--navy);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
}

.mobile-menu a {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.mobile-menu.active {
    display: flex;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    padding: 8rem 5rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 149, 107, 0.3);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.6);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 500px;
}

.hero-dojo-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: var(--navy-light);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 3px solid var(--gold);
    box-shadow: var(--shadow-card-hover);
    animation: float 6s ease-in-out infinite;
}

.floating-card-icon {
    font-size: 1.5rem;
}

.floating-card span {
    font-weight: 500;
    font-size: 0.9rem;
}

.card-1 { top: 10%; left: 10%; animation-delay: 0s; }
.card-2 { top: 30%; right: 5%; animation-delay: 1.5s; }
.card-3 { bottom: 30%; left: 5%; animation-delay: 3s; }
.card-4 { bottom: 10%; right: 15%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(250, 248, 245, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(250, 248, 245, 0.3);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.slide-cream .btn-secondary {
    color: var(--text-dark);
    border-color: rgba(27, 40, 56, 0.3);
}

.slide-cream .btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 0.9rem;
}

/* ============================================
   Concept Section
   ============================================ */
.concept-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.concept-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.concept-text em {
    font-style: italic;
    color: var(--gold-dark);
}

.concept-text strong {
    font-weight: 600;
    color: var(--navy);
}

.concept-card {
    background: var(--white);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-card);
    padding: 2.5rem;
}

.concept-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.concept-icon {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
}

.concept-kanji-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.concept-card-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================
   Steps/How It Works
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: var(--navy-light);
    padding: 2.5rem 2rem;
    border-left: 4px solid var(--gold);
    transition: all var(--transition-smooth);
}

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

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.step-description {
    font-size: 0.95rem;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.7;
}

/* ============================================
   Dojo Cards Grid
   ============================================ */
.dojos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap);
    margin-top: 2rem;
}

.dojo-card {
    background: var(--white);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.dojo-card-image {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dojo-card-icon {
    font-size: 3.5rem;
}

.dojo-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dojo-card-category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.dojo-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.dojo-card-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.dojo-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(27, 40, 56, 0.1);
}

.dojo-master {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
}

.dojo-resources {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Dojo CTA Card */
.dojo-card-cta {
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dojo-card-cta:hover {
    background: var(--navy-light);
}

.dojo-cta-content {
    padding: 3rem 2rem;
}

.dojo-cta-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.dojo-cta-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.dojo-cta-description {
    font-size: 0.95rem;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.6;
}

/* ============================================
   Value Props
   ============================================ */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--navy-light);
    padding: 2.5rem;
    border-left: 4px solid var(--gold);
    transition: all var(--transition-smooth);
}

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

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

.value-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.value-description {
    font-size: 0.95rem;
    color: rgba(250, 248, 245, 0.7);
    line-height: 1.7;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-card);
    position: relative;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   Expert CTA Section
   ============================================ */
.expert-cta-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.expert-cta-text {
    font-size: 1.125rem;
    color: rgba(250, 248, 245, 0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.expert-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.expert-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: rgba(250, 248, 245, 0.9);
}

.expert-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--gold);
}

.master-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.master-kanji {
    font-size: 6rem;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.master-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
    text-align: center;
}

.final-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.final-cta-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(250, 248, 245, 0.6);
    line-height: 1.6;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 0.75rem;
    transition: color var(--transition-smooth);
}

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

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.5);
}

/* ============================================
   Page Header (for interior pages)
   ============================================ */
.page-header {
    background: var(--navy);
    color: var(--text-light);
    padding: 10rem 2rem 5rem;
    text-align: center;
}

.page-header .section-label {
    color: var(--gold-light);
}

.page-header-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-header-subtitle {
    font-size: 1.125rem;
    color: rgba(250, 248, 245, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.slide-navy .form-label {
    color: var(--text-light);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid rgba(27, 40, 56, 0.2);
    background: var(--white);
    color: var(--text-dark);
    transition: all var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 149, 107, 0.1);
}

.slide-navy .form-input,
.slide-navy .form-select,
.slide-navy .form-textarea {
    background: var(--navy-light);
    border-color: rgba(250, 248, 245, 0.2);
    color: var(--text-light);
}

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

/* ============================================
   Cards (Generic)
   ============================================ */
.card {
    background: var(--white);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-card);
    padding: 2rem;
    transition: all var(--transition-smooth);
}

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

.slide-navy .card {
    background: var(--navy-light);
}

/* ============================================
   Pricing Cards
   ============================================ */
.pricing-card {
    background: var(--white);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-card);
    padding: 3rem;
    text-align: center;
    transition: all var(--transition-smooth);
}

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

.pricing-card.featured {
    border: 2px solid var(--gold);
    border-left-width: 4px;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
}

.pricing-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--navy);
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(27, 40, 56, 0.1);
    padding: 1.5rem 0;
}

.slide-navy .faq-item {
    border-color: rgba(250, 248, 245, 0.1);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-smooth);
}

.slide-navy .faq-question {
    color: var(--text-light);
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform var(--transition-smooth);
}

.faq-item.active .faq-icon {
    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-top: 1rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.slide-navy .faq-answer p {
    color: rgba(250, 248, 245, 0.7);
}

/* ============================================
   Two Column Layout
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-col-reverse {
    direction: rtl;
}

.two-col-reverse > * {
    direction: ltr;
}

/* ============================================
   Browse Dojos Page - Filters
   ============================================ */
.filter-bar {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid rgba(27, 40, 56, 0.2);
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

/* ============================================
   Dojo Detail Page
   ============================================ */
.dojo-hero {
    background: var(--navy);
    padding: 10rem 2rem 5rem;
}

.dojo-hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.dojo-hero-icon {
    width: 200px;
    height: 200px;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    border-left: 4px solid var(--gold);
    margin: 0 auto;
}

.dojo-hero-info .section-label {
    color: var(--gold-light);
}

.dojo-hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--text-light);
    margin-bottom: 1rem;
}

.dojo-hero-description {
    font-size: 1.125rem;
    color: rgba(250, 248, 245, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.dojo-hero-meta {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(250, 248, 245, 0.1);
}

.dojo-meta-item {
    display: flex;
    flex-direction: column;
}

.dojo-meta-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.dojo-meta-value {
    font-size: 1rem;
    color: var(--text-light);
}

/* Dojo Content Sections */
.dojo-section {
    padding: 5rem 2rem;
}

.dojo-section .container {
    max-width: var(--container-max);
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-card {
    background: var(--white);
    padding: 1.5rem;
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
}

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

.slide-navy .resource-card {
    background: var(--navy-light);
}

.resource-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.resource-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.slide-navy .resource-title {
    color: var(--text-light);
}

.resource-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.slide-navy .resource-description {
    color: rgba(250, 248, 245, 0.6);
}

/* Master Profile */
.master-profile {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.master-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    flex-shrink: 0;
}

.master-info h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.master-title {
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.master-bio {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ============================================
   Responsive Design
   ============================================ */

/* Hero Minimal (Centered Clean Design) */
.hero-minimal {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
}

.hero-minimal .hero-content {
    max-width: 750px;
}

.hero-minimal .hero-cta {
    justify-content: center;
}

.hero-minimal .hero-stats {
    justify-content: center;
}

@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .section {
        padding: 5rem 2rem;
    }
    
    .hero {
        padding: 8rem 2rem 5rem;
    }
    
    .concept-grid,
    .expert-cta-grid,
    .two-col {
        grid-template-columns: 1fr;
    }
    
    .dojos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .dojo-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .dojo-hero-meta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .dojos-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        margin-bottom: 2rem;
    }
    
    .master-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 4rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}
