/* Global Variables */
:root {
    --primary-color: #D4AF37;
    /* Metallic Gold */
    --secondary-color: #1a1a1a;
    /* Dark Grey */
    --bg-color: #0f0f0f;
    /* Almost Black */
    --text-color: #f0f0f0;
    /* Off-white */
    --accent-red: #c0392b;
    /* Subtle Red for urgency/accents */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Offset for sticky header */
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

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

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background-color: #e5bd45;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-call {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    padding: 10px 25px !important;
    text-align: center;
}

.btn-call span {
    font-size: 1rem;
    font-weight: 700;
    display: block;
    text-decoration: none !important;
}

.btn-call small {
    font-size: 0.7rem;
    font-weight: 500;
    display: block;
    margin-top: 1px;
    text-decoration: none !important;
}

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

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

/* Header */
header {
    background: rgba(15, 15, 15, 0.95);
    padding: 20px 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

header.active-menu {
    z-index: 1003;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover:not(.btn) {
    color: var(--primary-color);
}

.social-icons-header {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-right: 10px;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.3rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon i.fa-youtube {
    color: #FF0000;
}

.social-icon i.fa-youtube:hover {
    color: #CC0000;
}

.social-icon i.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icon i.fa-instagram:hover {
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
    position: relative;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
    position: absolute;
    left: 0;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 4px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 4px;
}

.mobile-menu-toggle.active span {
    background: var(--primary-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scale(0);
    width: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 20px;
}

.mobile-menu-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 10px 0;
    position: relative;
}

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

.mobile-menu-link:hover {
    color: var(--primary-color);
}

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

.mobile-menu-cta {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: 5px;
    margin-top: 20px;
}

.mobile-menu-cta::after {
    display: none;
}

.mobile-menu-cta:hover {
    background: #e5bd45;
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    /* padding-top removed for sticky header */
}

.cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

.trust-icons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--primary-color);
}

/* Lead Form */
.lead-form-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
}

.lead-form h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.form-control {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    color: #fff;
    border-radius: 5px;
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.feature-card {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.service-img-wrapper {
    position: relative;
    background: #1a1a1a;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img {
    width: 100%;
    height: 400px;
    background-color: #333;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    cursor: zoom-in;
}

.service-sub-images {
    display: flex;
    gap: 8px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.5);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(255, 255, 255, 0.1);
}

.service-sub-images::-webkit-scrollbar {
    height: 6px;
}

.service-sub-images::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.service-sub-images::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.sub-img {
    min-width: 70px;
    width: 70px;
    height: 70px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    flex-shrink: 0;
}

.sub-img:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.sub-img.active {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3), 0 2px 8px rgba(212, 175, 55, 0.4);
}

.service-content {
    padding: 20px;
}

.service-list {
    margin-top: 15px;
    list-style: none;
    /* Explicitly reset again */
}

.service-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

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

/* Before & After */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.ba-item {
    position: relative;
    height: 250px;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ba-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

/* Videos Section */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    background: #222;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.video-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    min-height: 200px;
}

/* Process */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    text-align: center;
}

