/* style.css */
 /* Add the cursor and animation styles here */
        :root {
            --bg: #0b0b10;
            --fg: #e6e6f0;
            --muted: #a6a6b3;
            --accent: 200;
            --glass: rgba(255,255,255,.06);
            --border: rgba(255,255,255,.10);
            --primary-color: #8B6F47;
            --secondary-color: #1A1A1A;
            --accent-color: #D4AF37;
            --light-color: #F5F5F5;
            --white: #FFFFFF;
            --black: #000000;
            --text-color: #333333;
            --background-color: #FFFFFF;
            --card-bg: #FFFFFF;
            --border-color: rgba(139, 111, 71, 0.2);
            --header-bg: rgba(26, 26, 26, 0.95);
            --footer-bg: #0a2540;
            --transition: all 0.5s ease;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --section-padding: 80px 0;
        }
        
        /* Hide default cursor */
        body {
            cursor: none;
            overflow-x: hidden;
            position: relative;
            font-family: 'Montserrat', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: var(--background-color);
            transition: background-color 0.5s ease, color 0.5s ease;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--black);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Background effects */
        .bg-effects {
            position: fixed;
            inset: 0;
            z-index: -3;
            overflow: hidden;
            pointer-events: none;
        }
        
        .bg-grad {
            position: absolute;
            inset: -30% -30%;
            filter: blur(120px) saturate(1.2);
            opacity: .22;
            animation: spin 60s linear infinite;
            background: conic-gradient(from 0deg, 
                hsl(var(--accent),90%,55%), 
                hsl(calc(var(--accent)+60),90%,55%), 
                hsl(calc(var(--accent)+120),90%,55%), 
                hsl(calc(var(--accent)+180),90%,55%), 
                hsl(calc(var(--accent)+240),90%,55%), 
                hsl(calc(var(--accent)+300),90%,55%), 
                hsl(var(--accent),90%,55%));
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            filter: blur(40px);
            animation: float 15s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        /* Cursor styles */
        .cursorGlow {
            position: fixed;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 101;
            mix-blend-mode: plus-lighter;/* darken */
            background: black;
            box-shadow: 0 0 40px 12px hsl(var(--accent),95%,60%);
            transform: translate(-50%,-50%) scale(1);
            transition: transform .15s ease;
        }
        
        .cursorRing {
            position: fixed;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            pointer-events: none;
            z-index: 101;
            border: solid rgb(114 114 114 / 80%);
            mix-blend-mode: difference;
            transform: translate(-50%,-50%);
            animation: ringSpin 1.8s linear infinite;
        }
        
        @keyframes ringSpin {
            to { transform: translate(-50%,-50%) rotate(360deg); }
        }
        
        canvas.trail {
            position: fixed;
            inset: 0;
            z-index: 100;
            pointer-events: none;
            mix-blend-mode: plus-lighter;
            opacity: .85;
        }
        
        /* 3D Card effect */
        .service-card-3d {
            transform-style: preserve-3d;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        
        .service-card-3d:hover {
            transform: perspective(900px) rotateX(5deg) rotateY(5deg) translateZ(20px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.25);
        }
        
        /* Cursor Styles */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--accent-color);
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9999;
            transition: width 0.3s, height 0.3s;
        }

        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 1px solid var(--accent-color);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9998;
            opacity: 0.5;
            transition: transform 0.3s, opacity 0.3s;
        }

        .cursor.hidden, .cursor-follower.hidden {
            opacity: 0;
        }

        .cursor.active {
            width: 30px;
            height: 30px;
            opacity: 0.7;
        }

        .cursor-follower.active {
            transform: translate(-50%, -50%) scale(1.5);
            opacity: 0.3;
        }

        .cursor.click {
            transform: translate(-50%, -50%) scale(0.8);
            background: var(--primary-color);
        }

        .cursor-follower.click {
            transform: translate(-50%, -50%) scale(2);
            border-color: var(--primary-color);
            opacity: 0.2;
        }

        /* Particle Canvas */
        #particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 9997;
        }

        /* Header */
        .luxury-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 0;
            background-color: var(--header-bg);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: var(--transition);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 22px;
            font-weight: 600;
            color: var(--accent-color);
            z-index: 1001;
        }

        .logo img {
            width: 45px;
            height: 45px;
            margin-right: 10px;
        }

        .main-nav ul {
            display: flex;
        }

        .main-nav li {
            margin: 0 15px;
            position: relative;
        }

        .nav-link {
            color: var(--white);
            font-weight: 500;
            letter-spacing: 1px;
            font-size: 14px;
            transition: var(--transition);
            padding: 5px 0;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--accent-color);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .header-cta .btn {
            margin-left: 20px;
        }

        .mobile-menu-btn {
            color: var(--white);
            font-size: 24px;
            cursor: pointer;
            display: none;
            z-index: 1001;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 25px;
            border-radius: 0;
            font-weight: 500;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            border: 2px solid transparent;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: var(--secondary-color);
            border-color: var(--accent-color);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--accent-color);
        }

        /* Hero Section */
        .luxury-hero {
            height: 100vh;
            min-height: 600px;
            position: relative;
            background: url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.5) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            padding: 0 20px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-content h1 {
            font-size: clamp(36px, 6vw, 72px);
            color: var(--white);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content h1 span {
            color: var(--accent-color);
            display: block;
        }

        .hero-content .subtitle {
            font-size: clamp(16px, 2vw, 18px);
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 30px;
            font-weight: 300;
            letter-spacing: 1px;
        }

        /* Feature Cards */
        .luxury-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .feature-card {
            text-align: center;
            padding: 30px 20px;
            transition: var(--transition);
            border: 1px solid var(--border-color);
            background-color: var(--card-bg);
            border-radius: 10px;
            box-shadow: var(--box-shadow);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 36px;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .feature-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--black);
        }

        .feature-card p {
            color: var(--text-color);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Footer */
        .luxury-footer {
            background-color: var(--footer-bg);
            color: var(--white);
            padding-top: 60px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            margin-bottom: 40px;
        }

        /* Responsive Styles */
        @media (max-width: 767px) {
            .main-nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--header-bg);
                display: flex;
                justify-content: center;
                align-items: center;
                transition: var(--transition);
                z-index: 1000;
                padding-top: 80px;
            }
            
            .main-nav.active {
                left: 0;
            }
            
            .main-nav ul {
                flex-direction: column;
                text-align: center;
                width: 100%;
                padding: 20px;
            }
            
            .main-nav li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }

            .header-cta {
                display: none;
            }

            .hero-btns .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .logo {
                font-size: 20px;
            }

            .luxury-hero {
                min-height: 600px;
            }

            .hero-content h1 {
                font-size: 32px;
            }

            .hero-btns {
                flex-direction: column;
            }
        }
