/* Import Google Fonts - Cinzel (Luxury Serif) and Outfit (Modern Sans-Serif) */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #050505;
}
::-webkit-scrollbar-thumb {
    background: #c5a059;
    border-radius: 5px;
    border: 2px solid #050505;
}
::-webkit-scrollbar-thumb:hover {
    background: #a17c30;
}

/* Color Variables & Design Tokens - Ultra Luxury Gold & Dark Charcoal */
:root {
    --bg-main: #050505;
    --bg-sec: #0c0c0c;
    --bg-card: rgba(18, 18, 18, 0.7);
    --gold: #d4af37;
    --gold-bright: #f3e5ab;
    --gold-dark: #8a6d25;
    --gold-glow: rgba(212, 175, 55, 0.2);
    --gold-luxury: linear-gradient(135deg, #c5a059 0%, #fbf5b7 50%, #a17c30 100%);
    --gold-shimmer: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --border-color: rgba(212, 175, 55, 0.15);
    --border-hover: rgba(212, 175, 55, 0.45);
    --font-title: 'Cinzel', serif;
    --font-primary: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 16px;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html, body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-primary);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-bright);
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--text-main);
}

.gold-text {
    background: var(--gold-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-padding {
    padding: 120px 5% 100px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 35px;
    transition: var(--transition);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: var(--gold-shimmer);
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
}

.glass-card:hover::before {
    left: 150%;
}

.glass-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.12);
}

/* Navigation Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 5%;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 5%;
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

header.scrolled .logo-image {
    height: 48px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-luxury);
    transition: var(--transition);
}

.nav-item a:hover {
    color: var(--gold);
}

.nav-item a:hover::after {
    width: 100%;
}

.nav-item.active a {
    color: var(--gold);
}

.nav-item.active a::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-luxury);
    color: #000;
    border: none;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.65);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold-glow);
    color: var(--gold-bright);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.15);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Burger Mobile Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}

.burger-bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(5, 5, 5, 0.75), rgba(5, 5, 5, 0.92)), url('assets/model-hero.webp') center/cover no-repeat;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 25px;
    display: block;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.hero-descr {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Floating Lights */
.glow-spot {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, rgba(5, 5, 5, 0) 75%);
    z-index: 0;
    pointer-events: none;
}
.glow-top-right { top: -100px; right: -100px; }
.glow-bottom-left { bottom: -150px; left: -150px; }

/* Image Grid Containers */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }

/* Home / About Details with Images */
.about-section {
    background-color: var(--bg-sec);
    position: relative;
}

.about-img-container {
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    position: relative;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img-container:hover .about-img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Income Cards */
.income-calculator {
    background-color: var(--bg-main);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.income-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.income-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.income-header h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--gold);
}

.income-sum {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-main);
}

.income-sum span {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-muted);
}

.income-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 35px;
}

.income-list li {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.income-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

/* Steps to Success Section */
.steps-section {
    background-color: var(--bg-sec);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold-luxury);
    color: #000;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--gold-bright);
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 300;
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
}

/* Testimonials / Model Reviews */
.testimonials-section {
    background-color: var(--bg-main);
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-text {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 1.7;
    position: relative;
}

.review-text::before {
    content: '"';
    font-size: 60px;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: -30px;
    left: -10px;
    font-family: serif;
}

.review-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    object-fit: cover;
}

.review-author-name {
    font-size: 15px;
    font-weight: 600;
}

.review-author-role {
    font-size: 12px;
    color: var(--text-muted);
}

/* FAQ Accordion Styles */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 30px;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    border-top: 1px solid transparent;
}

.faq-answer p {
    padding-top: 10px;
    padding-bottom: 25px;
    margin: 0;
}

.faq-item.active .faq-answer {
    border-top-color: rgba(255, 255, 255, 0.05);
}

.faq-toggle-icon {
    font-size: 18px;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 4/3;
    background: #111;
}

.gallery-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f1f1f 0%, #111111 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    font-weight: 500;
}

.gallery-image-placeholder i {
    font-size: 32px;
    margin-bottom: 10px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 18px;
    text-transform: uppercase;
}

.gallery-overlay p {
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
    }
}

/* Contact / Quick Apply */
.apply-section {
    background-color: var(--bg-sec);
    position: relative;
}

.apply-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.apply-info h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.apply-info p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.apply-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.apply-meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.apply-meta-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold-glow);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid var(--border-color);
}

.apply-meta-text h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.apply-meta-text p {
    font-size: 16px;
    color: var(--text-main);
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(5, 5, 5, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-main);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
}

.form-input:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    cursor: pointer;
}

.form-checkbox input {
    margin-top: 5px;
    accent-color: var(--gold);
}

