/* ============================================
   TANZANIA LUXURY MOBILE MASSAGE
   Awwwards-Level Luxury Website Stylesheet
   Designed for Elementor Migration
   ============================================ */

/* CSS Variables */
:root {
    --color-bg: #0a0a0a;
    --color-bg-alt: #0f0f0f;
    --color-surface: #141414;
    --color-surface-light: #1a1a1a;
    --color-text: #f5f0e8;
    --color-text-muted: #a89f91;
    --color-text-dim: #6b6560;
    --color-gold: #c9a96e;
    --color-gold-light: #e0c99a;
    --color-gold-dark: #a08050;
    --color-whatsapp: #25D366;
    --color-call: #c9a96e;
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --section-padding: clamp(80px, 12vh, 160px);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

::selection {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* Custom Cursor */
.cursor {
    width: 12px;
    height: 12px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s var(--transition-smooth), 
                background 0.15s ease,
                width 0.3s var(--transition-bounce),
                height 0.3s var(--transition-bounce);
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor.hover {
    width: 48px;
    height: 48px;
    background: rgba(201, 169, 110, 0.1);
    border-color: var(--color-gold-light);
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 3px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

.display-xl {
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
}

.display-lg {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
}

.display-md {
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.body-lg {
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.7;
}

.label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

/* Links & Buttons */
a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    position: relative;
    overflow: hidden;
    transition: color 0.5s var(--transition-smooth);
    cursor: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    transform: translateX(-101%);
    transition: transform 0.5s var(--transition-smooth);
    z-index: -1;
}

.btn:hover {
    color: var(--color-bg);
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-filled {
    background: var(--color-gold);
    color: var(--color-bg);
}

.btn-filled::before {
    background: var(--color-bg);
}

.btn-filled:hover {
    color: var(--color-gold);
}

.btn-sm {
    padding: 12px 28px;
    font-size: 0.75rem;
}

/* Magnetic Button Effect */
.magnetic {
    transition: transform 0.3s var(--transition-smooth);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.5s ease, padding 0.5s ease, backdrop-filter 0.5s ease;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 16px 40px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

.nav-logo span {
    color: var(--color-text);
    font-size: 0.9rem;
    display: block;
    letter-spacing: 0.3em;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.4s var(--transition-smooth);
}

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

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

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

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: none;
    padding: 8px;
}

.nav-mobile-toggle span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--color-gold);
    transition: all 0.4s var(--transition-smooth);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.6s var(--transition-smooth);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--color-gold);
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 40px;
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 2rem;
    cursor: none;
}

.mobile-menu-cta {
    margin-top: 20px;
    padding: 16px 40px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
}

.mobile-menu-cta:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: brightness(0.6) saturate(0.8);
    transform: scale(1.1);
    transition: transform 10s ease;
}

.hero:hover .hero-bg img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--transition-smooth) 0.3s forwards;
}

.hero-title {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s var(--transition-smooth) 0.5s forwards;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: block;
    transform: translateY(100%);
    animation: slideUp 1s var(--transition-smooth) 0.6s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--transition-smooth) 0.9s forwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--transition-smooth) 1.1s forwards;
    margin-bottom: 80px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition-smooth) 1.5s forwards;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Section Base */
.section {
    padding: var(--section-padding) 40px;
    position: relative;
}

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

.section-header .label {
    margin-bottom: 20px;
    display: inline-block;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    color: var(--color-text-muted);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s var(--transition-smooth), 
                transform 1s var(--transition-smooth);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.5;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(30%) brightness(0.8);
    transition: filter 0.6s ease, transform 0.6s ease;
}

.about-image:hover img {
    filter: grayscale(0%) brightness(0.9);
    transform: scale(1.02);
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-dim);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--color-surface);
    border: 1px solid rgba(201, 169, 110, 0.1);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s ease, transform 0.5s var(--transition-smooth);
    cursor: none;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--transition-smooth);
}

