/* --- CSS Variables & Theming --- */
:root {
    /* Base Colors - Dark Theme (Default) */
    --bg-color: #0F0F0F;
    --text-primary: #F5F5F5;
    --text-secondary: #AAAAAA;
    
    /* Brand Colors */
    --gold-primary: #D4AF37;
    --gold-light: #E8C547;
    --bronze-dark: #8B4513;
    --purple-sophisticated: #6B3FA0;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --hero-text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

html:not(.dark) {
    /* Light Theme Overrides */
    --bg-color: #F5F5F5;
    --text-primary: #0F0F0F;
    --text-secondary: #555555;
    
    --gold-primary: #B8860B; /* DarkGoldenRod for better contrast */
    --gold-light: #D4AF37;
    --hero-text-shadow: none;
    
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(212, 175, 55, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

html:not(.dark) .bg-overlay {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95));
}

html:not(.dark) .time-box {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(212, 175, 55, 0.4);
}

html:not(.dark) .footer-bottom {
    background: rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Background Elements */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.15) 0%, rgba(15, 15, 15, 0) 60%);
    z-index: -2;
    pointer-events: none;
}

.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.shape {
    position: absolute;
    filter: blur(100px);
    opacity: 0.3;
    border-radius: 50%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gold-primary);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--purple-sophisticated);
    bottom: -150px;
    left: -150px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--bronze-dark);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gold-text {
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.bg-overlay {
    background: linear-gradient(to right, rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9));
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.mt-4 { margin-top: 2rem; }

/* Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
    text-align: center;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
    color: #0F0F0F;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

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

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
}

.btn-glow {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }
    to { box-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 10px rgba(212, 175, 55, 0.5) inset; }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

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

/* --- Header & Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all var(--transition-normal);
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(15, 15, 15, 0.85); /* Slightly darker for readability */
}

html:not(.dark) .header.scrolled {
    background: rgba(245, 245, 245, 0.85);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-icon {
    color: var(--gold-primary);
    font-size: 1.8rem;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    transition: color var(--transition-fast);
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

html:not(.dark) .theme-toggle .dark-icon { display: block; }
html:not(.dark) .theme-toggle .light-icon { display: none; }
html.dark .theme-toggle .dark-icon { display: none; }
html.dark .theme-toggle .light-icon { display: block; color: var(--gold-primary); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

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

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

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
    text-shadow: var(--hero-text-shadow);
}

.hero-ctas {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    padding: 15px;
    border-radius: 30px;
    overflow: visible; /* To allow glow and badges to show */
    transition: transform var(--transition-slow);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: -5px; right: -5px; bottom: -5px; left: -5px;
    background: linear-gradient(135deg, var(--gold-light), var(--purple-sophisticated));
    z-index: -1;
    border-radius: 35px;
    filter: blur(20px);
    opacity: 0.5;
    transition: opacity var(--transition-normal);
}

.image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
}

.image-wrapper:hover::before {
    opacity: 0.8;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.glass-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--gold-primary);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-weight: 600;
    color: var(--text-primary);
    animation: float 4s ease-in-out infinite;
}

.glass-badge i {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

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

/* --- Promo Banner --- */
.promo-banner {
    margin: -50px 20px 50px;
    padding: 40px;
    border-color: var(--purple-sophisticated);
    z-index: 10;
    position: relative;
}

.accent-panel {
    background: linear-gradient(135deg, rgba(107, 63, 160, 0.1), rgba(212, 175, 55, 0.05));
}

.promo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.promo-text h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.promo-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    min-width: 65px;
}

.time-box span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.time-box small {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-top: -15px;
}