.process-step {
    flex: 1;
    min-width: 150px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

/* Reviews Slider */
.reviews-slider-container {
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.review-slide {
    flex: 0 0 100%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .review-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .review-slide {
        flex: 0 0 33.333%;
    }
}

.review-card {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Packages */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: var(--secondary-color);
    padding: 40px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.price-card h3 {
    color: var(--primary-color);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 20px 0;
}

/* Education */
.education-section {
    background: var(--secondary-color);
}

.edu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Footer */
footer {
    background: #000;
    padding: 50px 0 20px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon-footer {
    color: #666;
    font-size: 1.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-footer:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-icon-footer i.fa-youtube {
    color: #FF0000;
}

.social-icon-footer i.fa-youtube:hover {
    color: #CC0000;
}

.social-icon-footer i.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icon-footer i.fa-instagram:hover {
    opacity: 0.8;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.social-icons-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon-contact {
    color: var(--text-color);
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
}

.social-icon-contact:hover {
    border-color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.social-icon-contact i.fa-youtube {
    color: #FF0000;
}

.social-icon-contact i.fa-youtube:hover {
    color: #CC0000;
}

.social-icon-contact i.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icon-contact i.fa-instagram:hover {
    opacity: 0.8;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

/* Map */
.map-container {
    width: 100%;
    height: 300px;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .cta-group {
        justify-content: center;
    }

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

    .trust-icons {
        justify-content: center;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

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

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-img-wrapper {
        min-height: 300px;
    }

    .service-img {
        height: 300px;
    }

    .service-sub-images {
        gap: 6px;
        padding: 10px;
    }

    .sub-img {
        min-width: 60px;
        width: 60px;
        height: 60px;
    }

    .social-icons-header {
        display: none;
    }

    .social-icons-mobile {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin: 20px 0;
    }

    .social-icon-mobile {
        color: var(--text-color);
        font-size: 2rem;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid var(--glass-border);
    }

    .social-icon-mobile:hover {
        border-color: var(--primary-color);
        background: rgba(212, 175, 55, 0.1);
        transform: scale(1.1);
    }

    .social-icon-mobile i.fa-youtube {
        color: #FF0000;
    }

    .social-icon-mobile i.fa-youtube:hover {
        color: #CC0000;
    }

    .social-icon-mobile i.fa-instagram {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .social-icon-mobile i.fa-instagram:hover {
        opacity: 0.8;
    }

    .social-icons-contact {
        flex-direction: column;
        gap: 15px;
    }

    .social-icon-contact {
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 1.2rem;
    }

    header {
        padding: 15px 0;
    }

    nav {
        position: relative;
    }

    .mobile-menu-toggle.active {
        background: rgba(212, 175, 55, 0.1);
        border-radius: 5px;
        padding: 5px;
    }
}

/* ============================
   LEAD OPTIMIZATION STYLES 
   ============================ */

/* Top Banner */
.top-banner {
    background: var(--accent-red);
    color: white;
    padding: 10px 0;
    text-align: center;
    position: relative;
    font-size: 0.9rem;
    z-index: 1001;
    /* Above header */
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#closeBanner {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 85px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 
                0 0 20px rgba(37, 211, 102, 0.2);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6), 
                0 0 30px rgba(37, 211, 102, 0.3);
    background: #20BA5A;
}

.floating-whatsapp:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4), 
                0 0 15px rgba(37, 211, 102, 0.2);
}

/* Floating Call Icon */
.floating-call-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #FFD700;
    color: #000000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.5), 
                0 0 30px rgba(255, 215, 0, 0.3),
                inset 0 2px 5px rgba(255, 255, 255, 0.2);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.floating-call-icon i {
    color: #000000;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.floating-call-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.7), 
                0 0 40px rgba(255, 215, 0, 0.4),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
    background: #FFC700;
}

.floating-call-icon:active {
    transform: scale(0.95);
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4), 
                0 0 20px rgba(255, 215, 0, 0.2),
                inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 769px) {
    .floating-whatsapp {
        width: 65px;
        height: 65px;
        font-size: 2rem;
        right: 30px;
        bottom: 105px;
        box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4), 
                    0 0 25px rgba(37, 211, 102, 0.2);
    }
    
    .floating-whatsapp:hover {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6), 
                    0 0 35px rgba(37, 211, 102, 0.3);
    }

    .floating-call-icon {
        display: flex;
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        right: 30px;
        bottom: 30px;
        box-shadow: 0 4px 22px rgba(255, 215, 0, 0.5), 
                    0 0 35px rgba(255, 215, 0, 0.3),
                    inset 0 2px 5px rgba(255, 255, 255, 0.2);
    }
    
    .floating-call-icon:hover {
        box-shadow: 0 6px 28px rgba(255, 215, 0, 0.7), 
                    0 0 45px rgba(255, 215, 0, 0.4),
                    inset 0 2px 5px rgba(255, 255, 255, 0.3);
    }
}

@media (min-width: 1200px) {
    .floating-whatsapp {
        width: 70px;
        height: 70px;
        font-size: 2.2rem;
        right: 40px;
        bottom: 120px;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 
                    0 0 30px rgba(37, 211, 102, 0.2);
    }
    
    .floating-whatsapp:hover {
        box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6), 
                    0 0 40px rgba(37, 211, 102, 0.3);
    }

    .floating-call-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        right: 40px;
        bottom: 40px;
        box-shadow: 0 4px 25px rgba(255, 215, 0, 0.5), 
                    0 0 40px rgba(255, 215, 0, 0.3),
                    inset 0 2px 5px rgba(255, 255, 255, 0.2);
    }
    
    .floating-call-icon:hover {
        box-shadow: 0 6px 30px rgba(255, 215, 0, 0.7), 
                    0 0 50px rgba(255, 215, 0, 0.4),
                    inset 0 2px 5px rgba(255, 255, 255, 0.3);
    }
}

/* Sticky Mobile Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: none;
    background: transparent;
    z-index: 1000;
}

.sf-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    gap: 10px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.sf-call {
    background: #FFD700;
    color: #000;
    font-weight: 700;
    box-shadow: 0 -2px 10px rgba(255, 215, 0, 0.3);
}

.sf-call:hover {
    background: #FFC700;
    box-shadow: 0 -2px 15px rgba(255, 215, 0, 0.5);
}

.sf-call:active {
    transform: scale(0.98);
}

.sf-wa {
    background: #25D366;
}

/* Responsive Styles for Lead Gen */
@media (max-width: 768px) {
    .sticky-footer {
        display: none;
    }

    .floating-whatsapp {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        right: 15px;
        bottom: 85px;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 
                    0 0 20px rgba(37, 211, 102, 0.2);
    }
    
    .floating-whatsapp:hover {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6), 
                    0 0 30px rgba(37, 211, 102, 0.3);
    }

    .floating-call-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        right: 15px;
        bottom: 20px;
        box-shadow: 0 4px 18px rgba(255, 215, 0, 0.5), 
                    0 0 25px rgba(255, 215, 0, 0.3),
                    inset 0 2px 5px rgba(255, 255, 255, 0.2);
    }
    
    .floating-call-icon:hover {
        box-shadow: 0 6px 22px rgba(255, 215, 0, 0.7), 
                    0 0 35px rgba(255, 215, 0, 0.4),
                    inset 0 2px 5px rgba(255, 255, 255, 0.3);
    }

    footer {
        padding-bottom: 20px;
    }

    /* Form Mobile Tweak */
    .lead-form-container {
        padding: 20px;
        margin-top: 20px;
    }

    /* Hero Text Mobile Tweak */
    .hero {
        /* padding-top: 120px; Removed as header is sticky */
        height: auto;
        /* Allow auto height on mobile if content overflows */
        min-height: 100vh;
        padding-bottom: 50px;
    }
}


