/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Properties */
:root {
    --luxury-gold: #D4AF37;
    --luxury-beige: #C9A96E;
    --luxury-cream: #FAF8F5;
    --luxury-bronze: #B8860B;
    --luxury-dark: #1A1A1A;
}

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

/* Text Utilities */
.text-gold {
    color: var(--luxury-gold);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(to right, var(--luxury-gold), var(--luxury-bronze));
    margin: 0 auto;
    border-radius: 2px;
}

/* 3D Animations */
@keyframes float3d {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg) translateZ(0px); 
    }
    33% { 
        transform: translateY(-15px) rotateX(15deg) rotateY(120deg) translateZ(20px); 
    }
    66% { 
        transform: translateY(-10px) rotateX(-10deg) rotateY(240deg) translateZ(-15px); 
    }
}

@keyframes rotate3d {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

@keyframes pulse3d {
    0%, 100% { 
        transform: scale(1) rotateY(0deg) translateZ(0px); 
        opacity: 0.6; 
    }
    50% { 
        transform: scale(1.2) rotateY(180deg) translateZ(30px); 
        opacity: 1; 
    }
}

@keyframes geometricSpin {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1); }
    25% { transform: rotateX(90deg) rotateY(45deg) rotateZ(0deg) scale(1.1); }
    50% { transform: rotateX(180deg) rotateY(90deg) rotateZ(180deg) scale(0.9); }
    75% { transform: rotateX(270deg) rotateY(135deg) rotateZ(270deg) scale(1.1); }
    100% { transform: rotateX(360deg) rotateY(180deg) rotateZ(360deg) scale(1); }
}

@keyframes spinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.animate-float-3d {
    animation: float3d 12s ease-in-out infinite;
}

.animate-rotate-3d {
    animation: rotate3d 25s linear infinite;
}

.animate-pulse-3d {
    animation: pulse3d 6s ease-in-out infinite;
}

.animate-geometric-spin {
    animation: geometricSpin 15s ease-in-out infinite;
}

.animate-spin-slow {
    animation: spinSlow 20s linear infinite;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Animation Delays */
.animation-delay-200 { animation-delay: 200ms; }
.animation-delay-400 { animation-delay: 400ms; }
.animation-delay-600 { animation-delay: 600ms; }
.animation-delay-800 { animation-delay: 800ms; }
.animation-delay-1000 { animation-delay: 1000ms; }
.animation-delay-1200 { animation-delay: 1200ms; }

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('');
   /* Keeps aspect ratio, fills screen */
   
    background-attachment: fixed;
    overflow: hidden;
    display: flex;
    align-items: center;
    
    
    
    
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url();
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
    transform: rotate(270deg);
    background-size: contain; /* Fits entire image inside */
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%; /* Stretches to fit */
}

.hero-background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .background-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
}

.floating-element {
    position: absolute;
}

/* Hero Background Elements */
.hero-section .element-1 {
    top: 80px;
    left: 80px;
    animation: float3d 12s ease-in-out infinite;
}

.hero-section .shape-1 {
    width: 128px;
    height: 128px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transform: rotate(45deg);
    animation: spinSlow 20s linear infinite;
}

.hero-section .inner-1 {
    position: absolute;
    inset: 16px;
    width: 96px;
    height: 96px;
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.1), rgba(245, 241, 235, 0.05));
    border-radius: 50%;
    animation: pulse3d 6s ease-in-out infinite;
}

.hero-section .inner-border {
    position: absolute;
    inset: 12px;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(245, 241, 235, 0.15);
    border-radius: 50%;
}

.hero-section .element-2 {
    top: 33.333%;
    right: 128px;
    animation: geometricSpin 15s ease-in-out infinite;
    animation-delay: 800ms;
}

