/* =============================================================
   BOOKERY STUDY HUB & CO-WORKING SPACE
   Elegant, warm, powerful. Filipino-inspired design.
   ============================================================= */

:root {
    --cream: #F0F7EC;
    --warm-white: #F5FAF2;
    --sand: #D4E4CC;
    --gold: #6B9B4E;
    --gold-dark: #4A7A33;
    --brown: #2D5A27;
    --brown-light: #5A8B47;
    --brown-dark: #1A3D15;
    --terracotta: #3D8B37;
    --forest: #2D6B27;
    --charcoal: #1E3A1A;
    --text: #1A1A1A;
    --text-light: #5A6B5A;
    --white: #FFFFFF;
    --shadow: 0 4px 30px rgba(45, 90, 39, 0.08);
    --shadow-lg: 0 20px 60px rgba(45, 90, 39, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    font-weight: 600;
}

em {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    color: var(--terracotta);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =============================================================
   NAVIGATION
   ============================================================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(240, 247, 236, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(45, 90, 39, 0.06);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.booky-hero-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 8px 25px rgba(0,0,0,0.3));
}

.footer .logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown);
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.nav-cta {
    background: var(--brown-dark);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-weight: 500 !important;
}

.nav-cta:hover {
    background: var(--terracotta) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown-dark);
    transition: var(--transition);
}

.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
   ============================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/hero-bg.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 61, 21, 0.75) 0%, rgba(45, 90, 39, 0.65) 50%, rgba(107, 155, 78, 0.55) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 61, 21, 0.2) 0%, rgba(26, 61, 21, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.hero-tag {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-title em {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* Booky Mascot */
.hero-mascot {
    position: absolute;
    bottom: 6rem;
    right: 8%;
    z-index: 2;
    text-align: center;
    animation: bookyFloat 3s ease-in-out infinite;
}

.hero-mascot svg {
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
}

.mascot-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-style: italic;
}

@keyframes bookyFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.booky-logo {
    line-height: 0;
}

.booky-logo svg {
    vertical-align: middle;
}

@media (max-width: 768px) {
    .hero-mascot {
        bottom: 5rem;
        right: 5%;
    }
    .hero-mascot svg {
        width: 80px;
        height: 93px;
    }
}

@media (max-width: 480px) {
    .hero-mascot {
        display: none;
    }
}

/* =============================================================
   BUTTONS
   ============================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--brown-dark);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 92, 0.3);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
}

/* =============================================================
   STATS BAR
   ============================================================= */

.stats {
    background: var(--brown-dark);
    padding: 0;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: calc(var(--i, 0) * 0.1s);
}

.stat.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-num {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* =============================================================
   SECTIONS (shared)
   ============================================================= */

.section {
    padding: 7rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--brown-dark);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.text-center {
    text-align: center;
}

/* =============================================================
   ABOUT
   ============================================================= */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition);
}

.feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border-radius: var(--radius);
}

.feature strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--brown-dark);
}

.feature p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.about-img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(45, 90, 39, 0.9);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.visual-card {
    position: absolute;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.card-1 {
    top: 0;
    right: 0;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--brown) 0%, #4A9B3D 100%);
    display: flex;
    align-items: flex-end;
}

.card-2 {
    bottom: 0;
    left: 0;
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, var(--gold) 0%, #A8D88E 100%);
    display: flex;
    align-items: flex-end;
}

.card-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.card-1 .card-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 300;
}

.card-2 .card-content p {
    color: var(--brown-dark);
    font-size: 1rem;
    font-weight: 500;
}

/* =============================================================
   THE SPACE
   ============================================================= */

.space {
    background: var(--cream);
}

.space-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.space-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.space-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.space-card-visual {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent, var(--gold));
}

.space-card-img {
    width: 100%;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.space-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.space-card:hover .space-card-img img {
    transform: scale(1.05);
}

.space-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--brown-dark);
}

.space-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* =============================================================
   VA TRAINING
   ============================================================= */

.training {
    background: var(--white);
}

.training-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 5rem;
    align-items: center;
}

.training-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.training-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    width: 100%;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition);
}

.training-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.training-card.highlight {
    background: linear-gradient(135deg, #2D6B27 0%, #4A9B3D 100%);
    color: var(--white);
}

.training-stat {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.training-card.highlight .training-stat {
    color: #A8E6A0;
}

.training-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.training-card.highlight p {
    color: rgba(255, 255, 255, 0.8);
}

.training-arrow {
    font-size: 2rem;
    color: var(--gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.training-footnote {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--terracotta);
    margin-top: 0.5rem;
}

.training-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.training-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.training-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--forest);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.1rem;
}

.training-list strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 0.15rem;
}

.training-list p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* =============================================================
   MISSION
   ============================================================= */

.mission {
    background: linear-gradient(135deg, var(--brown-dark) 0%, #1E4A18 50%, var(--brown) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.mission-inner {
    position: relative;
    z-index: 1;
}

.mission .section-tag {
    color: var(--gold);
}

.mission-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.mission-title em {
    color: var(--gold);
}

.mission-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 700px;
    margin: 0 auto 1rem;
    line-height: 1.8;
    font-weight: 300;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.value.visible {
    opacity: 1;
    transform: translateY(0);
}

.value:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.value p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* =============================================================
   QUOTE
   ============================================================= */

.quote-section {
    padding: 5rem 0;
    background: var(--cream);
    text-align: center;
}

.quote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--brown);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* =============================================================
   CONTACT
   ============================================================= */

.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item span {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text);
    line-height: 1.5;
}

.contact-item small {
    color: var(--text-light);
}

.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--brown-dark);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--sand);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 92, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%235C3D2E'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* =============================================================
   FOOTER
   ============================================================= */

.footer {
    background: var(--brown-dark);
    padding: 3rem 0;
    text-align: center;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    width: 100%;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: white;
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (max-width: 1024px) {
    .space-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .training-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
    }

    .about-img-wrap img {
        height: 300px;
    }

    .training-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .mission-values {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 3rem auto 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .section {
        padding: 4rem 0;
    }

    .stats-inner {
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    .space-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .contact-form-wrap {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .about-img-wrap img {
        height: 220px;
    }
}

/* Form success message */
.form-success {
    text-align: center;
    padding: 2rem 1rem;
}

.form-success .success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.form-success p {
    font-size: 1.1rem;
    color: var(--brown);
    font-weight: 500;
}
