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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 80px; /* Adjust based on footer height */
}

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

/* Animated Stars Background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.stars, .stars-2, .stars-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    animation: twinkle 4s linear infinite, float 200s linear infinite; /* Add float animation */
}

.stars {
    background-image:
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 40% 70%, #fff, transparent),
        radial-gradient(1px 1px at 90% 40%, #fff, transparent),
        radial-gradient(2px 2px at 10% 90%, #fff, transparent),
        radial-gradient(1px 1px at 80% 10%, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s linear infinite, float 200s linear infinite;
}

.stars-2 {
    background-image:
        radial-gradient(1px 1px at 50% 50%, #fff, transparent),
        radial-gradient(1px 1px at 80% 80%, #fff, transparent),
        radial-gradient(1px 1px at 30% 20%, #fff, transparent),
        radial-gradient(1px 1px at 70% 60%, #fff, transparent);
    background-repeat: repeat;
    background-size: 150px 150px;
    animation: twinkle 6s linear infinite, float 150s linear infinite reverse; /* Different duration & direction */
}

.stars-3 {
    background-image:
        radial-gradient(1px 1px at 30% 60%, #fff, transparent),
        radial-gradient(1px 1px at 70% 20%, #fff, transparent),
        radial-gradient(1px 1px at 10% 80%, #fff, transparent);
    background-repeat: repeat;
    background-size: 100px 80px;
    animation: twinkle 3s linear infinite, float 100s linear infinite; /* Different duration */
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Add float animation */
@keyframes float {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; } /* Animate diagonally */
}

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

.header-container {
    display: flex; /* Use flexbox to align items */
    justify-content: center; /* Center content initially */
    align-items: center;
    position: relative; /* Allow absolute positioning within if needed, though not strictly necessary for this layout */
}

.logo {
    height: 50px;
    display: block;
    /* Remove margin: 0 auto; if using flexbox centering */
}

/* Add Instagram Link Styling */
.instagram-link {
    position: absolute; /* Position absolutely relative to the container */
    right: 20px; /* Adjust based on padding/desired position */
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37; /* Gold color */
    transition: color 0.3s ease;
    display: flex; /* Align SVG icon */
    align-items: center;
}

.instagram-link:hover {
    color: #ffd700; /* Lighter gold on hover */
}

.instagram-link svg {
    width: 30px; /* Adjust icon size */
    height: 30px;
    display: block; /* Remove any default inline spacing */
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 30px;
    color: #ccc;
}

.price-section {
    margin: 30px 0;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #888;
    margin-right: 20px;
}

.special-price {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #d4af37;
}

.savings {
    font-size: 1.1rem;
    color: #4ade80;
    margin-bottom: 40px;
    font-weight: 500;
}

/* CTA Buttons */
.cta-btn {
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border: none;
    color: #000;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin: 10px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #fff;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.cta-btn.secondary:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.arrow {
    width: 20px;
    height: 20px;
}

.trust-indicators {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.trust-item {
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    text-align: center;
}

.benefits h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 60px;
    color: #fff;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #d4af37;
}

.benefit-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    text-align: center;
}

.video-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative; /* Add position for absolute button */
    display: inline-block; /* Prevent container from taking full width */
}

.treatment-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-caption {
    margin-top: 20px;
    color: #ccc;
    font-style: italic;
}

/* Sound Toggle Button */
.sound-toggle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease; /* Added opacity transition */
    z-index: 10; /* Ensure it's above the video */
    opacity: 1; /* Initially visible */
}

.sound-toggle-btn svg {
    width: 30px;
    height: 30px;
    color: #d4af37; /* Gold color */
}

.sound-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Urgency Section */
.urgency {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.8));
}

.urgency h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 40px;
    color: #d4af37;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px; /* Adjust gap */
    margin: 40px 0;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.time-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    min-width: 80px; /* Adjust min-width */
    backdrop-filter: blur(10px);
    flex: 1; /* Allow units to grow */
    max-width: 100px; /* Limit max width */
}

.time-unit .number {
    display: block;
    font-size: 2.5rem; /* Keep font size */
    font-weight: 700;
    color: #d4af37;
}

.time-unit .label {
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Adjust for smaller screens if needed */
@media (max-width: 768px) {
    .countdown-timer {
        gap: 15px; /* Reduce gap */
    }
    .time-unit {
         min-width: 55px; /* Further reduce min-width */
         max-width: 80px; /* Further reduce max width */
         padding: 15px 10px; /* Adjust padding */
    }
    .time-unit .number {
        font-size: 2rem; /* Reduce number size */
    }
    .time-unit .label {
        font-size: 0.8rem; /* Reduce label size */
    }
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 10px; /* Reduce gap even more */
    }
     .time-unit {
         min-width: 50px; /* Even smaller min-width */
         max-width: 70px; /* Even smaller max-width */
         padding: 12px 8px; /* Adjusted padding */
     }
     .time-unit .number {
        font-size: 1.8rem; /* Even smaller number size */
    }
    .time-unit .label {
        font-size: 0.75rem; /* Even smaller label size */
    }
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1), rgba(0, 0, 0, 0.9));
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.form-section > p {
    color: #ccc;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.lead-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label {
    top: -8px;
    font-size: 0.8rem;
    color: #d4af37;
    background: #000;
    padding: 0 8px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4af37, #ffd700);
    border: none;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loader {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-footer {
    margin-top: 30px;
}

.form-footer p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 10px 0;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.9), rgba(0, 0, 0, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(20px);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 1.5rem;
    color: #d4af37;
}

.modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 30px;
    text-align: center;
}

.modal-body p {
    margin-bottom: 20px;
    color: #ccc;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
}

.contact-btn.sms {
    background: linear-gradient(135deg, #007aff, #0056cc);
    color: #fff;
}

.contact-btn.call {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Fixed Footer CTA */
.fixed-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1500; /* Ensure it's above other content */
    background: rgba(0, 0, 0, 0.9); /* Semi-transparent black */
    backdrop-filter: blur(10px);
    padding: 10px 15px; /* Adjusted padding */
    display: flex;
    justify-content: center; /* Center the buttons */
    gap: 15px; /* Space between buttons */
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.fixed-footer-cta .footer-btn {
    flex-grow: 1; /* Makes buttons take equal width */
    max-width: 180px; /* Slightly reduced max width */
    text-align: center;
    padding: 12px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex; /* To center content vertically and add space */
    align-items: center;
    justify-content: center;
    gap: 8px; /* Space between icon and text */
    border: 1px solid transparent; /* Add a border for definition */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.fixed-footer-cta .footer-btn.sms-btn {
    background: linear-gradient(135deg, #007aff, #0056cc); /* Blue gradient */
    color: #fff;
    border-color: #0056cc;
}

.fixed-footer-cta .footer-btn.call-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52); /* Red gradient */
    color: #fff;
    border-color: #ee5a52;
}

.fixed-footer-cta .footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    filter: brightness(1.1); /* Slightly brighten on hover */
}

/* Add some padding to the bottom of the body or last section to prevent content being hidden */
body {
    padding-bottom: 80px; /* Adjust based on footer height */
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .instagram-link {
        right: 15px; /* Adjust position for smaller screens */
        width: 25px; /* Adjust size for smaller screens */
        height: 25px;
    }
     .instagram-link svg {
        width: 25px; /* Adjust icon size */
        height: 25px;
     }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

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

    .countdown-timer {
        gap: 15px;
    }

    .time-unit {
        min-width: 60px;
        padding: 15px;
    }

    .time-unit .number {
        display: block;
        font-size: 2.5rem;
        font-weight: 700;
        color: #d4af37;
    }

    .lead-form {
        padding: 30px 20px;
    }

    .contact-options {
        gap: 12px;
    }

    .contact-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
     /* Make footer buttons stack on very small screens if needed */
    .fixed-footer-cta {
        flex-direction: row; /* Keep row layout for now, adjust if they become too wide */
        gap: 10px;
        padding: 10px 10px;
    }
    .fixed-footer-cta .footer-btn {
         font-size: 0.9rem;
         padding: 10px 8px; /* Reduced padding */
         max-width: none; /* Allow them to fill space */
    }
}

@media (max-width: 480px) {
    .instagram-link {
        right: 10px; /* Further adjust position */
        width: 20px; /* Further adjust size */
        height: 20px;
    }
     .instagram-link svg {
        width: 20px; /* Adjust icon size */
        height: 20px;
     }
    .fixed-footer-cta {
        padding: 10px 10px;
        gap: 8px; /* Reduce gap further */
    }
    .fixed-footer-cta .footer-btn {
        font-size: 0.85rem; /* Slightly smaller font */
        padding: 10px 6px; /* Further reduced padding */
    }
    body {
        padding-bottom: 70px; /* Adjust for potentially smaller footer */
    }
}