.hero-section .shape-2 {
    width: 96px;
    height: 96px;
    background: linear-gradient(to bottom right, rgba(245, 241, 235, 0.15), rgba(212, 175, 55, 0.1));
    border-radius: 8px;
    transform: rotate(12deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-section .inner-2 {
    position: absolute;
    inset: 8px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    transform: rotate(-12deg);
}

.hero-section .inner-3 {
    position: absolute;
    inset: 16px;
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 50%;
}

.hero-section .element-3 {
    bottom: 160px;
    left: 25%;
    animation: rotate3d 25s linear infinite;
    animation-delay: 1200ms;
}

.hero-section .shape-3 {
    width: 112px;
    height: 112px;
    border: 2px solid rgba(245, 241, 235, 0.2);
    transform: rotate(45deg);
}

.hero-section .inner-4 {
    position: absolute;
    inset: 12px;
    width: 88px;
    height: 88px;
    background: linear-gradient(to top right, rgba(212, 175, 55, 0.08), transparent);
    border-radius: 50%;
}

.hero-section .inner-border-circle {
    position: absolute;
    inset: 8px;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: pulse3d 6s ease-in-out infinite;
}

.hero-section .element-4 {
    top: 50%;
    left: 40px;
    animation: float3d 8s ease-in-out infinite;
    animation-delay: 600ms;
}

.hero-section .shape-4 {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom left, rgba(245, 241, 235, 0.12), rgba(184, 134, 11, 0.08));
    border-radius: 50%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-section .inner-5 {
    position: absolute;
    inset: 8px;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    transform: rotate(45deg);
}

.hero-section .element-5 {
    bottom: 80px;
    right: 80px;
    animation: geometricSpin 12s ease-in-out infinite;
    animation-delay: 1000ms;
}

.hero-section .shape-5 {
    width: 144px;
    height: 144px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    transform: rotate(12deg);
}

.hero-section .inner-6 {
    position: absolute;
    inset: 16px;
    width: 112px;
    height: 112px;
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.08), rgba(245, 241, 235, 0.05));
    border-radius: 8px;
    transform: rotate(-6deg);
}

.hero-section .inner-border-square {
    position: absolute;
    inset: 12px;
    width: 88px;
    height: 88px;
    border: 2px solid rgba(245, 241, 235, 0.2);
    border-radius: 50%;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1024px;
}

.hero-logo {
    text-align: center;
    margin-bottom: 0px;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-logo-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-subtitle {
    display: block;
    color: var(--luxury-gold);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 200ms;
    opacity: 0;
}

.hero-description {
    font-size: 1.5rem;
    color: var(--luxury-beige);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 400ms;
    opacity: 0;
}

.hero-subdescription {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 600ms;
    opacity: 0;
}

.cta-button {
    background: var(--luxury-gold);
    color: #000;
    font-weight: bold;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 800ms;
    opacity: 0;
}

.cta-button:hover {
    background: var(--luxury-bronze);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.25);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 64px;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1000ms;
    opacity: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    padding: 8px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: var(--luxury-gold);
}

.feature-item span {
    color: var(--luxury-beige);
}

/* Services Section */
.services-section {
    padding: 96px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.services-section .background-elements {
    position: absolute;
    inset: 0;
    opacity: 0.05;
}

.services-section .service-element-1 {
    top: 80px;
    left: 80px;
    animation: float3d 12s ease-in-out infinite;
}

.services-section .service-shape-1 {
    width: 96px;
    height: 96px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transform: rotate(45deg);
    animation: spinSlow 20s linear infinite;
}

.services-section .service-inner-1 {
    position: absolute;
    inset: 12px;
    width: 72px;
    height: 72px;
    background: rgba(245, 241, 235, 0.1);
    border-radius: 50%;
    animation: pulse3d 6s ease-in-out infinite;
}

.services-section .service-element-2 {
    bottom: 160px;
    right: 128px;
    animation: geometricSpin 15s ease-in-out infinite;
    animation-delay: 800ms;
}

.services-section .service-shape-2 {
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.15), rgba(245, 241, 235, 0.05));
    border-radius: 8px;
    transform: rotate(12deg);
}

.services-section .service-element-3 {
    top: 50%;
    right: 40px;
    animation: rotate3d 25s linear infinite;
    animation-delay: 1200ms;
}

.services-section .service-shape-3 {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    transform: rotate(45deg);
}