.service-card:hover {
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-8px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: background 0.4s ease, color 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--color-gold);
    color: var(--color-bg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.service-price span {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    font-family: var(--font-body);
}

.service-duration {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    letter-spacing: 0.1em;
}

/* Process Section */
.process-section {
    background: var(--color-surface);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    padding: 48px 36px;
    border-right: 1px solid rgba(201, 169, 110, 0.1);
    position: relative;
    transition: background 0.4s ease;
}

.process-step:last-child {
    border-right: none;
}

.process-step:hover {
    background: rgba(201, 169, 110, 0.03);
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(201, 169, 110, 0.15);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.process-step:hover .step-number {
    color: rgba(201, 169, 110, 0.3);
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 40px;
    background: var(--color-surface);
    border: 1px solid rgba(201, 169, 110, 0.08);
    transition: all 0.5s var(--transition-smooth);
}

.value-card:hover {
    border-color: rgba(201, 169, 110, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* How It Works - Service Types */
.service-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-type {
    background: var(--color-surface);
    padding: 48px;
    border: 1px solid rgba(201, 169, 110, 0.1);
    text-align: center;
    transition: all 0.5s var(--transition-smooth);
}

.service-type:hover {
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-4px);
}

.service-type-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.service-type h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-type p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-type .time {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 110, 0.1);
    color: var(--color-gold);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Testimonials */
.testimonials-section {
    background: var(--color-surface);
    overflow: hidden;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    text-align: center;
    padding: 0 40px;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    margin-top: 4px;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none;
    transition: color 0.3s ease;
}

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

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--color-gold);
    transition: transform 0.4s var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.open .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--transition-smooth), 
                padding 0.5s var(--transition-smooth);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 28px;
}

.faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.7;
    padding-right: 40px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 32px;
}

.contact-info > p {
    color: var(--color-text-muted);
    margin-bottom: 48px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--color-gold);
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--color-gold);
}

.contact-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--color-surface);
    padding: 48px;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-dim);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 0;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-gold);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    cursor: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a96e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
}

.form-group select option {
    background: var(--color-surface);
    color: var(--color-text);
}

/* Footer */
.footer {
    background: var(--color-surface);
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.footer-brand .logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
}

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

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--color-gold);
}

.footer-column a:hover::after {
    width: 100%;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-dim);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.4s var(--transition-bounce);
    position: relative;
    cursor: none;
}

.fab:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.fab-whatsapp {
    background: var(--color-whatsapp);
}

.fab-call {
    background: var(--color-call);
}

.fab-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-surface-light);
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.fab:hover .fab-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(-4px);
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: 10001;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s var(--transition-smooth);
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

/* Parallax Image Container */
.parallax-container {
    overflow: hidden;
    position: relative;
}

.parallax-container img {
    will-change: transform;
}

/* Text Scramble Effect placeholder */
.scramble-text {
    display: inline-block;
}

/* Decorative Elements */
.gold-line {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    margin: 24px 0;
}

.gold-line-center {
    margin: 24px auto;
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee span {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(201, 169, 110, 0.3);
    padding: 0 40px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.7);
    transition: all 0.6s var(--transition-smooth);
}

.gallery-item:hover img {
    filter: grayscale(0%) brightness(0.9);
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.5s var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-overlay h4 {
    font-size: 1.1rem;
    color: var(--color-gold);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-section h2 {
    margin-bottom: 24px;
}

.cta-section p {
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.7);
    }
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-types {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-step:nth-child(2) {
        border-right: none;
    }

    .process-step:nth-child(3),
    .process-step:nth-child(4) {
        border-top: 1px solid rgba(201, 169, 110, 0.1);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }

    .nav-links,
    .nav-cta .btn {
        display: none;
    }

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

    .section {
        padding: 60px 24px;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 24px;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    }

    .process-step:last-child {
        border-bottom: none;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .fab-tooltip {
        display: none;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
