/* ===================================
   FUNCTIONAL GOLF ACADEMY
   Custom Stylesheet
   =================================== */

/* CSS Variables */
:root {
    /* Colors - The Craftsman Palette */
    --color-primary: #1F5C2E;        /* Masters Green - CTAs and action items */
    --color-primary-light: #2A7039;
    --color-primary-dark: #174620;
    
    --color-secondary: #C08B3A;       /* Bright Copper - accents, labels, pills */
    --color-secondary-light: #D4A35C;
    
    --color-accent: #1A2E28;          /* Deep Forest - dark accents, used sparingly */
    --color-accent-light: #2A4138;
    
    --color-text: #2A2A2A;
    --color-text-light: #5A5A5A;
    --color-bg: #F5F1E8;              /* Warm Cream - primary background */
    --color-bg-gray: #EDE9DF;
    
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    
    /* Typography */
    --font-display: 'Cormorant', serif;
    --font-body: 'Work Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(26, 46, 40, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 46, 40, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 46, 40, 0.16);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

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

p {
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem var(--spacing-md);
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-fast);
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

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

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

.btn-secondary:hover {
    background: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

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

.btn-small {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

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

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--color-bg) 0%, 
        rgba(26, 46, 40, 0.03) 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, 
        rgba(193, 118, 50, 0.08) 0%, 
        transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(26, 46, 40, 0.08);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--color-secondary);
    position: relative;
    display: inline-block;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out 0.2s backwards;
}

.image-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--color-bg-gray);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.6;
}

/* ===================================
   STATS SECTION
   =================================== */

.stats {
    padding: var(--spacing-lg) 0;
    background: var(--color-primary);
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeInUp 0.6s ease-out backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
}

/* ===================================
   SECTION HEADERS
   =================================== */

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(26, 46, 40, 0.08);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 700px;
}

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

.difference {
    padding: var(--spacing-xl) 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.difference-card {
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 46, 40, 0.08);
    border-radius: 12px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===================================
   JOURNEY SECTION
   =================================== */

.journey {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-gray);
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.journey-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.journey-text .btn {
    margin-top: 1.5rem;
}

.handicap-progression {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.progress-year {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.progress-bar {
    position: relative;
    height: 48px;
    background: var(--color-bg-gray);
    border-radius: 8px;
    overflow: hidden;
}

.progress-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--progress, 0%);
    background: linear-gradient(90deg, 
        var(--color-primary) 0%, 
        var(--color-secondary) 100%);
    transition: width 1s ease-out 0.5s;
}

.progress-label {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    z-index: 1;
}

/* ===================================
   FEATURED COURSES
   =================================== */

.featured-courses {
    padding: var(--spacing-xl) 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.course-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--color-white);
    border: 2px solid var(--color-bg-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.course-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.course-card.featured {
    border-color: var(--color-secondary);
    background: linear-gradient(135deg, 
        var(--color-white) 0%, 
        rgba(193, 118, 50, 0.03) 100%);
}

.course-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    padding: 0.375rem 1rem;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
}

.course-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.course-description {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.course-features {
    margin-bottom: 2rem;
    padding-left: 0;
}

.course-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

/* ===================================
   PHILOSOPHY SECTION
   =================================== */

.philosophy {
    padding: var(--spacing-xl) 0;
    background: var(--color-primary-dark);
    color: var(--color-white);
}

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

.philosophy-quote {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.95;
}

.philosophy-text {
    text-align: left;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.philosophy-text h3 {
    color: var(--color-secondary-light);
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ===================================
   CTA SECTION
   =================================== */

.cta {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-gray);
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.footer {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 1rem;
}

.footer-logo .logo-main {
    color: var(--color-white);
    font-size: 1.5rem;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.7);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    max-width: 280px;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-secondary-light);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-secondary-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a:hover {
    color: var(--color-white);
}

/* ===================================
   PAGE HEADER (for internal pages)
   =================================== */

.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, 
        var(--color-bg) 0%, 
        rgba(26, 46, 40, 0.03) 100%);
    text-align: center;
}

.page-title {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

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

.story-section {
    padding: var(--spacing-xl) 0;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-chapter {
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.chapter-number {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(26, 46, 40, 0.08);
    line-height: 1;
    margin-bottom: 1rem;
}

.chapter-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.chapter-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.chapter-text p {
    margin-bottom: 1.5rem;
}

.chapter-text ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.chapter-text li {
    margin-bottom: 0.75rem;
    position: relative;
}

.chapter-text li::before {
    content: '→';
    position: absolute;
    left: -2rem;
    color: var(--color-secondary);
    font-weight: 700;
}

/* ===================================
   VALUES SECTION
   =================================== */

.values-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-gray);
}

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

.value-card {
    padding: 2rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

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

.value-card p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===================================
   COURSE DETAIL SECTIONS
   =================================== */

.course-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, 
        rgba(26, 46, 40, 0.05) 0%, 
        var(--color-bg) 100%);
}

.course-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.course-price {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 2rem;
}

.course-details {
    padding: var(--spacing-xl) 0;
}

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

.detail-content h2 {
    margin: 3rem 0 1.5rem;
    color: var(--color-primary);
}

.detail-content h3 {
    margin: 2rem 0 1rem;
    color: var(--color-primary-light);
}

.detail-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.detail-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.detail-sidebar {
    position: sticky;
    top: 100px;
    background: var(--color-bg-gray);
    padding: 2.5rem 2rem;
    border-radius: 12px;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section:last-child {
    margin-bottom: 0;
}

.sidebar-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
}

.sidebar-list li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: 700;
}

/* ===================================
   PRICING PAGE
   =================================== */

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

.pricing-card {
    background: var(--color-white);
    border: 2px solid var(--color-bg-gray);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition);
}

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

.pricing-card.featured {
    border-color: var(--color-secondary);
    background: linear-gradient(135deg, 
        var(--color-white) 0%, 
        rgba(193, 118, 50, 0.03) 100%);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 4px;
}

.pricing-name {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-bg-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

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

.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-bg-gray);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

.form-submit {
    width: 100%;
}

.contact-info {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--color-bg-gray);
    border-radius: 12px;
    text-align: center;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.contact-info p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--color-secondary);
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

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

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

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

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

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .journey-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .difference-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