.services-section .service-inner-2 {
    position: absolute;
    inset: 16px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(245, 241, 235, 0.15);
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    position: relative;
    background: linear-gradient(to bottom, #27272a, #000);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s ease;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0ms; }
.service-card:nth-child(2) { animation-delay: 100ms; }
.service-card:nth-child(3) { animation-delay: 200ms; }
.service-card:nth-child(4) { animation-delay: 300ms; }
.service-card:nth-child(5) { animation-delay: 400ms; }
.service-card:nth-child(6) { animation-delay: 500ms; }

.service-card:hover {
    transform: scale(1.05);
}

.service-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Adjust the third service card image (Nose & Ear Waxing) to show the person better */
.service-card:nth-child(3) .service-image img {
    object-position: center 30%;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.service-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 12px;
    background: rgba(212, 175, 55, 0.9);
    border-radius: 50%;
    color: #000;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(12deg) scale(1.1);
}

.service-content {
    padding: 32px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--luxury-gold);
}

.service-description {
    color: #9ca3af;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: #d1d5db;
}

.service-border {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover .service-border {
    border-color: rgba(212, 175, 55, 0.5);
}

/* About Section */
.about-section {
    padding: 96px 0;
    background: linear-gradient(to bottom, #27272a, #000);
    position: relative;
    overflow: hidden;
}

.about-section .background-elements {
    position: absolute;
    inset: 0;
}

.about-section .about-element-1 {
    top: 25%;
    left: 40px;
    animation: float3d 12s ease-in-out infinite;
    animation-delay: 600ms;
}

.about-section .about-shape-1 {
    width: 128px;
    height: 128px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transform: rotate(45deg);
    animation: spinSlow 20s linear infinite;
}

.about-section .about-shape-2 {
    position: absolute;
    inset: 24px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(245, 241, 235, 0.2);
    border-radius: 50%;
}

.about-section .about-element-2 {
    bottom: 33.333%;
    right: 80px;
    animation: geometricSpin 15s ease-in-out infinite;
    animation-delay: 600ms;
}

.about-section .about-shape-3 {
    width: 112px;
    height: 112px;
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.15), rgba(245, 241, 235, 0.05));
    border-radius: 50%;
    transform: rotate(12deg);
}

.about-section .about-inner-1 {
    position: absolute;
    inset: 16px;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    transform: rotate(45deg);
    animation: pulse3d 6s ease-in-out infinite;
}

.about-section .about-inner-2 {
    position: absolute;
    inset: 12px;
    width: 88px;
    height: 88px;
    border: 1px solid rgba(245, 241, 235, 0.15);
    border-radius: 50%;
}

.about-section .about-element-3 {
    bottom: 80px;
    left: 33.333%;
    animation: rotate3d 25s linear infinite;
    animation-delay: 1000ms;
}

.about-section .about-shape-4 {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    transform: rotate(45deg);
}

.about-section .about-inner-3 {
    position: absolute;
    inset: 12px;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(245, 241, 235, 0.15);
    border-radius: 50%;
}

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

.about-text {
    space-y: 32px;
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-description {
    margin-top: 32px;
    margin-bottom: 32px;
}

.about-description p {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin-bottom: 16px;
    color: var(--luxury-gold);
    transition: background-color 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.7s ease;
}

.image-container:hover {
    transform: scale(1.05);
}

.image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent, transparent);
}

.floating-decoration {
    position: absolute;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.decoration-1 {
    top: -24px;
    left: -24px;
    width: 96px;
    height: 96px;
    background: rgba(212, 175, 55, 0.2);
}

.decoration-2 {
    bottom: -24px;
    right: -24px;
    width: 128px;
    height: 128px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: spinSlow 20s linear infinite;
}

/* Testimonials Section */
.testimonials-section {
    padding: 96px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.testimonials-section .background-elements {
    position: absolute;
    inset: 0;
}

.testimonials-section .testimonial-element-1 {
    top: 33.333%;
    left: 80px;
    animation: float3d 12s ease-in-out infinite;
    animation-delay: 400ms;
}

.testimonials-section .testimonial-shape-1 {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    transform: rotate(45deg);
    animation: geometricSpin 15s ease-in-out infinite;
}

.testimonials-section .testimonial-inner-1 {
    position: absolute;
    inset: 16px;
    width: 48px;
    height: 48px;
    background: rgba(245, 241, 235, 0.1);
    border-radius: 50%;
    animation: pulse3d 6s ease-in-out infinite;
}

.testimonials-section .testimonial-element-2 {
    bottom: 25%;
    right: 64px;
    animation: rotate3d 25s linear infinite;
    animation-delay: 800ms;
}

.testimonials-section .testimonial-shape-2 {
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.2), rgba(245, 241, 235, 0.05));
    border-radius: 8px;
    transform: rotate(12deg);
}

