/* Optimized High-Performance Dark Theme CSS */
:root {
    --primary: #8b5cf6;
    --secondary: #6366f1;
    --accent: #ec4899;
    --pink: #ff6b9d;
    --gold: #ffd700;
    --rose-gold: #f4c2c2;
    --dark-bg: #0f0f1e;
    --dark-surface: #1a1a2e;
    --dark-card: #252538;
    --dark-hover: #2d2d44;
    --light: #e2e8f0;
    --white: #ffffff;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --gradient-1: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --gradient-2: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    --gradient-3: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-pink-gold: linear-gradient(135deg, #ff6b9d 0%, #ffd700 50%, #ff6b9d 100%);
    --gradient-rose-gold: linear-gradient(135deg, #f4c2c2 0%, #ffd700 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.8);
    --glow: 0 0 20px rgba(139, 92, 246, 0.5);
    --glow-pink: 0 0 25px rgba(255, 107, 157, 0.6);
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    content-visibility: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--dark-bg);
}

/* Header - Merged with Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    animation: slideDown 0.6s ease;
    padding: 12px 0;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.brand-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d 0%, #c0c0c0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.3));
}

/* Brand container and logo */
.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d 0%, #c0c0c0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.3));
}

.site-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255, 107, 157, 0.4)) drop-shadow(0 0 6px rgba(192, 192, 192, 0.3));
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4081 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(255, 107, 157, 0.4);
    position: relative;
}

.contact-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.7);
    background: linear-gradient(135deg, #ff4081 0%, #ff6b9d 100%);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon.phone {
    background: var(--primary);
}

.contact-icon.whatsapp {
    background: #25D366;
}

.contact-icon.email {
    background: #EA4335;
}

.contact-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Navigation - Merged in Header */
.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s;
}

.mobile-menu-toggle:hover {
    transform: rotate(90deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.nav-menu li a {
    display: block;
    padding: 8px 14px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--gradient-1);
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary);
    text-shadow: var(--glow);
}

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

/* Hero Section - Enhanced */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.93) 0%, rgba(18, 40, 75, 0.93) 50%, rgba(25, 55, 95, 0.93) 100%), 
                url('/img/bg.jpg') center/cover no-repeat fixed;
    background-size: cover;
    overflow: hidden;
    padding-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.7) 0%, rgba(18, 40, 75, 0.6) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 157, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(192, 192, 192, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 30px;
}

.hero-content {
    position: relative;
    text-align: left;
    color: var(--white);
    padding: 50px 40px;
    background: rgba(10, 25, 47, 0.5);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 0 40px rgba(255, 107, 157, 0.3);
    max-width: 100%;
}

.hero-images {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}

.hero-image-main {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 
                0 0 50px rgba(255, 107, 157, 0.4);
    border: 2px solid rgba(255, 107, 157, 0.3);
    animation: fadeInRight 0.8s ease 0.3s both;
    width: 100%;
}

.hero-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 30px;
}

.hero-image-main:hover img {
    transform: scale(1.05);
}

.hero-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-image-small {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(255, 107, 157, 0.3);
    border: 2px solid rgba(255, 107, 157, 0.2);
    animation: fadeInUp 0.8s ease both;
    width: 100%;
    height: 100%;
}

.hero-image-small:nth-child(1) {
    animation-delay: 0.5s;
}

.hero-image-small:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-image-small:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-image-small img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
    border-radius: 20px;
}

.hero-image-small:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.hero-image-small::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3) 0%, rgba(192, 192, 192, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-small:hover::after {
    opacity: 1;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c0c0c0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.6)) drop-shadow(0 0 20px rgba(192, 192, 192, 0.4));
    line-height: 1.15;
    animation: fadeInUp 0.8s ease, shimmer 3s ease-in-out infinite;
    letter-spacing: 1.2px;
    text-transform: none;
}

.highlight {
    background: linear-gradient(135deg, #ff6b9d 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #c0c0c0);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

h2:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

@keyframes shimmer {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(255, 107, 157, 0.6)) drop-shadow(0 0 20px rgba(192, 192, 192, 0.4)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 107, 157, 0.8)) drop-shadow(0 0 30px rgba(192, 192, 192, 0.6)); }
}

.hero-subtitle {
    font-size: clamp(1.3rem, 2.8vw, 1.8rem);
    margin-bottom: 25px;
    color: #f0f0f0;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 2px 15px rgba(255, 107, 157, 0.4), 0 0 25px rgba(192, 192, 192, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 800px;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.8;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.3s both;
    max-width: 800px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero decorative elements */
.hero-content::before {
    content: '❤️';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.5rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.8));
    z-index: 10;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 55px;
    background: linear-gradient(135deg, #ff6b9d 0%, #ff4081 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 35px rgba(255, 107, 157, 0.7), 0 10px 30px rgba(255, 64, 129, 0.5);
    animation: fadeInUp 0.8s ease 0.4s both, buttonPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 0 60px rgba(255, 107, 157, 1), 0 15px 45px rgba(255, 64, 129, 0.7);
}

.cta-button i {
    animation: phoneRing 1.5s ease-in-out infinite;
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 35px rgba(255, 107, 157, 0.7), 0 10px 30px rgba(255, 64, 129, 0.5); }
    50% { box-shadow: 0 0 45px rgba(255, 107, 157, 0.9), 0 12px 35px rgba(255, 64, 129, 0.6); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff6b9d 0%, #c0c0c0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 107, 157, 0.6));
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-20px); }
    60% { transform: translateX(-50%) translateY(-10px); }
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c0c0c0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(255, 107, 157, 0.35)) drop-shadow(0 0 15px rgba(192, 192, 192, 0.2));
    letter-spacing: 0.5px;
}

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

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
}

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

