/* Global Styles */
:root {
    --primary-color: #ff0000;
    --secondary-color: #000000;
    --accent-color: #ffd700;
    --accent-blue: #00d4ff;
    --accent-green: #39ff14;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #0a0a0a;
    --gradient-primary: linear-gradient(135deg, #ff0000 0%, #ff6b00 50%, #ffd700 100%);
    --gradient-secondary: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --gradient-speed: linear-gradient(45deg, #ff0000, #ffd700, #00d4ff, #39ff14);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 20px rgba(255,0,0,0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.75rem;
    letter-spacing: -0.3px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::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;
    z-index: -1;
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-speed) 1;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { border-image: linear-gradient(90deg, #ff0000, #ffd700, #00d4ff, #39ff14) 1; }
    50% { border-image: linear-gradient(90deg, #39ff14, #00d4ff, #ffd700, #ff0000) 1; }
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255,0,0,0.3));
    transition: var(--transition);
}

.nav-brand .logo:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 15px rgba(255,215,0,0.6));
}

.nav-brand h1 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}



.hero-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero.png') center/cover no-repeat, linear-gradient(135deg, #000 0%, #1a1a1a 25%, #ff0000 50%, #000 75%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    z-index: -2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transition: all 1s ease-out;
}

.hero-content.show {
    opacity: 1;
    visibility: visible;
}

.hero-logo {
    width: 450px;
    height: auto;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 50px rgba(255,215,0,0.9)) drop-shadow(0 0 30px rgba(255,0,0,0.6));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #fff 0%, #ffd700 50%, #ff0000 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 3s ease infinite, titleFloat 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255,215,0,0.5);
    filter: drop-shadow(0 0 10px rgba(255,0,0,0.5));
}

@keyframes titleGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 8px;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 50%, #e0e0e0 100%);
    background-size: 200% 200%;
    animation: placeholderShimmer 3s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-weight: 600;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 3px dashed #ccc;
}

@keyframes placeholderShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.image-placeholder::before {
    content: '📷';
    font-size: 3rem;
    position: absolute;
    opacity: 0.3;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.image-placeholder span {
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,100,0,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.highlight-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.emoji-highlight {
    display: inline-block;
    animation: emojiPulse 2s ease-in-out infinite;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    border-radius: 16px;
    opacity: 0.1;
    z-index: -1;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image:hover .about-img {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.about-text h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-text h3::before {
    content: '🏍️';
    position: absolute;
    left: -40px;
    font-size: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    gap: 18px;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.stat:hover::before {
    transform: scaleY(1);
}

.stat:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255,100,0,0.3);
}

.stat h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.75rem;
    margin: 0;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    min-width: 110px;
}

.stat p {
    color: var(--text-gray);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    line-height: 1.4;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 20px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid #f0f0f0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 100, 0, 0.03) 30%,
        rgba(255, 150, 0, 0.08) 60%,
        rgba(255, 200, 0, 0.12) 80%,
        rgba(255, 100, 0, 0.15) 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 150, 0, 0.12) 0%,
        rgba(255, 100, 0, 0.08) 20%,
        rgba(255, 50, 0, 0.05) 40%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

@keyframes fireFlicker {
    0%, 100% { 
        opacity: 0.7;
        transform: translateX(-50%) scale(1, 1);
    }
    25% { 
        opacity: 0.75;
        transform: translateX(-49%) scale(1.02, 1.03);
    }
    50% { 
        opacity: 0.65;
        transform: translateX(-51%) scale(0.98, 0.97);
    }
    75% { 
        opacity: 0.72;
        transform: translateX(-50%) scale(1.01, 1.02);
    }
}

@keyframes fireGlow {
    0%, 100% { 
        opacity: 0.7;
        filter: blur(15px) brightness(1);
    }
    25% { 
        opacity: 0.75;
        filter: blur(18px) brightness(1.05);
    }
    50% { 
        opacity: 0.65;
        filter: blur(12px) brightness(0.98);
    }
    75% { 
        opacity: 0.72;
        filter: blur(16px) brightness(1.02);
    }
}

.service-card:hover::before {
    opacity: 1;
    animation: fireGlow 2s ease-in-out infinite;
}

.service-card:hover::after {
    opacity: 1;
    animation: fireFlicker 2.2s ease-in-out infinite;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        var(--shadow-lg), 
        0 12px 40px rgba(255,100,0,0.15),
        0 0 40px rgba(255,150,0,0.1) inset;
    border-color: rgba(255,150,0,0.3);
    background: linear-gradient(to bottom, #ffffff 0%, #fffbf5 100%);
}

.service-card:hover .service-image {
    filter: brightness(1.1) contrast(1.05);
}

.service-card:hover .service-content {
    position: relative;
    z-index: 2;
}

.service-image .image-placeholder {
    height: 250px;
    border-radius: 0;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 30px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.service-logo {
    width: 40px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(255,0,0,0.3));
    transition: var(--transition);
}

.service-card:hover .service-logo {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(255,100,0,0.6));
}

.service-content h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 800;
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Schedule Section */
.schedule {
    background: var(--bg-light);
}

.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.schedule-days {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.day-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.day-card:hover::after {
    left: 100%;
}

.day-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-md), 0 0 25px rgba(255,215,0,0.3);
    border-color: var(--accent-color);
}

.day-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: iconSpin 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

.day-card h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 800;
    font-size: 1.5rem;
}

