/* CSS Reset & Variables */
:root {
    --primary-color: #e50914;
    /* Red Accent */
    --hover-color: #b20710;
    --bg-color: #0a0a0a;
    --bg-secondary: #121212;
    --text-color: #ffffff;
    --text-muted: #b3b3b3;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
    --spacing-section: 80px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-section) 0;
}

.bg-darker {
    background-color: var(--bg-secondary);
}

/* Add padding to the top of the body or the first section to account for fixed navbar */
body {
    padding-top: 100px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
}

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

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

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    /* Adjust as needed */
    width: auto;
}

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

.nav-links a {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    /* TODO: Add real image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.about-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid #333;
    transition: var(--transition);
}

.about-photo:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    border-radius: 8px;
    border: 1px solid #444;
}

.about-text h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1;
}

.about-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #eee;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stats li {
    text-align: center;
}

.stats .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stats .label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

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

.transformation-card {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #222;
    transition: var(--transition);
}

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

.comparison {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.comparison .img-placeholder {
    height: 250px;
    font-size: 1rem;
}

.client-name {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.client-result {
    color: var(--primary-color);
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: start;
    /* Align to top to handle different heights */
}

.package-card {
    background-color: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #222;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(229, 9, 20, 0.1);
}

.package-card.featured {
    background-color: #1a1a1a;
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 10;
}

.badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    text-transform: uppercase;
    transform: rotate(45deg);
    font-weight: 700;
}

.package-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.package-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.package-card .price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.package-card .features {
    text-align: left;
    margin-bottom: 30px;
}

.package-card .features li {
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.package-card .features i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.package-card .features i.fa-check {
    color: var(--primary-color);
}

.package-card .features i.fa-times {
    color: #444;
}

/* Achievements Section */
.achievements-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--bg-color);
    padding: 20px 30px;
    border-radius: 8px;
    border: 1px solid #222;
    min-width: 300px;
}

.achievement-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.achievement-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.achievement-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Sponsors Section - Marquee */
.sponsors-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
    background: var(--bg-secondary);
}

.sponsors-wrapper::before,
.sponsors-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.sponsors-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.sponsors-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.sponsors-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sponsor-logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #666;
    /* Muted color initially */
    margin: 0 50px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: default;
    background-color: transparent;
    /* Explicitly remove bg */
}

.sponsor-logo:hover {
    color: var(--primary-color);
    /* Highlight on hover */
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
}

/* Contact Section */
.contact-content {
    display: flex;
    justify-content: center;
}

.contact-links-only {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    padding: 20px 0;
}

.contact-links-only .info-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: white;
    transition: var(--transition);
}

.contact-links-only .info-item a:hover {
    color: var(--primary-color);
}

.contact-links-only .info-item i {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    background-color: #1a1a1a;
    border: 1px solid #333;
}

.contact-links-only .info-item a:hover i {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.contact-links-only .info-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.info-item i {
    width: 40px;
    height: 40px;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.info-item:hover i {
    background-color: var(--primary-color);
    color: white;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    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: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

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

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-text h1 {
        font-size: 3rem;
    }

    .about-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .achievements-list {
        grid-template-columns: 1fr;
    }

    .about-img {
        margin-top: 10px;
    }

    .stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .package-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Mobile menu needed */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0a0a0a;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-text h1 {
        font-size: 2.5rem;
    }

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

    .container {
        padding: 0 15px;
    }

    .stats li {
        min-width: 120px;
    }

    .navbar {
        padding: 10px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .gallery-item {
        height: 200px;
        /* Reducing height on mobile */
    }

    .video-preview-box {
        width: 180px;
        height: 270px;
    }

    .play-overlay {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 2000;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    animation-name: zoom;
    animation-duration: 0.6s;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/* Video Button & Modal */
/* Video Preview Box */
.video-preview-trigger {
    cursor: pointer;
    transition: var(--transition);
}

.video-preview-box {
    width: 120px;
    height: 180px;
    /* Vertical aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 2px solid #555;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    background-color: #000;
}

.video-preview-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: var(--transition);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background-color: rgba(229, 9, 20, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
    z-index: 2;
}

.video-preview-trigger:hover .video-preview-box {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.video-preview-trigger:hover video {
    opacity: 0.4;
}

.video-preview-trigger:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--primary-color);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(229, 9, 20, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
    }
}

/* Video Modal Specifics */
.modal-video-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-video-box video {
    max-height: 90vh;
    /* Vertical video friendly */
    max-width: 90vw;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}