.testimonials-carousel {
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--luxury-gold);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav:hover {
    background: var(--luxury-gold);
    color: #000;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.testimonial-container {
    position: relative;
    height: 400px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(100%) scale(0.95);
    transition: all 0.7s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.testimonial-card {
    background: linear-gradient(to bottom, #27272a, #000);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -24px;
    left: 48px;
    width: 48px;
    height: 48px;
    background: var(--luxury-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.star {
    color: var(--luxury-gold);
    font-size: 1.5rem;
    margin: 0 4px;
}

.testimonial-comment {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-name {
    color: #fff;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.author-title {
    color: var(--luxury-gold);
    font-size: 0.875rem;
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6b7280;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: #9ca3af;
}

.indicator.active {
    background: var(--luxury-gold);
    transform: scale(1.25);
}

/* Contact Section */
.contact-section {
    padding: 96px 0;
    background: linear-gradient(to bottom, #27272a, #000);
    position: relative;
    overflow: hidden;
}

.contact-section .background-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact-section .contact-element-1 {
    top: 128px;
    left: 64px;
    animation: float3d 12s ease-in-out infinite;
}

.contact-section .contact-shape-1 {
    width: 96px;
    height: 96px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transform: rotate(45deg);
    animation: spinSlow 20s linear infinite;
}

.contact-section .contact-inner-1 {
    position: absolute;
    inset: 16px;
    width: 64px;
    height: 64px;
    background: rgba(245, 241, 235, 0.1);
    border-radius: 50%;
    animation: pulse3d 6s ease-in-out infinite;
}

.contact-section .contact-element-2 {
    bottom: 160px;
    right: 80px;
    animation: geometricSpin 15s ease-in-out infinite;
    animation-delay: 600ms;
}

.contact-section .contact-shape-2 {
    width: 64px;
    height: 64px;
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.15), rgba(245, 241, 235, 0.05));
    border-radius: 8px;
    transform: rotate(12deg);
}

.contact-section .contact-element-3 {
    top: 50%;
    right: 25%;
    animation: rotate3d 25s linear infinite;
    animation-delay: 1000ms;
}

.contact-section .contact-shape-3 {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 55, 0.25);
    transform: rotate(45deg);
}

.contact-section .contact-inner-2 {
    position: absolute;
    inset: 16px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(245, 241, 235, 0.15);
    border-radius: 50%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-title {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 24px;
}

.business-hours {
    margin-bottom: 48px;
}

.hours-list {
    margin-top: 32px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #374151;
}

.day {
    color: #d1d5db;
    font-weight: 500;
}

.time {
    color: #fff;
    font-weight: bold;
}

.quality-promise {
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.05));
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.promise-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--luxury-gold);
    margin-bottom: 16px;
}

.promise-description {
    color: #d1d5db;
    line-height: 1.6;
}

.contact-details {
    margin-top: 32px;
    margin-bottom: 48px;
}

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

.contact-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
    transition: background-color 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(212, 175, 55, 0.2);
}

.contact-label {
    color: #9ca3af;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-value {
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
}

.contact-subvalue {
    color: #9ca3af;
}

.embedded-map {
    margin-top: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.embedded-map:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.embedded-map iframe {
    display: block;
    width: 100%;
    height: 120px;
    border: none;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
    color: #fff;
    z-index: 10;
}

.embedded-map:hover .map-overlay {
    opacity: 1;
}

.map-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.9);
    padding: 12px 16px;
    border-radius: 8px;
    color: #000;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-overlay-content svg {
    width: 20px;
    height: 20px;
}

.social-section {
    margin-bottom: 48px;
    position: relative;
    z-index: 15;
}