.day-card p {
    color: var(--text-gray);
    font-weight: 600;
}

.schedule-note {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.schedule-note p {
    color: var(--text-gray);
    margin: 10px 0;
}

.schedule-image .image-placeholder {
    height: 500px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1;
    cursor: default;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 3px solid transparent;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item .image-placeholder {
    height: 100%;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-color);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg), 0 0 40px rgba(255,0,0,0.1);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.contact-form-wrapper:hover::before {
    opacity: 1;
}

.contact-form h3 {
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input[type="date"] {
    color: var(--text-gray);
    cursor: pointer;
    position: relative;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    background: var(--gradient-primary);
    border-radius: 6px;
    opacity: 0.8;
    transition: var(--transition);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    transform: scale(1.1);
}

.form-group input[type="date"]:invalid {
    border-color: red;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(255,0,0,0.2), 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: var(--text-light);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-speed);
    animation: borderSlide 3s linear infinite;
}

@keyframes borderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 3fr;
    gap: 120px;
    margin-bottom: 50px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 20px rgba(255,0,0,0.5));
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255,215,0,0.7));
}

.footer-description {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.footer-column h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.footer-column ul li a:hover::after {
    width: 100%;
}

.footer-contact,
.footer-address {
    color: #aaa;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--text-light);
}

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

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social .footer-link {
    padding: 5px 0;
}

/* Legacy styles for compatibility */
.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1fr 1.3fr;
    gap: 80px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 1.3rem;
}

.footer-section p {
    color: #999;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 10px 0;
    position: relative;
    font-size: 1.05rem;
}

.social-link::before {
    content: '🔥';
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: var(--text-light);
    transform: translateX(10px);
    text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.community-tag {
    color: var(--accent-color) !important;
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer-contact-link {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-contact-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-contact-link:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.footer-contact-link:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
    margin: 8px 0;
}

.footer-credits {
    font-size: 0.9rem;
    margin-top: 10px;
}

.hyperbyte-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.hyperbyte-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.hyperbyte-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hyperbyte-link:hover::after {
    width: 100%;
}

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

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Add animation classes */
.animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
    }

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

    .nav-brand .logo {
        height: 40px;
    }

    .hero-logo {
        width: 280px;
    }

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

    h2 {
        font-size: 2rem;
    }

    .about-content,
    .schedule-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

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

    .about-stats {
        gap: 15px;
    }

    .stat {
        padding: 20px;
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }

    .stat h4 {
        font-size: 2rem;
        min-width: auto;
    }

    .stat p {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .schedule-days {
        grid-template-columns: 1fr;
    }
}