.service-card {
    background: var(--dark-card);
    padding: 45px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--glow), var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: all 0.4s ease;
}

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

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Gallery Section */
.gallery {
    background: var(--dark-surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: var(--glow), var(--shadow-lg);
    border-color: var(--primary);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-surface) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.3;
    background: linear-gradient(135deg, #ff6b9d 0%, #c0c0c0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.3)) drop-shadow(0 0 12px rgba(192, 192, 192, 0.2));
    letter-spacing: 0.5px;
}

.about-text p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.9;
    opacity: 0.95;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent);
    font-size: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: rgba(139, 92, 246, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
}

.stat-card:hover {
    background: rgba(139, 92, 246, 0.25);
    transform: translateY(-10px);
    box-shadow: var(--glow);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: block;
}

.stat-card p {
    font-size: 1.15rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--gradient-1);
    color: var(--white);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
}

.contact-card:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-card a,
.contact-card p {
    color: var(--white);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--dark-card);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: var(--dark-surface);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    font-size: 1.05rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--glow);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--dark-surface);
    color: var(--light);
    padding: 70px 0 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #ff6b9d 0%, #c0c0c0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-section p {
    line-height: 1.9;
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-section ul li i {
    margin-right: 12px;
    color: var(--primary);
    width: 20px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
    box-shadow: var(--glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    opacity: 0.8;
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.scroll-top {
    position: fixed;
    bottom: 35px;
    left: 35px;
    width: 55px;
    height: 55px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--glow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-8px);
}

/* Accessibility Focus Styles */
*:focus {
    outline: 3px solid rgba(139, 92, 246, 0.5);
    outline-offset: 2px;
}

/* Skip to Main Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #8b5cf6;
    color: white;
    padding: 8px 16px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    background: var(--dark-bg);
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--dark-card);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow), var(--shadow-lg);
    border-color: var(--primary);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s ease;
}

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

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b9d 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Service Areas Section */
.service-areas {
    background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
    padding: 80px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.area-card {
    background: var(--dark-card);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow);
    border-color: var(--primary);
}

.area-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.area-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.area-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--dark-bg);
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--dark-card);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow);
    border-color: var(--primary);
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    gap: 5px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Booking Process Section */
.booking-process {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%);
    padding: 80px 0;
}

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

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--dark-card);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--glow);
    border-color: var(--primary);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 700;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq {
    background: var(--dark-surface);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-card);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

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

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Responsive Design - Mobile First (80% focus) */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-wrap: nowrap;
        position: relative;
        align-items: center;
        gap: 15px;
    }
    
    .brand-logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .brand-name {
        font-size: 1rem;
        white-space: nowrap;
    }
    
    .site-logo {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }
    
    .navbar {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-primary);
        cursor: pointer;
        padding: 8px;
        transition: transform 0.3s;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle:hover {
        transform: rotate(90deg);
    }
    
    /* Dropdown Menu Container */
.nav-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    width: 100%;
    background: var(--dark-surface);
    border-radius: 10px;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* important */
}

/* Active state (open menu) */
.nav-menu.active {
    max-height: 600px; /* enough height */
}

/* Each menu item */
.nav-menu li {
    width: 100%;
    list-style: none;
}

/* Menu links */
.nav-menu li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    font-size: 0.9rem;
    width: 100%;
}

/* Last item no border */
.nav-menu li:last-child a {
    border-bottom: none;
}


/* --- Mobile Fixes (Hamburger + Hide Icons) --- */
@media (max-width: 768px) {

    /* Show ONLY the hamburger button */
    .menu-btn {
        display: block !important;
        z-index: 1100;
    }

    /* Make hamburger lines WHITE */
    .menu-btn span,
    .menu-btn i {
        background: #fff !important;
        color: #fff !important;
    }

    /* Hide WhatsApp, Email, Phone icons */
    .whatsapp-icon,
    .email-icon,
    .phone-icon,
    .contact-icons,
    /* .nav-right-icons {
        display: none !important;
    } */

    /* Hide desktop navigation items */
    .nav-links,
    .desktop-menu,
    .desktop-only {
        display: none !important;
    }
}


    
    .contact-info {
        flex-shrink: 0;
        gap: 6px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    /* Mobile Hero */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .hero-content {
        text-align: center;
        padding: 35px 25px;
        order: 2;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 15px;
        display: none;
    }
    
    .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-images {
        order: 1;
    }
    
    .hero-image-main img {
        height: 350px;
        border-radius: 20px;
    }
    
    .hero-image-small img {
        height: 110px;
        border-radius: 15px;
    }
    
    .hero-image-grid {
        gap: 10px;
    }
    
    /* Mobile Sections */
    section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Mobile Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Mobile Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Mobile About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Mobile Why Choose Us */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card {
        padding: 25px 20px;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .why-card h3 {
        font-size: 1.2rem;
    }
    
    .why-card p {
        font-size: 0.9rem;
    }
    
    /* Mobile Service Areas */
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .area-card {
        padding: 25px 20px;
    }
    
    /* Mobile Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    /* Mobile Booking Process */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
    
    /* Mobile FAQ */
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 10px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    /* Mobile Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-info-cards {
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    /* Mobile Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Mobile Floating Buttons */
    .whatsapp-float,
    .scroll-top {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
    }
    
    .whatsapp-float {
        right: 20px;
    }
    
    .scroll-top {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 8px 0;
    }
    
    .header-content {
        gap: 10px;
    }
    
    .brand-logo h1,
    .brand-name {
        font-size: 0.9rem;
    }
    
    .site-logo {
        width: 24px;
        height: 24px;
    }
    
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
        padding: 6px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .contact-info {
        gap: 5px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 480px) {
    .brand-logo h1 {
        font-size: 1.1rem;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .contact-info {
        gap: 8px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
}