/* --- Services / Plans --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px 30px;
    position: relative;
    transition: transform var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.plan-desc {
    color: var(--text-secondary);
    margin-bottom: 25px;
    min-height: 48px;
}

.price {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
}

.price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    margin-right: 5px;
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.price .period {
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.features-list li i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.features-list li.disabled {
    color: var(--text-secondary);
    opacity: 0.5;
}

.features-list li.disabled i {
    color: var(--text-secondary);
}

.popular {
    border-color: var(--gold-primary);
    transform: scale(1.05);
    z-index: 2;
}

.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: #0F0F0F;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium {
    border-color: var(--purple-sophisticated);
}

/* --- Features (Why Us) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.feature-card {
    padding: 30px;
    text-align: center;
    transition: transform var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 1px solid var(--glass-border);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.gallery-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.gallery-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}

.gallery-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/5;
    width: 280px;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

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

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 15px;
    right: 15px;
    padding: 20px;
    transition: bottom var(--transition-normal);
    opacity: 0;
}

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

.gallery-item:hover .gallery-overlay {
    bottom: 15px;
    opacity: 1;
}

.gallery-overlay p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 1rem;
}

.client-name {
    font-weight: 700;
    color: var(--gold-primary);
}

/* --- Metrics Section --- */
.metrics-section {
    padding: 60px 0;
}

.metrics-container {
    display: flex;
    justify-content: space-around;
    padding: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 40px 30px;
}

.stars {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
}

.client-info h4 {
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-question i {
    transition: transform var(--transition-normal);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
}

/* --- Booking Form --- */
.form-container {
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.form-content h2 {
    font-size: 2.5rem;
}

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

.form-benefits p {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 500;
}

.form-benefits i {
    margin-right: 10px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

html:not(.dark) .form-group input,
html:not(.dark) .form-group select {
    background: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    accent-color: var(--gold-primary);
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: -10px;
}

/* --- Footer --- */
.footer {
    padding: 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-top: 60px;
}

.brand-col p {
    color: var(--text-secondary);
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold-primary);
    color: #0F0F0F;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.links-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.links-col ul li a:hover {
    color: var(--gold-primary);
}

.contact-col ul li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-col ul li i {
    color: var(--gold-primary);
    margin-top: 5px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

html:not(.dark) .footer-bottom {
    background: rgba(255, 255, 255, 0.5);
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.7;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* --- SEO Links Section --- */
.seo-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 15px;
    font-size: 0.95rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.seo-link-item {
    color: var(--gold-primary);
    text-decoration: none;
    transition: 0.3s;
    font-weight: 700;
    display: inline-block;
}

.seo-link-item:hover {
    color: var(--gold-light);
}

@media (min-width: 768px) {
    .seo-link-item:not(:last-child)::after {
        content: "|";
        color: var(--text-secondary);
        margin-left: 15px;
        font-weight: 400;
        display: inline-block;
    }
}

@media (max-width: 767px) {
    .seo-links-container {
        flex-direction: column;
        gap: 12px;
    }
    .seo-link-item {
        width: 100%;
        padding: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 8px;
        font-size: 1rem;
    }
    html:not(.dark) .seo-link-item {
        background: rgba(0, 0, 0, 0.03);
    }
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .popular { transform: scale(1); }
    .popular:hover { transform: translateY(-10px); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .form-container { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    
    /* Header & Nav */
    .logo { position: relative; z-index: 1001; }
    .logo img { height: 90px !important; }
    .header-content { padding: 5px 0; }
    
    .menu-toggle { 
        display: block; 
        position: relative;
        z-index: 1001;
        padding: 5px;
    }
    
    .header-actions {
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: left var(--transition-normal);
        z-index: 1000;
        padding-top: 80px; /* Space for the header */
    }
    .nav-links.active { left: 0; }
    .nav-links a { font-size: 1.5rem; }
    
    /* Hero */
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 35px; }
    .hero-ctas { justify-content: center; flex-wrap: wrap; gap: 15px; }
    .btn { font-size: 0.85rem; padding: 12px 20px; white-space: normal; line-height: 1.3; }
    .badge { font-size: 0.75rem; white-space: normal; line-height: 1.4; }
    .glass-badge { bottom: 10px; left: 10px; padding: 10px 15px; font-size: 0.85rem; white-space: normal; line-height: 1.3; text-align: center; }
    
    /* Promo */
    .promo-container { flex-direction: column; text-align: center; }
    .promo-timer { justify-content: center; }
    
    /* Others */
    .pricing-grid, .pricing-grid-2, .features-grid, .features-grid-3, .testimonials-grid, .footer-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    .form-row { grid-template-columns: 1fr; }
    .metric { margin-bottom: 20px; }
}
