:root {
    --color-bg: #050505;
    --color-bg-alt: #111111;
    --color-primary: #ECBA1E;
    --color-primary-dark: #b89012;
    --color-text: #E0E0E0;
    --color-text-muted: #A0A0A0;
    --color-white: #FFFFFF;
    --color-black: #000000;
    
    --font-main: 'Outfit', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) var(--color-bg);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 6px;
    border: 3px solid var(--color-bg); /* Creates a padding effect inside the track */
}

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

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

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

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.bg-darker { background-color: var(--color-bg-alt); }

h1, h2, h3, h4 {
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

p {
    margin-bottom: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn i {
    font-size: 1.3rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #f5d15f);
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(236, 186, 30, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 186, 30, 0.4);
}

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

.btn-outline:hover {
    background: rgba(236, 186, 30, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.2rem;
}

/* Header */
.header {
    padding: 24px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 100;
}

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

.header-social {
    display: flex;
    gap: 20px;
}

.header-social a {
    color: var(--color-text);
    font-size: 1.5rem;
    transition: var(--transition);
}

.header-social a:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 12px 24px;
    font-size: 1rem;
}

.logo {
    height: 60px;
    object-fit: contain;
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* 1. Hero */
.hero {
    min-height: 100vh;
    height: 100vh; /* Enforces the 100vh requested by the user */
    display: flex;
    align-items: flex-end; /* Pushes content towards the bottom */
    padding-top: 140px; /* Larger space below the header */
    padding-bottom: 50px; /* Space from the bottom edge */
    position: relative;
    overflow: hidden;
}

/* Background glow */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236,186,30,0.15) 0%, rgba(5,5,5,0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* roughly 60x40 */
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    background: linear-gradient(to right, #FFF, var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.hero-text .subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    list-style: none;
    margin-bottom: 30px;
}

.hero-benefits li {
    font-size: 0.95rem;
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.02);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.hero-benefits li:hover {
    background: rgba(236, 186, 30, 0.05);
    border-color: rgba(236, 186, 30, 0.2);
    transform: translateY(-2px);
}

.hero-benefits i {
    margin-top: 2px;
    background: rgba(236, 186, 30, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    perspective: 1000px;
}

.glow-circle {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236,186,30,0.15) 0%, rgba(5,5,5,0) 70%);
    border: 1px solid rgba(236,186,30,0.1);
    animation: pulse 4s infinite alternate;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 70vh;
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(236, 186, 30, 0.2);
    border-color: rgba(236, 186, 30, 0.4);
}

.hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .hero-img {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    transition: var(--transition);
    text-align: left;
}

.overlay-address {
    display: flex;
    align-items: center;
    gap: 12px;
}

.overlay-address i {
    font-size: 1.5rem;
}

.overlay-address div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.overlay-address span {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--color-white);
}

.overlay-address small {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.overlay-link-simple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 12px;
}

.overlay-link-simple:hover {
    color: var(--color-white);
    gap: 12px; /* Slight slide effect on hover */
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(236, 186, 30, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.benefit-card .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(236, 186, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--color-primary);
    transition: var(--transition);
}

.benefit-card:hover .icon-wrapper {
    background: var(--color-primary);
    color: var(--color-black);
}

/* 3. How it Works (Horizontal) */
.steps-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(236, 186, 30, 0.3);
    background: rgba(236, 186, 30, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.step-card .step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(236, 186, 30, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition);
}

.step-card:hover .step-number {
    color: rgba(236, 186, 30, 0.4);
    transform: scale(1.1);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.social-proof p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Institutional Video */
.institutional-video {
    padding: 80px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.video-text p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.video-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.video-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 500px;
    background: radial-gradient(circle, rgba(236,186,30,0.15) 0%, rgba(5,5,5,0) 70%);
    z-index: -1;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-player-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.1);
}

.vertical-video {
    width: 100%;
    display: block;
    object-fit: cover;
}

.player-watermark {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: auto;
    z-index: 5;
    opacity: 0.9;
    pointer-events: none;
}

.player-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.player-overlay:hover {
    background: rgba(0,0,0,0.4);
}

.pulse-play-btn {
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    color: var(--color-black);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(236, 186, 30, 0.7);
    animation: pulse-play 1.5s infinite cubic-bezier(0.66, 0, 0, 1);
    transition: transform 0.2s ease;
}

.pulse-play-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse-play {
    to {
        box-shadow: 0 0 0 20px rgba(236, 186, 30, 0);
    }
}

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

/* 5. Booking */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.whatsapp-direct {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px dashed rgba(236, 186, 30, 0.3);
}

.whatsapp-direct h3 {
    font-size: 1.3rem;
}

.contact-info-wrapper {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.contact-info-wrapper h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(236, 186, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-list li:hover .contact-icon {
    background: var(--color-primary);
    color: var(--color-black);
    transform: scale(1.1);
}

.contact-details strong {
    display: block;
    color: var(--color-white);
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

.contact-link {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.map-wrapper-full {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    height: 100%;
    min-height: 400px;
    background: rgba(255,255,255,0.02);
}

.map-wrapper-full iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.directions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.directions-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    height: 100%;
    min-height: 400px;
    background: rgba(255,255,255,0.02);
}

.directions-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.directions-alerts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.alert-box {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
}

.alert-red {
    border: 1px solid rgba(255, 75, 75, 0.2);
    border-left: 4px solid #ff4b4b;
    background: linear-gradient(90deg, rgba(255,75,75,0.05) 0%, rgba(255,75,75,0) 100%);
}

.alert-green {
    border: 1px solid rgba(75, 255, 125, 0.2);
    border-left: 4px solid #4bff7d;
    background: linear-gradient(90deg, rgba(75,255,125,0.05) 0%, rgba(75,255,125,0) 100%);
}

.alert-red .alert-icon {
    background: #ff4b4b;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.alert-green .alert-icon {
    background: #4bff7d;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.alert-content h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.alert-red .alert-content h4 {
    color: #ff4b4b;
}

.alert-green .alert-content h4 {
    color: #4bff7d;
}

.alert-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.alert-content p strong {
    color: var(--color-white);
}

/* 6. FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 200px;
}

/* 7. Final CTA */
.final-cta {
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(236,186,30,0.05) 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(236,186,30,0.2) 0%, rgba(5,5,5,0) 70%);
    z-index: -1;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

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

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: var(--color-black);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

footer p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-agency {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.weezy-logo {
    height: 20px;
    display: block;
    transition: var(--transition);
}

.weezy-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 34px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4);
    animation: none;
}

@keyframes float-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 992px) {
    .hero {
        height: auto;
        padding-top: 130px;
        padding-bottom: 60px;
    }

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

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

    .video-benefits li {
        justify-content: center;
    }
    
    .hero-benefits li {
        justify-content: center;
    }
    
    .hero-image {
        display: block; /* Show on mobile but adjust */
        margin-top: 40px;
        perspective: none;
    }
    
    .image-wrapper {
        transform: none;
    }
    
    .hero-benefits {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .directions-grid, .directions-alerts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .header-cta {
        display: none; /* Hide CTA button on mobile header */
    }

    .header-social {
        display: flex;
        gap: 15px;
    }
    
    .header-social a {
        font-size: 1.3rem;
    }

    .hero-benefits {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .hero-benefits li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px 10px;
        font-size: 0.85rem;
        gap: 10px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    h2 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }

    .steps-horizontal {
        grid-template-columns: 1fr;
    }
}