.form-checkbox span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Footer */
footer {
    background-color: #030303;
    border-top: 1px solid var(--border-color);
    padding: 80px 5% 40px 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-sec);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold-luxury);
    color: #000;
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile responsive media queries */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 80px 5% 60px 5%;
    }
    .hero h1 {
        font-size: 38px;
    }
    .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .apply-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        padding: 40px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.9);
        transition: var(--transition);
        border-left: 1px solid var(--border-color);
        z-index: 1000;
    }
    .nav-menu.open {
        right: 0;
    }
    .burger-menu {
        display: flex;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Custom Language Dropdown - Deluxe Style */
.custom-translator {
    position: relative;
    display: inline-block;
    margin-right: 20px;
}

.translate-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--gold);
    color: var(--text-main);
    padding: 8px 16px;
    font-size: 12px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.translate-btn:hover {
    background: var(--gold-glow);
    border-color: var(--gold-bright);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.translate-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.9);
    padding: 10px 0;
    min-width: 150px;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.translate-dropdown.show {
    display: block;
    animation: fadeInDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.translate-dropdown a {
    color: var(--text-muted);
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.translate-dropdown a:hover {
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.08);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    top: 0 !important;
}

/* Floating WhatsApp badge styling */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 99999;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: 0.4;
    z-index: -1;
    animation: pulseWhatsApp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background-color: #20ba5a;
    color: #ffffff;
}

.floating-whatsapp .tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #0c0c0c;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    padding: 8px 12px;
    position: absolute;
    right: 75px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.6);
    border: 1px solid #d4af37;
    pointer-events: none;
    white-space: nowrap;
    transform: translateX(10px);
}

.floating-whatsapp:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulseWhatsApp {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.35);
        opacity: 0;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}



/* GDPR Cookie Banner */
#gdpr-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999 !important;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid var(--gold);
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    backdrop-filter: blur(15px);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    transition: transform 0.4s ease;
}

#accept-cookies-btn {
    background: #c5a059 !important;
    border: none !important;
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

#accept-cookies-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--gold-glow);
    filter: brightness(1.15);
}

#accept-cookies-btn:active {
    transform: translateY(0);
}

/* Scroll Reveal Animations (Luxury Standard) */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* Mobile Sticky CTA Bar (Conversion Optimizer) */
#mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(10, 10, 10, 0.96);
    border-top: 1px solid var(--border-color);
    display: none;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    padding: 10px 15px;
    box-sizing: border-box;
    z-index: 99999;
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.8);
}
#mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.05em;
    height: 100%;
    transition: var(--transition);
}
#mobile-sticky-cta .m-cta-wa {
    background: #25d366;
    color: #000;
}
#mobile-sticky-cta .m-cta-wa:hover {
    background: #20ba59;
}
#mobile-sticky-cta .m-cta-apply {
    background: var(--gold-luxury);
    color: #000;
}
#mobile-sticky-cta .m-cta-apply:hover {
    background: var(--gold-bright);
}
.homepage-calc-result {
    text-align: center;
    border-left: 1px solid var(--border-color);
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

@media (max-width: 768px) {
    #mobile-sticky-cta {
        display: grid;
    }
    body {
        padding-bottom: 60px; /* Offset to prevent content overlap */
    }
    .header-cta {
        display: none !important; /* Hide massive whatsapp button in header to prevent horizontal scroll */
    }
    #gdpr-cookie-banner {
        bottom: 60px !important; /* Push cookie banner above mobile sticky bar */
        padding: 15px !important;
    }
    .homepage-calc-result {
        border-left: none !important;
        border-top: 1px solid var(--border-color) !important;
        padding-left: 0 !important;
        padding-top: 30px !important;
        margin-top: 20px !important;
    }
    .income-calculator .glass-card {
        padding: 20px !important;
    }
    /* Mobile Gallery Layout: show description box below image instead of overlap */
    .gallery-item {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        aspect-ratio: auto !important;
        overflow: visible !important;
    }
    .gallery-item img {
        height: auto !important;
        aspect-ratio: 4/3 !important;
    }
    .gallery-overlay {
        position: relative !important;
        transform: translateY(0) !important;
        background: var(--bg-sec) !important;
        padding: 15px !important;
        border-top: 1px solid var(--border-color) !important;
    }
    
    /* Mobile Stacked Comparison Cards */
    .table-responsive {
        display: none !important;
    }
    .comparison-mobile-cards {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin-top: 15px !important;
        width: 100% !important;
    }
    .comp-card {
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid var(--border-color) !important;
        border-radius: var(--border-radius) !important;
        padding: 15px !important;
        text-align: left !important;
    }
    .comp-card-title {
        font-family: var(--font-title) !important;
        color: var(--gold) !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding-bottom: 8px !important;
        margin-bottom: 12px !important;
        letter-spacing: 0.05em !important;
    }
    .comp-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }
    .comp-row:last-child {
        margin-bottom: 0 !important;
    }
    .comp-label {
        color: var(--text-muted) !important;
        font-weight: 500 !important;
    }
    .comp-val {
        font-weight: 600 !important;
        text-align: right !important;
        color: var(--text-main) !important;
    }
    .comp-val.deluxe {
        color: var(--gold-bright) !important;
    }
    
    /* Push floating WhatsApp widget above mobile sticky CTA bar */
    .floating-whatsapp {
        bottom: 80px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 26px !important;
    }
}

.comparison-mobile-cards {
    display: none;
}
