:root {
    --primary-red: #ff3c3c;
    --dark-red: #cc0000;
    --black: #000000; /* Matched to pure black for animation sync */
    --dark-gray: #0a0a0a;
    --light-gray: #1a1a1a;
    --white: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --font-accent: 'Bebas Neue', cursive;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

.logo {
    text-decoration: none;
    color: var(--white);
}

.logo:hover {
    color: var(--white);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-family: var(--font-accent);
    font-size: 1.9rem;
    letter-spacing: 2px;
}

.logo img {
    height: 65px;
    width: auto;
    transition: var(--transition-smooth);
}

.accent {
    color: var(--primary-red);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--primary-red);
    opacity: 1;
}

.btn-cta {
    background: var(--primary-red);
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    color: white !important;
    font-weight: 800 !important;
    opacity: 1 !important;
    box-shadow: 0 4px 15px rgba(255, 60, 60, 0.3);
}

.mobile-socials-wrapper {
    display: none;
    width: 100%;
}

.mobile-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.mobile-socials a {
    color: var(--white);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.mobile-socials a:hover {
    color: var(--primary-red);
    opacity: 1;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1000001; /* Higher than the nav-links drawer (999999) */
    transition: var(--transition-smooth);
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

    .nav-links {
        display: flex !important;
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 80%; /* Takes up most of the screen */
        max-width: 320px;
        background-color: #111111 !important; /* Solid fallback */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.4s cubic-bezier(0.85, 0, 0.15, 1);
        box-shadow: -15px 0 35px rgba(0, 0, 0, 0.8);
        z-index: 999999 !important;
        transform: translateX(100%); /* Start off-screen to the right */
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .nav-links.open {
        transform: translateX(0) !important; /* Slide in */
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: var(--primary-red);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: var(--primary-red);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li {
        width: 100%;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-links a {
        font-size: 1.6rem !important; /* Very large text */
        display: block !important;
        padding: 1.5rem 0;
        color: #ffffff !important;
        opacity: 1 !important;
        width: 100%;
        text-align: center;
        font-family: var(--font-accent);
        letter-spacing: 3px;
        text-decoration: none;
        transition: 0.3s;
    }

    .btn-cta {
        margin: 2rem auto !important;
        width: 220px !important;
        background: var(--primary-red) !important;
        color: white !important;
        font-weight: 900 !important;
        border-radius: 8px;
    }

    .mobile-socials-wrapper {
        display: block;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
    }

    .mobile-socials {
        display: flex;
    }

    .logo {
        font-size: 1.6rem;
    }
    
    .logo img {
        height: 55px;
    }
}

/* Hero Section */
.hero {
    min-height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background-color: var(--black);
    /* Multi-layer Background Fade (50% Leaner Transparency) */
    background: 
        linear-gradient(to top, var(--black) 0%, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0) 50%),
        url('hero-bg.png') left 20% / 65% auto no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    z-index: 10;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    margin-top: 5rem;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 6rem;
    line-height: 0.85;
    letter-spacing: -2px;
    margin-bottom: 2.5rem;
}

.reveal {
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 3.5rem;
    border-left: 4px solid var(--primary-red);
    padding-left: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    padding: 1.4rem 3rem;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(255, 60, 60, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 60, 60, 0.6);
}

.btn-secondary {
    color: white;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.btn-secondary:hover {
    color: var(--primary-red);
}

.play-icon {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Animation Container */
.hero-animation-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-large {
    max-width: 100%;
    width: min(600px, 90%);
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 0 50px rgba(255, 60, 60, 0.3));
    animation: revealScale 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    /* Exactly 50% Linear Transparency at Image Bottom */
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.lottie-container {
    width: 600px;
    height: 600px;
    z-index: 2;
    filter: drop-shadow(0 0 40px rgba(255, 60, 60, 0.15));
}

.animation-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 60, 60, 0.15) 0%, transparent 70%);
    z-index: 1;
    filter: blur(50px);
    animation: pulseGlow 4s infinite alternate;
}

/* Stats */
.hero-stats {
    position: relative;
    z-index: 10;
    margin: 5rem auto 0; /* Center horizontally */
    display: flex;
    gap: 6rem;
    padding: 2.5rem 4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    align-self: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--primary-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Sections Global */
section {
    padding: 100px 2rem;
    position: relative;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 4rem;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 2px;
}

/* Packages Section */
.packages-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* Horizontal Layout for Admission Card */
.admission-card {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(145deg, #111, #0a0a0a);
    padding: 2.5rem 4rem;
    text-align: left;
    gap: 2rem;
}

.admission-card .package-name {
    margin: 0;
    font-size: 2.5rem;
    color: var(--primary-red);
}

.admission-card .package-price {
    margin: 0;
}

.admission-card .package-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
    margin: 0;
}

.admission-card .package-features li {
    margin: 0;
}

.admission-card .btn-package {
    width: auto;
    padding: 1.2rem 3rem;
}

/* Treadmill Horizontal Card Styling */
.treadmill-card {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(145deg, #0a0a0a, #150505);
    border: 1px solid var(--primary-red) !important; /* Make it stand out */
    padding: 2.5rem 4rem !important;
    text-align: left;
    gap: 3rem;
}

.treadmill-header {
    flex: 1;
}

.treadmill-header .package-name {
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    color: var(--primary-red);
}

.treadmill-header .package-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
}

.treadmill-columns {
    display: flex;
    gap: 1.5rem;
    flex: 2;
    justify-content: center;
}

.treadmill-col {
    background: #050505;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    min-width: 150px;
    transition: var(--transition-smooth);
}

.treadmill-col:hover, .treadmill-col.popular-col {
    border-color: var(--primary-red);
}

.treadmill-col.popular-col {
    background: linear-gradient(145deg, #0a0a0a, #1a0505);
    transform: scale(1.05);
}

.treadmill-col h4 {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.treadmill-col .package-price {
    margin: 0;
}

.treadmill-col .amount {
    font-size: 2.5rem;
}

.treadmill-card .btn-package {
    width: auto;
    padding: 1.2rem 3rem;
    white-space: nowrap;
    background: var(--primary-red);
    border: none;
}

/* Base Card Styling */
.package-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(255, 60, 60, 0.1);
}

.package-card.popular {
    border-color: var(--primary-red);
    background: linear-gradient(145deg, #0a0a0a, #1a0505);
}

.package-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-red);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 800;
}

.package-name {
    font-family: var(--font-accent);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    color: var(--text-muted);
}

.amount {
    font-size: 4rem;
    font-family: var(--font-accent);
    color: var(--primary-red);
}

.duration {
    color: var(--text-muted);
}

.package-features {
    list-style: none;
    margin: 0 auto 2.5rem auto;
    text-align: left;
    display: inline-block;
}

.package-features li {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
}

.package-features li::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: 800;
}

.btn-package {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.popular .btn-package {
    background: var(--primary-red);
    border: none;
}

.btn-package:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

/* About Section */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .admission-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }

    .admission-card .package-features {
        grid-template-columns: 1fr;
    }

    .treadmill-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem !important;
    }

    .treadmill-columns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .treadmill-col {
        width: 100%;
    }

    .about-container {
        display: flex;
        flex-direction: column-reverse; /* Image on top for better mobile flow */
        align-items: center;
        justify-content: center;
        gap: 2rem;
        text-align: center;
        padding: 0 1.5rem;
    }

    .about-text {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

.about-text h2 {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* About Section Ticker & Image */
.about-image {
    position: relative;
}

.ticker-image-container {
    position: relative;
    width: 100%;
    height: 480px; /* Increased from 420px by 15% */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Side Fade for Loop */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-image-container img {
    height: 100%;
    position: relative;
    z-index: 10;
    pointer-events: none;
    /* Bottom Fade for the Athlete */
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.loop {
    position: absolute;
    width: 200%;
    left: -50%;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-15deg);
}

/* Loop 1: BEHIND IMAGE */
.loop-1 { 
    top: 22%;
    z-index: 5;
} 
.loop-1 .slide p {
    color: rgba(255, 255, 255, 0.15);
}

/* Loop 2: IN FRONT OF IMAGE */
.loop-2 { 
    top: 52%;
    z-index: 15;
}
.loop-2 .slide p {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.slide {
    display: flex;
    width: max-content;
    animation: scrollText 20s linear infinite;
}

.slide p {
    font-family: var(--font-accent);
    font-size: 2.9rem; /* Increased from 2.5rem by 15% */
    font-weight: 900;
    text-transform: uppercase;
    padding: 0 1.8rem;
    display: flex;
    align-items: center;
    letter-spacing: 1.5px;
}

/* Bolt Symbol Styling */
.slide p i {
    margin-left: 1.8rem;
    color: var(--primary-red);
    font-size: 2.1rem;
    -webkit-text-stroke: 0 !important;
    text-shadow: 0 0 15px rgba(255, 60, 60, 0.5);
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(var(--move-distance, -50%)); }
}

@media (max-width: 1024px) {
    .ticker-image-container {
        height: 400px;
    }
    .slide p {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .ticker-image-container {
        height: 350px;
    }
    .slide p {
        font-size: 2rem;
    }
    .slide p i {
        font-size: 1.6rem;
        margin-left: 1.2rem;
    }
}

@media (max-width: 480px) {
    .ticker-image-container {
        height: 220px;
        max-width: 320px;
        margin: 0 auto;
    }
    .slide p {
        font-size: 1.4rem;
    }
    .slide p i {
        font-size: 1rem;
        margin-left: 0.6rem;
    }
    .about-container {
        gap: 1.5rem;
    }
}

/* Expert Trainers Section */
.trainers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.trainer-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.trainer-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px rgba(255, 60, 60, 0.1);
}

.trainer-img-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 4px solid var(--primary-red);
    background: #111;
}

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

.trainer-info {
    width: 100%;
}

.trainer-info h3 {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.trainer-section {
    margin-bottom: 1.5rem;
}

.trainer-section h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid var(--primary-red);
    padding-left: 0.8rem;
}

.trainer-section ul {
    list-style: none;
    padding: 0;
}

.trainer-section ul li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.trainer-section ul li::before {
    content: '★';
    color: var(--primary-red);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

@media (max-width: 991px) {
    .trainers-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
    background: #0a0a0a;
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input, .form-group textarea {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    outline: none;
    transition: var(--transition-smooth);
}

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

/* Footer Layout */
.footer-wave {
  width: 100%;
  position: relative;
  margin-top: 100px;
  background-color: transparent;
}

/* Footer Bottom Styling */
.footer-bottom-content {
  background-color: #ff3c3c;
  margin: -2px 0px 0px 0px;
  padding: 20px 0px 25px 0px; /* Reduced vertical padding */
  color: #fff;
  text-align: center;
  font-family: 'Lato', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* Reduced gap between footer elements */
  align-items: center;
}

.footer-brand {
  font-family: var(--font-accent);
  font-size: 3rem;
  letter-spacing: 2px;
  margin: 0;
}

.social-links-premium {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.social-btn {
  position: relative;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.social-btn:hover {
  background: white;
  color: #ff3c3c;
  transform: scale(1.2) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-btn::after {
  content: attr(data-label);
  position: absolute;
  top: -35px;
  background: white;
  color: #ff3c3c;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform: translateY(10px);
  white-space: nowrap;
}

.social-btn:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.footer-info {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-info p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.footer-info i {
  color: var(--white);
  font-size: 1rem;
}

.footer-copyright {
  font-size: 0.85rem;
  opacity: 0.7;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 1rem;
}

svg {
  width: 100%;
  display: block;
}

/* Very Slow Footer Animations */
.wave {
  animation: wave 15s linear infinite;
  fill: #ff3c3c;
}

.drop {
  fill: transparent;
  animation: drop 20s ease infinite normal;
  stroke: #ff3c3c;
  stroke-width: 0.5;
  opacity: .6; 
  transform: translateY(80%);
}

.drop1 {
  transform-origin: 20px 3px;
}

.drop2 {
  animation-delay: 8s;
  animation-duration: 15s;
  transform-origin: 25px 3px;
}

.drop3 {
  animation-delay: -5s;
  animation-duration: 18s;
  transform-origin: 16px 3px;
}

.gooeff {
   filter: url(#goo);
}

#wave2 {
  animation-duration: 22s;
  animation-direction: reverse;
  opacity: .6;
}

#wave3 {
  animation-duration: 30s;
  opacity: .3;
}

@keyframes wave {
  to { transform: translateX(-100%); }
}

@keyframes ball {
  to { transform: translateY(20%); }
}

@keyframes drop {
  0% {
    transform: translateY(80%); 
    opacity: .6; 
  }
  80% {
    transform: translateY(80%); 
    opacity: .6; 
  }
  90% { 
    transform: translateY(10%) ; 
    opacity: .6; 
  }
  100% { 
    transform: translateY(0%) scale(1.5);  
    stroke-width: 0.2;
    opacity: 0; 
  }
}

/* Animations */
.reveal-text-slide {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-text-slide.show {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

@keyframes revealScale {
    0% {
        transform: scale(0.2) rotate(-10deg);
        opacity: 0;
        filter: blur(20px);
    }
    60% {
        transform: scale(1.05) rotate(2deg);
        opacity: 1;
        filter: blur(0);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
        filter: blur(0);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero {
        background-size: contain; /* Changed from cover to show full image */
        background-position: center;
        background-repeat: no-repeat;
        min-height: auto;
        padding-top: 10rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        order: 2;
        margin-top: 0;
    }

    .hero-animation-container {
        order: 1; 
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 1rem;
        min-height: 300px;
    }
    
    .hero-logo-large {
        width: 100%;
        max-width: 450px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 3rem;
        border-left: none;
        padding-left: 0;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        margin: 4rem auto 0;
        width: fit-content;
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    section {
        padding: 100px 1.5rem 60px;
    }
    
    .about-text h2, .about-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero {
        padding-top: 8rem;
        background-size: contain;
        background-position: center 15%; /* Position adjusted for mobile */
    }

    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-logo-large {
        width: 90%;
        max-width: 280px;
        height: auto;
        margin: 0 auto;
    }

    .hero-stats {
        gap: 1rem;
        padding: 1.5rem 1rem;
        width: 90%;
        margin-top: 3rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }

    .nav-links {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        gap: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
    }

    .contact-container {
        padding: 2rem 1.5rem;
    }

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

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

    .about-text h2 {
        font-size: 2.2rem;
    }

    .waves-container {
        height: 60px; /* Smaller waves on mobile */
        min-height: 40px;
    }

    .footer-content {
        padding: 3rem 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