.social-label {
    color: #9ca3af;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 15;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.social-link:hover {
    background: var(--luxury-gold);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.social-link:active {
    transform: scale(0.95);
}

.social-link:focus {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

/* Image Optimization */
.service-image img,
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-image img:hover,
.about-image img:hover {
    transform: scale(1.05);
}

/* Ensure images are responsive */
@media (max-width: 768px) {
    .service-image img,
    .about-image img {
        object-position: center;
    }
}

.appointment-button {
    width: 100%;
    background: linear-gradient(to right, var(--luxury-gold), var(--luxury-bronze));
    color: #000;
    font-weight: bold;
    font-size: 1.125rem;
    padding: 16px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.appointment-button:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.25);
}

.appointment-section {
    position: relative;
    z-index: 10;
}

.appointment-note {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger-menu {
        display: flex !important;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease;
        backdrop-filter: blur(10px);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        list-style: none;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        padding: 16px 24px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(212, 175, 55, 0.1);
        color: var(--luxury-gold);
    }
    
    /* Other mobile styles */
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    
    .prev-btn {
        left: -50px;
    }
    
    .next-btn {
        right: -50px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    /* Mobile Navigation Adjustments */
    .nav-container {
        padding: 12px 16px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
    
    .hamburger-menu {
        padding: 6px;
        display: flex !important;
    }
    
    .hamburger-line {
        width: 22px;
        height: 2px;
    }
    
    .nav-links a {
        font-size: 1.8rem;
        padding: 20px 32px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-comment {
        font-size: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    /* Business Hours Mobile Responsive */
    .business-hours {
        margin-bottom: 32px;
    }
    
    .hours-list {
        margin-top: 24px;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }
    
    .day {
        font-size: 0.875rem;
    }
    
    .time {
        font-size: 1rem;
    }
    
    /* Quality Promise Mobile Responsive */
    .quality-promise {
        padding: 24px 20px;
        margin-bottom: 32px;
    }
    
    .promise-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .promise-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    /* Contact Details Mobile Responsive */
    .contact-details {
        margin-top: 24px;
        margin-bottom: 32px;
    }
    
    .contact-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-label {
        font-size: 0.75rem;
    }
    
    .contact-value {
        font-size: 1rem;
    }
    
    .contact-subvalue {
        font-size: 0.875rem;
    }
    
    .embedded-map {
        margin-top: 10px;
    }
    
    .embedded-map iframe {
        height: 100px;
    }
    
    .map-overlay-content {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .map-overlay-content svg {
        width: 16px;
        height: 16px;
    }
    
    /* Social Links Mobile Responsive */
    .social-section {
        margin-bottom: 32px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    /* Appointment Section Mobile Responsive */
    .appointment-button {
        font-size: 1rem;
        padding: 14px;
    }
    
    .appointment-note {
        font-size: 0.75rem;
        margin-top: 12px;
    }
}

/* Ensure hamburger menu is visible on all mobile devices */
@media (max-width: 480px) {
    .hamburger-menu {
        display: flex !important;
    }
    
    .nav-links a {
        font-size: 2rem;
        padding: 24px 40px;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .testimonial-nav {
        width: 36px;
        height: 36px;
    }
    
    .prev-btn {
        left: -40px;
    }
    
    .next-btn {
        right: -40px;
    }
    
    /* Extra Small Mobile Responsive */
    .business-hours {
        margin-bottom: 24px;
    }
    
    .hours-item {
        padding: 10px 0;
    }
    
    .day {
        font-size: 0.8rem;
    }
    
    .time {
        font-size: 0.9rem;
    }
    
    .quality-promise {
        padding: 20px 16px;
        margin-bottom: 24px;
    }
    
    .promise-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .promise-description {
        font-size: 0.8rem;
    }
    
    .contact-details {
        margin-top: 20px;
        margin-bottom: 24px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-label {
        font-size: 0.7rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    .contact-subvalue {
        font-size: 0.8rem;
    }
    
    .embedded-map {
        margin-top: 8px;
    }
    
    .embedded-map iframe {
        height: 80px;
    }
    
    .map-overlay-content {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .map-overlay-content svg {
        width: 14px;
        height: 14px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .appointment-button {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .appointment-note {
        font-size: 0.7rem;
        margin-top: 10px;
    }
}

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

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--luxury-gold), var(--luxury-beige));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--luxury-bronze), var(--luxury-gold));
}

/* Selection Color */
::selection {
    background: var(--luxury-beige);
    color: #000;
}

::-moz-selection {
    background: var(--luxury-beige);
    color: #000;
}



/* Navigation Bar */
.navbar {
    background: #000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    color: var(--luxury-gold);
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--luxury-gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Menu Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.embedded-map {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
  }
  
  .embedded-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 1;
  }
  
  .map-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0); /* transparent */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .map-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
  }
  
  .map-overlay-content {
    background: #000;
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--luxury-gold);
    font-weight: bold;
    font-size: 0.9rem;
  }
  

  