/* ========================================
   FASTPITCH ACADEMY - WHITE & GOLD CHRISTIAN THEME
   ======================================== */

:root {
    --gold: #C9A227;
    --gold-light: #E8C547;
    --gold-dark: #A68618;
    --white: #FFFFFF;
    --cream: #FDFCF7;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-300: #D4D4D4;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-800: #262626;
    --gray-900: #171717;
    --black: #000000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--gray-800);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.3); }
    50% { box-shadow: 0 0 40px rgba(201, 162, 39, 0.6); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
}

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

.section-tag::before { right: 100%; margin-right: 15px; }
.section-tag::after { left: 100%; margin-left: 15px; }

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

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

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--gray-900);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--gray-900);
    color: var(--white);
    border-color: var(--gray-900);
}

.btn-dark:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1.25rem 3.5rem;
    font-size: 1rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.header.scrolled .logo-main {
    color: var(--gray-900);
}

/* Only change nav-link color on desktop when scrolled */
@media (min-width: 769px) {
    .header.scrolled .nav-link {
        color: var(--gray-900);
    }
}

.header.scrolled .nav-toggle span {
    background: var(--gray-900);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 55px;
    height: 55px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(10deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--white);
    line-height: 1;
    transition: color 0.3s ease;
}

.logo-sub {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger to X animation */
.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 6rem 2rem 4rem;
    max-width: 1000px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-tag svg {
    width: 24px;
    height: 24px;
    animation: pulse 2s ease infinite;
}

.hero-title {
    font-size: clamp(4rem, 14vw, 10rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-title span {
    display: block;
    color: var(--gold);
    text-shadow: 0 0 60px rgba(201, 162, 39, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-verse {
    font-style: italic;
    font-size: 1rem;
    color: var(--gold-light);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
    animation: float 3s ease infinite;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

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

.stats {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-item {
    color: var(--white);
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* ========================================
   ABOUT PREVIEW
   ======================================== */

.about-preview {
    padding: 8rem 0;
    background: var(--white);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-preview-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-preview-image {
    position: relative;
}

.about-preview-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-preview-image:hover img {
    transform: scale(1.02);
}

.image-accent {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--gold);
    z-index: -1;
    transition: all 0.3s ease;
}

.about-preview-image:hover .image-accent {
    top: -30px;
    right: -30px;
}

/* ========================================
   MISSION BANNER
   ======================================== */

.mission-banner {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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.05'%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");
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission-banner h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-verse {
    font-size: 1.5rem;
    color: var(--white);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-verse cite {
    display: block;
    font-style: normal;
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 700;
}

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

.values {
    padding: 8rem 0;
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: var(--white);
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    animation: glow 2s ease infinite;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.value-card h3 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

/* ========================================
   ATHLETES SECTION
   ======================================== */

.athletes {
    padding: 8rem 0;
    background: var(--white);
}

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

.athlete-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.athlete-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.athlete-card:hover img {
    transform: scale(1.1);
}

.athlete-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.athlete-card:hover .athlete-overlay {
    opacity: 1;
}

.athlete-overlay h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.athlete-overlay p {
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   GALLERY
   ======================================== */

.gallery-preview {
    padding: 8rem 0;
    background: var(--gray-900);
}

.gallery-preview .section-title {
    color: var(--white);
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 220px);
    gap: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: grayscale(20%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(201, 162, 39, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-preview-cta {
    text-align: center;
    margin-top: 4rem;
}

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

.cta {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7));
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

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

.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 5rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-brand p {
    color: var(--gray-300);
    max-width: 300px;
    line-height: 1.8;
}

.footer h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

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

.footer-verse {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}

.footer-verse p {
    font-style: italic;
    color: var(--gray-300);
    font-size: 1rem;
}

.footer-verse cite {
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ========================================
   PAGE HEADERS
   ======================================== */

.page-header {
    padding: 12rem 0 5rem;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 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='%23C9A227' 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");
}

.page-header h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    margin-bottom: 1rem;
    position: relative;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ========================================
   GALLERY PAGE
   ======================================== */

.gallery-content {
    padding: 6rem 0;
    background: var(--cream);
}

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

.gallery-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(201, 162, 39, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover::after {
    opacity: 1;
}

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

.contact-content {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 3rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.contact-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
    color: var(--gray-600);
    font-size: 1rem;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--cream);
    padding: 3.5rem;
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

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

/* ========================================
   SCHEDULE PAGE
   ======================================== */

.schedule-content {
    padding: 6rem 0;
}

.schedule-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.schedule-date {
    text-align: center;
    min-width: 80px;
}

.schedule-date .day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
}

.schedule-date .month {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-600);
}

.schedule-info h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.schedule-info p {
    color: var(--gray-600);
}

.schedule-time {
    text-align: right;
}

.schedule-time .time {
    font-weight: 700;
    color: var(--gray-900);
}

.schedule-time .location {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

/* Large screens */
@media (max-width: 1280px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .about-preview-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-preview-image {
        order: -1;
    }

    .image-accent {
        display: none;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem;
    }

    .athletes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 6rem);
    }

    .cta {
        padding: 6rem 0;
    }

    .values,
    .athletes,
    .gallery-preview {
        padding: 5rem 0;
    }
}

/* Mobile landscape / small tablets */
@media (max-width: 768px) {
    /* Navigation */
    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--gray-900);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        display: block;
    }

    .nav-menu .nav-link,
    .header.scrolled .nav-menu .nav-link {
        display: block;
        color: #ffffff !important;
        font-size: 1.25rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: left;
        background: transparent;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-link.active,
    .nav-menu .nav-link:hover,
    .header.scrolled .nav-menu .nav-link.active,
    .header.scrolled .nav-menu .nav-link:hover {
        color: #C9A227 !important;
    }

    /* Mobile menu close button area */
    .nav-menu::before {
        content: 'Menu';
        position: absolute;
        top: 1.5rem;
        left: 2rem;
        font-family: 'Bebas Neue', sans-serif;
        font-size: 1.5rem;
        letter-spacing: 0.1em;
        color: var(--gold);
    }

    /* Header */
    .header {
        padding: 0.75rem 0;
    }

    .logo-text .logo-main {
        font-size: 1rem;
    }

    .logo-text .logo-sub {
        font-size: 0.5rem;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .logo {
        gap: 0.75rem;
    }

    /* Preloader mobile */
    .preloader-logo {
        width: 60px;
        height: 60px;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-verse {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .hero-tag {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-scroll {
        display: none;
    }

    /* Stats */
    .stats {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Values */
    .values {
        padding: 4rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .value-icon svg {
        width: 28px;
        height: 28px;
    }

    .value-card h3 {
        font-size: 1.75rem;
    }

    /* Gallery */
    .gallery-preview {
        padding: 4rem 0;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 0.75rem;
    }

    .gallery-item.large {
        grid-row: auto;
        grid-column: span 2;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .gallery-card {
        aspect-ratio: 1;
    }

    /* Athletes */
    .athletes {
        padding: 4rem 0;
    }

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

    .athlete-card {
        aspect-ratio: 3/4;
    }

    .athlete-overlay {
        padding: 1rem;
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 70%);
    }

    .athlete-overlay h4 {
        font-size: 1.1rem;
    }

    .athlete-overlay p {
        font-size: 0.7rem;
    }

    /* CTA */
    .cta {
        padding: 5rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Mission Banner */
    .mission-banner {
        padding: 3rem 0;
    }

    .mission-banner h2 {
        font-size: 1.75rem;
    }

    .mission-verse {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    /* Page Header */
    .page-header {
        padding: 8rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Contact */
    .contact-content {
        padding: 3rem 0;
    }

    .contact-grid {
        gap: 2rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* Schedule */
    .schedule-content {
        padding: 3rem 0;
    }

    .schedule-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .schedule-date .day {
        font-size: 2.5rem;
    }

    .schedule-info h3 {
        font-size: 1.25rem;
    }

    .schedule-time {
        text-align: center;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links h4,
    .footer-contact h4 {
        margin-bottom: 0.75rem;
    }

    .footer-links ul {
        gap: 0.5rem;
    }

    .footer-verse {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-verse p {
        font-size: 0.9rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Small mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Header */
    .header {
        padding: 0.5rem 0;
    }

    .logo-text .logo-main {
        font-size: 0.9rem;
    }

    .logo-text .logo-sub {
        font-size: 0.45rem;
    }

    .logo-img {
        width: 30px;
        height: 30px;
    }

    .logo {
        gap: 0.5rem;
    }

    /* Mobile menu adjustments */
    .nav-menu {
        max-width: 100%;
        padding: 4.5rem 1.5rem 2rem;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.875rem 0;
    }

    .nav-menu::before {
        font-size: 1.25rem;
        top: 1.25rem;
        left: 1.5rem;
    }

    /* Hero */
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-title span {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-tag {
        font-size: 0.65rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Buttons */
    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Section tag */
    .section-tag::before,
    .section-tag::after {
        display: none;
    }

    /* Preloader */
    .preloader-logo {
        width: 50px;
        height: 50px;
    }

    .preloader-spinner {
        width: 30px;
        height: 30px;
    }

    .section-tag {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    /* Values */
    .value-card {
        padding: 1.5rem;
    }

    .value-card h3 {
        font-size: 1.5rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }

    /* Gallery */
    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Athletes */
    .athletes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .athlete-card {
        aspect-ratio: 4/5;
    }

    /* CTA */
    .cta-content h2 {
        font-size: 1.75rem;
    }

    /* Mission */
    .mission-banner h2 {
        font-size: 1.5rem;
    }

    .mission-verse {
        font-size: 1rem;
    }

    /* Page Header */
    .page-header {
        padding: 7rem 0 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    /* Forms */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Schedule */
    .schedule-card {
        padding: 1.25rem;
    }

    .schedule-date .day {
        font-size: 2rem;
    }

    .schedule-info h3 {
        font-size: 1.1rem;
    }

    /* Footer */
    .footer-logo img {
        width: 36px;
        height: 36px;
    }

    .footer-logo .logo-main {
        font-size: 1rem;
    }

    /* Testimonials mobile */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonial-card {
        padding: 0 1rem;
    }

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

    .testimonial-content .quote-icon {
        width: 30px;
        height: 30px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .testimonial-nav {
        margin-top: 1.5rem;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 36px;
        height: 36px;
    }

    /* Countdown mobile */
    .countdown-section {
        padding: 2.5rem 0;
    }

    .countdown-timer {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-label {
        font-size: 0.6rem;
    }

    .countdown-event {
        font-size: 1.25rem;
    }

    /* Back to top mobile */
    #back-to-top {
        right: 1rem;
        bottom: 5rem;
        width: 44px;
        height: 44px;
    }

    /* Sticky CTA visible on mobile */
    #sticky-cta {
        display: block;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .athlete-overlay {
        opacity: 1;
    }

    .gallery-item::after {
        opacity: 0.5;
    }

    .value-card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }
}

/* Safe area for notched phones */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .nav-menu {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }

    .footer {
        padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }
}

/* Landscape phone optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-verse {
        display: none;
    }

    .page-header {
        padding: 5rem 0 2rem;
    }
}

/* ========================================
   ENHANCED FEATURES - POLISH
   ======================================== */

/* ==========================================
   PRELOADER
   ========================================== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    animation: preloaderPulse 1.5s ease infinite;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    animation: preloaderFade 1.5s ease infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes preloaderFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

body:not(.loaded) {
    overflow: hidden;
}

/* ==========================================
   PAGE TRANSITIONS
   ========================================== */
#page-transition {
    position: fixed;
    inset: 0;
    background: var(--gold);
    z-index: 9999;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
    pointer-events: none;
}

#page-transition.active {
    transform: scaleY(1);
    transform-origin: top;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 100;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.5);
}

#back-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 5rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}

/* ==========================================
   STICKY CTA (Mobile)
   ========================================== */
#sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

#sticky-cta.visible {
    transform: translateY(0);
}

#sticky-cta.hidden {
    transform: translateY(100%);
}

#sticky-cta .btn {
    width: 100%;
    margin: 0;
}

@media (max-width: 768px) {
    #sticky-cta {
        display: block;
    }
}

/* ==========================================
   COUNTDOWN TIMER
   ========================================== */
.countdown-section {
    background: var(--gray-900);
    padding: 4rem 0;
    text-align: center;
}

.countdown-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.countdown-event {
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255,255,255,0.05);
    padding: 1.5rem 2rem;
    min-width: 100px;
    border: 1px solid rgba(255,255,255,0.1);
}

.countdown-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

@media (max-width: 480px) {
    .countdown-item {
        padding: 1rem 1.25rem;
        min-width: 70px;
    }
    .countdown-number {
        font-size: 2.5rem;
    }
    .countdown-event {
        font-size: 1.5rem;
    }
}

/* ==========================================
   TESTIMONIALS CAROUSEL
   ========================================== */
.testimonials {
    padding: 6rem 0;
    background: var(--cream);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 0 2rem;
    text-align: center;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-800);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--gold);
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.testimonial-role {
    color: var(--gold);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-prev,
.testimonial-next {
    width: 44px;
    height: 44px;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--gold);
    color: var(--white);
}

.testimonial-prev svg,
.testimonial-next svg {
    width: 20px;
    height: 20px;
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 0 1rem;
    }
    .testimonial-quote {
        font-size: 1.1rem;
    }
    .testimonial-image {
        width: 80px;
        height: 80px;
    }
}

/* ==========================================
   LIGHTBOX GALLERY
   ========================================== */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--gold);
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 28px;
    height: 28px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
}

.lightbox-prev svg,
.lightbox-next svg {
    width: 28px;
    height: 28px;
}

.lightbox-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.875rem;
    background: rgba(0,0,0,0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }
}

/* ==========================================
   HERO VIDEO BACKGROUND
   ========================================== */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-fallback {
    display: none;
}

/* Show fallback image if video fails to load */
.hero-video:not([src]),
.hero-video[src=""] {
    display: none;
}

.hero-video:not([src]) + .hero-fallback,
.hero-video[src=""] + .hero-fallback {
    display: block;
}

/* Ken Burns effect for fallback image */
.hero-fallback {
    animation: kenBurns 20s ease infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-img {
    transition: opacity 0.5s ease;
}

/* ==========================================
   LAZY LOAD BLUR-UP EFFECT
   ========================================== */
img[data-src] {
    filter: blur(10px);
    transition: filter 0.5s ease;
}

img[data-src].loaded,
img.loaded {
    filter: blur(0);
}

/* ==========================================
   HEADER HIDE ON SCROLL
   ========================================== */
.header {
    transition: all 0.3s ease, transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

/* ==========================================
   ENHANCED BUTTON EFFECTS
   ========================================== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* ==========================================
   GALLERY CARD HOVER ENHANCEMENT
   ========================================== */
.gallery-card,
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-card::before,
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-card:hover::before,
.gallery-item:hover::before {
    opacity: 1;
}

.gallery-card::after,
.gallery-item::after {
    content: '↗';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: var(--white);
    z-index: 2;
    transition: transform 0.3s ease;
}

.gallery-card:hover::after,
.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ==========================================
   TESTIMONIAL CONTENT STRUCTURE
   ========================================== */
.testimonial-content {
    position: relative;
    padding-top: 2rem;
}

.testimonial-content .quote-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    color: var(--gold);
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin: 0;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    font-style: normal;
}