/* ============================
   SCROLL ANIMATIONS 
   ============================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #141721;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    position: relative;
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 1;
}

.modal-content {
    max-height: 85vh;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom Scrollbar for Modal Content */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

@media (max-width: 500px) {
    .modal-container {
        padding: 30px 20px;
    }
}

/* Image Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3001;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 85%;
        padding: 15px;
    }

    .lightbox-content img {
        max-height: 85vh;
    }

    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        right: 15px;
        bottom: 99px;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 
                    0 0 18px rgba(37, 211, 102, 0.2);
    }
    
    .floating-whatsapp:hover {
        box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6), 
                    0 0 25px rgba(37, 211, 102, 0.3);
    }

    .floating-call-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        right: 15px;
        bottom: 39px;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5), 
                    0 0 20px rgba(255, 215, 0, 0.3),
                    inset 0 2px 5px rgba(255, 255, 255, 0.2);
    }
    
    .floating-call-icon:hover {
        box-shadow: 0 6px 20px rgba(255, 215, 0, 0.7), 
                    0 0 30px rgba(255, 215, 0, 0.4),
                    inset 0 2px 5px rgba(255, 255, 255, 0.3);
    }

    .lightbox-content {
        max-width: 100%;
        max-height: 80%;
        padding: 10px;
    }

    .lightbox-content img {
        max-height: 80vh;
    }

    .lightbox-close {
        top: 5px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}