:root {
            --primary-color: #8B6F47;
            --secondary-color: #1A1A1A;
            --accent-color: #D4AF37;
            --light-color: #F5F5F5;
            --white: #FFFFFF;
            --black: #000000;
            --transition: all 0.5s ease;
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --section-padding: 80px 0;
            --mystery-color-1: #0a2540;
            --mystery-color-2: #152939;
            --mystery-accent: #4a90e2;
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 21s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 0;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-text {
    background: transparent;
    color: var(--accent-color);
    border: none;
    padding: 0;
    text-decoration: underline;
    text-transform: none;
    letter-spacing: normal;
}

.btn-text:hover {
    color: var(--secondary-color);
}

.btn i {
    margin-right: 10px;
}

/* Header */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    /* background-color: rgba(26, 26, 26, 0.95); */
    background-color: #000000;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-color);
    z-index: 1001;
}

.logo i {
    margin-right: 10px;
    font-size: 18px;
}

.main-nav {
    transition: var(--transition);
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin: 0 15px;
    position: relative;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 14px;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta .btn {
    margin-left: 20px;
}

.mobile-menu-btn {
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1001;
}

/* Sections */
.section {
    display: none;
    padding: var(--section-padding);
    animation: fadeIn 0.8s ease;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero Section */
.luxury-hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1588776814546-1ffcf47267a5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(36px, 6vw, 72px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--accent-color);
    display: block;
}

.hero-content .subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.hero-scroll span {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 3px;
    height: 20px;
    background-color: var(--accent-color);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {
    0% { top: 0; opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Luxury Features */
.luxury-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
    border: 1px solid rgba(139, 111, 71, 0.2);
    background-color: var(--white);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    font-size: 36px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

/* Signature Services */
.signature-services {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: clamp(30px, 5vw, 42px);
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--accent-color);
}

.section-header p {
    color: var(--text-color);
    font-size: clamp(14px, 2vw, 16px);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 100%);
    color: var(--white);
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.service-content p {
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 14px;
}

.service-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-card {
    padding: 30px 20px;
    border: 1px solid rgba(139, 111, 71, 0.2);
    transition: var(--transition);
    position: relative;
    background-color: var(--white);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-align: center;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 20px;
}

.pricing-card ul {
    margin-bottom: 25px;
}

.pricing-card ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.pricing-card ul li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 16px;
}

.pricing-footer {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.pricing-footer p {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

/* Results Section */
.results-section {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.results-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.tab-btn.active {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.result-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.before, .after {
    position: relative;
    height: 350px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.before h4, .after h4 {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(26, 26, 26, 0.8);
    color: var(--white);
    padding: 5px 15px;
    z-index: 1;
    font-size: 16px;
}

.before img, .after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.before:hover img, .after:hover img {
    transform: scale(1.05);
}

.results-cta {
    text-align: center;
    margin-top: 40px;
    padding: 0 20px;
}

.results-cta p {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Location Section */
.location-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.location-info {
    padding: 30px;
    background-color: var(--light-color);
    order: 2;
}

.location-info h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.location-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.location-info p i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 18px;
}

.contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.contact-number {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: rgba(139, 111, 71, 0.1);
    transition: var(--transition);
}

.contact-number:hover {
    background-color: rgba(139, 111, 71, 0.2);
}

.contact-number i {
    margin-right: 10px;
    font-size: 18px;
}

.whatsapp i {
    color: #25D366;
}

.hours {
    margin: 25px 0;
}

.hours h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.hours p {
    font-size: 14px;
    margin-bottom: 8px;
}

.location-map {
    height: 400px;
    order: 1;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    padding: 30px;
    background-color: var(--white);
    order: 2;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 25px;
    font-size: 15px;
}

.contact-methods {
    margin-bottom: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 12px;
    border: 1px solid rgba(139, 111, 71, 0.2);
    transition: var(--transition);
    font-size: 15px;
}

.contact-method:hover {
    background-color: rgba(139, 111, 71, 0.1);
}

.contact-method i {
    font-size: 20px;
    margin-right: 15px;
}

.whatsapp i {
    color: #25D366;
}

.phone i {
    color: var(--accent-color);
}

.email i {
    color: var(--secondary-color);
}

.emergency-contact {
    background-color: rgba(212, 175, 55, 0.1);
    padding: 15px;
    margin-bottom: 25px;
    border-left: 3px solid var(--accent-color);
}

.emergency-contact h4 {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.emergency-contact h4 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.emergency-contact p {
    margin-bottom: 0;
    font-size: 14px;
}

.emergency-contact a {
    color: var(--accent-color);
    font-weight: 500;
}

.social-links h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.contact-image {
    height: 300px;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    order: 1;
}

/* Footer */
.luxury-footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 15px;
    font-size: 24px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.6;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
    font-size: 16px;
}

.footer-social a:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.footer-hours h3,
.footer-links h3,
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 8px;
}

.footer-hours h3::after,
.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-hours ul li span:first-child {
    font-weight: 500;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-weight: 300;
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--accent-color);
}

.footer-contact-link i {
    margin-right: 10px;
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 10px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--accent-color);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Styles */
@media (min-width: 768px) {
    .header-container {
        padding: 0 30px;
    }

    .luxury-hero {
        min-height: 700px;
    }

    .hero-content {
        padding: 0;
        text-align: left;
        margin: 0;
    }

    .hero-btns {
        justify-content: flex-start;
    }

    .luxury-features {
        padding: 60px 30px;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        padding: 0 30px;
    }

    .service-card {
        height: 450px;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 0 30px;
    }

    .result-card {
        grid-template-columns: 1fr 1fr;
    }

    .before, .after {
        height: 400px;
    }

    .location-container {
        grid-template-columns: 1fr 1fr;
        padding: 0 30px;
    }

    .location-info {
        order: 1;
    }

    .location-map {
        order: 2;
        height: 100%;
    }

    .contact-container {
        grid-template-columns: 1fr 1fr;
        padding: 0 30px;
    }

    .contact-info {
        order: 1;
    }

    .contact-image {
        order: 2;
        height: 100%;
        min-height: 500px;
    }

    .footer-container {
        padding: 0 30px;
    }
}

@media (min-width: 992px) {
    .luxury-hero {
        min-height: 800px;
    }

    .luxury-features {
        padding: 80px 40px;
    }

    .services-grid {
        padding: 0 40px;
    }

    .service-card {
        height: 500px;
    }

    .pricing-grid {
        padding: 0 40px;
    }

    .result-card {
        grid-template-columns: 1fr 1fr;
    }

    .before, .after {
        height: 500px;
    }

    .location-container,
    .contact-container {
        padding: 0 40px;
    }

    .footer-container {
        padding: 0 40px;
    }
}

@media (max-width: 767px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--secondary-color);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
        padding-top: 80px;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 20px;
    }
    
    .main-nav li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .service-btns .btn {
        width: 100%;
    }

    .footer-contact-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }

    .luxury-hero {
        min-height: 600px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 200px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-hours h3::after,
    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}


.logo span {
    display: flex;
    align-items: center;
    gap: 8px; /* optional spacing between icon and text */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.logo img {
    width: 80px;
    height: 80px;
}

.service-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* === 3D Tooth Floating Animation === */
.tooth-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* === Liquid Gold Scroll Effect === */
.liquid-gold {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* === Cyberpunk Glitch Navigation === */
                                                                            /* .nav-link:hover {
                                                                                animation: glitch 0.5s linear infinite;
                                                                            } */

@keyframes glitch {
    0% { text-shadow: 2px 0 #D4AF37, -2px 0 #1A1A1A; }
    25% { text-shadow: -2px 0 #D4AF37, 2px 0 #1A1A1A; }
    50% { text-shadow: 2px 0 #D4AF37, -2px 0 #1A1A1A; }
    75% { text-shadow: -2px 0 #D4AF37, 2px 0 #1A1A1A; }
    100% { text-shadow: 2px 0 #D4AF37, -2px 0 #1A1A1A; }
}

/* === Diamond Particle Background === */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* === WhatsApp Button Explosion === */
.whatsapp-float {
    transition: all 0.3s ease;
}

.whatsapp-float:active {
    transform: scale(1.5);
    opacity: 0;
}

/* ===== Gallery Section ===== */
.gallery-section {
  padding: 80px 10%;
  background: #fafafa;
  text-align: center;
}

.gallery-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.gallery-section .section-header h2 span {
  color: #c5a047; /* luxury gold */
}

.gallery-section p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-images img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-images img:hover {
  transform: scale(1.05);
}

.gallery-videos iframe {
  width: 100%;
  max-width: 700px;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  display: block;
}

/* ===== About Section ===== */
.about-section {
  padding: 100px 10%;
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
}

.about-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}

.about-section .section-header h2 span {
  color: #c5a047; /* gold */
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-image {
  flex: 1 1 40%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.about-content {
  flex: 1 1 55%;
}

.about-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #222;
}

.about-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-highlights {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.about-highlights li {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.about-highlights li i {
  color: #c5a047; /* gold */
  margin-right: 10px;
  font-size: 1.2rem;
}

.about-content .btn {
  display: inline-block;
  padding: 12px 25px;
  background: #c5a047;
  color: #fff;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-content .btn:hover {
  background: #b1903f;
}





/* Footer Styles */
.luxury-footer {
    background-color: #0a2540;
    color: #fff;
    padding: 60px 0 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-about .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.footer-about p {
    color: #a8b2c9;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-hours h3,
.footer-contact h3,
.footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-hours h3::after,
.footer-contact h3::after,
.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #4a90e2;
}

.footer-hours ul {
    list-style: none;
    padding: 0;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #a8b2c9;
}

.footer-hours li span:first-child {
    font-weight: 500;
    color: #e0e6f3;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a8b2c9;
    margin-bottom: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-link:hover {
    color: #4a90e2;
}

.footer-contact-link i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a8b2c9;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.footer-links a:hover {
    color: #4a90e2;
    padding-left: 5px;
}

.footer-bottom {
    background-color: #081c36;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-legal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-legal p {
    color: #a8b2c9;
    font-size: 14px;
    margin: 5px 0;
}

.legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.legal-links a {
    color: #a8b2c9;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #4a90e2;
}

.legal-links span {
    color: #4a90e2;
    font-size: 12px;
}

.footer-credit {
    text-align: center;
    margin-top: 10px;
    color: #a8b2c9;
    font-size: 13px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.whatsapp-float a:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-column {
        min-width: 100%;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}






/* Reviews Section */
.reviews-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #fff;
  box-shadow: var(--box-shadow);
  border-radius: 12px;
}

.reviews-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  padding: 20px;
  background: var(--light-color);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 10px;
}

.review-card p {
  font-style: italic;
  margin-bottom: 15px;
  font-size: 14px;
}

.review-card h4 {
  font-weight: 600;
  color: var(--secondary-color);
}



.hidden-review {
  display: none;
}





/* Add this to your style.css file */
/* Only show custom cursor on devices that support hover */
@media (hover: hover) {
    body {
        cursor: none;
    }
    
    .cursorGlow,
    .cursorRing,
    canvas.trail {
        display: block;
    }
}

/* Hide custom cursor elements on touch devices */
@media (hover: none) {
    .cursorGlow,
    .cursorRing,
    canvas.trail {
        display: none;
    }
}
