@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Oswald:wght@500;600;700&display=swap');

:root {
    --primary-color: #ff0000;
    --primary-hover: #cc0000;
    --bg-dark: #000000;
    --bg-card: #111111;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4, .font-oswald {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

.section-padding {
    padding: 100px 0;
}

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

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
}

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

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

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

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
    transform: scale(1.05);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
}

nav.sticky {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

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

.logo {
    font-size: 28px;
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

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

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

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-white);
    z-index: 1002;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('./images/hero.png') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 80px);
    margin-bottom: 20px;
    font-weight: 900;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-grey);
}

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

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translate(-50%, 0);}
    40% {transform: translate(-50%, -10px);}
    60% {transform: translate(-50%, -5px);}
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid #222;
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover { border-color: var(--primary-color); transform: translateY(-10px); }
.benefit-card i { font-size: 40px; margin-bottom: 20px; }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 40px;
}

.stat-item h2 {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-grey);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

/* Programs Grid */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--bg-card);
    border: 1px solid #222;
    overflow: hidden;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.program-img {
    height: 250px;
    overflow: hidden;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.program-info {
    padding: 30px;
}

.program-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.program-info p {
    color: var(--text-grey);
    margin-bottom: 20px;
    font-size: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.amenity-item {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.amenity-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.amenity-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.form-group { margin-bottom: 20px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    color: white;
    font-family: 'Inter', sans-serif;
}

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

.info-items { margin-top: 30px; }
.info-item { display: flex; gap: 20px; margin-bottom: 30px; }
.info-item i { font-size: 24px; color: var(--primary-color); }

.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* Pricing Section */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    font-weight: 700;
    text-transform: uppercase;
}

.toggle-btn {
    width: 60px;
    height: 30px;
    background: #222;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    border: 2px solid var(--primary-color);
}

.toggle-circle {
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.toggle-btn.active .toggle-circle { transform: translateX(30px); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid #222;
    padding: 50px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover { border-color: var(--primary-color); transform: translateY(-10px); }
.pricing-card.highlighted { border-color: var(--primary-color); background: #080808; }

.popular-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    padding: 5px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.price { margin: 30px 0; font-family: 'Oswald', sans-serif; }
.currency { font-size: 30px; vertical-align: top; }
.amount { font-size: 80px; line-height: 1; font-weight: 700; }
.period { font-size: 18px; color: var(--text-grey); }
.pricing-features { margin-bottom: 40px; text-align: left; }
.pricing-features li { margin-bottom: 15px; font-size: 14px; }
.pricing-features i { margin-right: 15px; color: var(--primary-color); width: 15px; }
.pricing-features .disabled { color: #444; }
.pricing-features .disabled i { color: #444; }

/* App Section */
.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.app-stores { display: flex; gap: 20px; margin-top: 30px; }
.app-stores img { height: 45px; }

.app-mockup img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

/* Transformations Flex */
.flex-row {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: space-between;
}

.results-text { flex: 1; }
.results-img { flex: 1; border: 2px solid var(--primary-color); padding: 10px; }
.results-img img { width: 100%; }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('./images/hero.png') center/cover;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.cta-banner h2 { font-size: 50px; margin-bottom: 20px; }

/* Sub-Hero (Generic for other pages) */
.sub-hero {
    padding: 150px 0 100px;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('./images/hero.png') center/cover;
    text-align: center;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    background-color: #050505;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 18px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-grey);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    background: #111;
    border: 1px solid #333;
    padding: 12px 15px;
    color: white;
    width: 70%;
}

.newsletter-form button {
    background: var(--primary-color);
    border: none;
    padding: 12px 20px;
    color: white;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #222;
    color: var(--text-grey);
    font-size: 14px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Transformations & Results */
.masonry-grid {
    columns: 3;
    column-gap: 20px;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid #222;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: var(--transition);
}

.masonry-item:hover img { transform: scale(1.1); }

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    opacity: 0;
    transition: var(--transition);
}

.masonry-item:hover .result-overlay { opacity: 1; }

.video-placeholder {
    height: 400px;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--primary-color);
    cursor: pointer;
}

.video-placeholder i { font-size: 80px; color: var(--primary-color); margin-bottom: 20px; }

/* Media Queries for Best Mobile View */
@media (max-width: 991px) {
    .container { padding: 0 30px; }
    .hero h1 { font-size: 60px; }
}

@media (max-width: 768px) {
    .menu-btn { display: block; }
    .masonry-grid { columns: 1; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

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

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 24px;
    }

    .hero h1 { font-size: 40px; }
    .hero p { font-size: 16px; }
    .section-padding { padding: 60px 0; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .newsletter-form { justify-content: center; }
    
    .btn { padding: 15px 30px; width: 100%; text-align: center; }
    .hero-btns { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }

    .flex-row { flex-direction: column; gap: 30px; }
    .app-grid { grid-template-columns: 1fr; text-align: center; }
    .app-stores { justify-content: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 32px; }
    .stat-item h2 { font-size: 30px; }
}
