/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Purple & Yellow Color Palette */
    --primary: #6366f1;  /* Purple */
    --primary-dark: #4f46e5;
    --primary-light: #a5b4fc;
    --secondary: #fbbf24;  /* Yellow */
    --secondary-dark: #f59e0b;
    --secondary-light: #fcd34d;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --accent-light: #fcd34d;
    
    /* Neutral Colors */
    --white: #ffffff;
    --dark: #1f2937;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --gradient-secondary: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
    /* Smooth scrolling */
    scroll-behavior: smooth;
    /* Prevent layout shifts */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--white);
}

.loader .heart {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s ease-in-out infinite;
}

.loader .heart::before {
    content: '❤';
    font-size: 2rem;
    color: var(--secondary);
}

.loader .text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar {
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    padding: 1rem 0;
    transition: all var(--transition-normal);
    z-index: 1040;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    z-index: 1050; /* Ensure sticky header stays on top */
}

.navbar-brand {
    text-decoration: none;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.brand-logo i {
    font-size: 2rem;
    color: var(--white);
}

.navbar.scrolled .brand-logo { color: var(--primary); }
.navbar.scrolled .brand-logo i { color: var(--secondary); }

.navbar-nav {
    gap: 1.5rem;
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color var(--transition-fast);
    padding: 0.5rem 0 !important;
}

.nav-link:hover {
    color: var(--white) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-btn {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-link.cta-btn::after {
    display: none;
}

/* Adjust nav colors when scrolled on light background */
.navbar.scrolled .nav-link { color: var(--gray-700) !important; }
.navbar.scrolled .nav-link:hover { color: var(--primary) !important; }
.navbar.scrolled .nav-link::after { background: var(--primary); }

/* Keep Get Quote button white even when scrolled */
.navbar.scrolled .nav-link.cta-btn { color: var(--white) !important; }

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=2100&q=80') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
    margin-bottom: 0; /* Remove any bottom margin */
}

/* Remove the ::before overlay since we're using background-image with overlay */

/* Ensure text content is above the overlay but below sticky header */
.hero-content {
    position: relative;
    z-index: 999; /* Reduced from 9997 to be below header (1000) */
    color: var(--white);
    /* Debug: Ensure content is clickable */
    pointer-events: auto;
}

.hero-visual {
    position: relative;
    z-index: 10;
}

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

.wedding-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-rose, .floating-heart, .floating-star {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-rose {
    font-size: 2rem;
    color: rgba(255, 182, 193, 0.4);
}

.floating-heart {
    font-size: 1.5rem;
    color: rgba(255, 105, 180, 0.4);
}

.floating-star {
    font-size: 1.8rem;
    color: rgba(255, 215, 0, 0.4);
}

.rose-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.rose-2 {
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.rose-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

.heart-1 {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.heart-2 {
    bottom: 15%;
    right: 10%;
    animation-delay: 3s;
}

.star-1 {
    top: 50%;
    left: 5%;
    animation-delay: 0.5s;
}

.star-2 {
    top: 80%;
    left: 60%;
    animation-delay: 2.5s;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

/* Clean white text for readability */
.hero-title { color: var(--white); }
.hero-subtitle { color: rgba(255,255,255,0.92); }
.hero-title, .hero-subtitle { text-shadow: none; }
/* New ornamental hero visual (replaces inline image) */
.hero-visual { position: relative; z-index: 3; }
.hero-ornament {
    position: relative;
    width: 380px;
    height: 380px;
    margin: 0 auto;
}

.hero-ornament .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 40px rgba(0,0,0,0.08) inset;
}

.hero-ornament .ring-1 { width: 360px; height: 360px; animation: ringSpin 18s linear infinite; }
.hero-ornament .ring-2 { width: 280px; height: 280px; border-color: rgba(255,255,255,0.25); animation: ringSpinReverse 22s linear infinite; }
.hero-ornament .ring-3 { width: 200px; height: 200px; border-color: rgba(255,255,255,0.18); animation: ringSpin 26s linear infinite; }

@keyframes ringSpin { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes ringSpinReverse { from { transform: translate(-50%, -50%) rotate(360deg); } to { transform: translate(-50%, -50%) rotate(0deg); } }

.glass-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    color: var(--white);
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.glass-pill i { color: var(--accent-light); }
.glass-pill span { font-weight: 600; font-size: 0.9rem; }

.pill-1 { top: 18%; left: -10%; }
.pill-2 { bottom: 18%; right: -8%; }
.pill-3 { bottom: -6%; left: 20%; }

/* Responsive sizing */
@media (max-width: 992px) {
    .hero-ornament { width: 320px; height: 320px; }
    .hero-ornament .ring-1 { width: 300px; height: 300px; }
    .hero-ornament .ring-2 { width: 230px; height: 230px; }
    .hero-ornament .ring-3 { width: 170px; height: 170px; }
}

/* Gentle reveal */
.reveal-init { opacity: 0; transform: translateY(16px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal-show { opacity: 1; transform: translateY(0); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

.hero-badge i {
    color: var(--primary);
}

.hero-title {
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--white);
}

.hero-features .feature-item i {
    color: var(--primary);
    font-size: 1rem;
}

.gradient-text {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
    font-weight: 900;
}

.highlight-text {
    color: #6366f1;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white) !important;
}

.hero-stats .stat-label {
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 999; /* Reduced to be below header */
    /* Debug: Ensure container is clickable */
    pointer-events: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    cursor: pointer;
    position: relative;
    z-index: 999; /* Reduced to be below header */
    pointer-events: all;
    user-select: none;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Debug: Make button more obvious */
.btn-outline:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Mobile button adjustments */
@media (max-width: 768px) {
    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.main-wedding-image {
    width: 300px;
    height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin: 0 auto;
    box-shadow: var(--shadow-2xl);
    animation: float 4s ease-in-out infinite;
    position: relative;
}

.wedding-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.image-overlay i {
    font-size: 3rem;
    color: var(--primary);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.875rem;
    animation: float 5s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 1s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 3s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--white);
    margin: 0 auto 0.5rem;
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 4rem 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
}

/* Services Background Elements */
.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(245, 158, 11, 0.02) 0%, transparent 50%),
        linear-gradient(90deg, rgba(99, 102, 241, 0.01) 1px, transparent 1px),
        linear-gradient(rgba(99, 102, 241, 0.01) 1px, transparent 1px);
    background-size: 
        100% 100%,
        100% 100%,
        100% 100%,
        50px 50px,
        50px 50px;
    opacity: 0.8;
}

.floating-roses {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.rose-bg {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, rgba(255, 105, 180, 0.1) 100%);
    border-radius: 50%;
    animation: floatRose 6s ease-in-out infinite;
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
}

.rose-bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, rgba(255, 105, 180, 0.2) 100%);
    border-radius: 50%;
}

.rose-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.rose-2 {
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.rose-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

.rose-4 {
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

/* Mobile optimizations for services section */
@media (max-width: 768px) {
    .services-section {
        padding: 2rem 0; /* Normal padding */
        margin-top: 0 !important; /* No negative margins */
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    /* Disable all AOS animations on mobile for services */
    .services-section [data-aos],
    .services-section .section-header[data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape-bg {
    position: absolute;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
    animation: floatShape 10s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    border-radius: 50%;
    animation-delay: 1s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    right: 5%;
    border-radius: 20px;
    transform: rotate(45deg);
    animation-delay: 3s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 8%;
    border-radius: 50%;
    animation-delay: 5s;
}

@keyframes floatRose {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 0.8;
    }
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    position: relative;
    z-index: 2;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.intro-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.intro-text h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.intro-text p {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    /* Performance optimizations */
    will-change: transform;
    transform: translateZ(0);
    /* Enhanced design */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent var(--primary-light) transparent transparent;
    opacity: 0.3;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
    /* Enhanced design */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(99, 102, 241, 0.02));
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
    position: relative;
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    /* Enhanced design */
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    /* Enhanced design */
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
    /* Enhanced design */
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    /* Enhanced design */
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: var(--gray-700);
    line-height: 1.6;
}

.service-features li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.service-price {
    font-weight: 600;
    color: var(--primary);
}

.service-cta {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    /* Enhanced design */
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    background: transparent;
}

.service-cta:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray-600);
}

.about-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.feature-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.about-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* Stats below image styling - no boxes */
.about-stats-below-image {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-stats-below-image .stat {
    text-align: center;
}

.about-stats-below-image .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.about-stats-below-image .stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-stack {
    position: relative;
    width: 400px;
    height: 400px;
}

.image-item {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-1 {
    top: 0;
    left: 0;
    width: 250px;
    height: 250px;
    animation: float 6s ease-in-out infinite;
}

.image-2 {
    top: 100px;
    right: 0;
    width: 200px;
    height: 200px;
    animation: float 6s ease-in-out infinite 2s;
}

.image-3 {
    bottom: 0;
    left: 50px;
    width: 180px;
    height: 180px;
    animation: float 6s ease-in-out infinite 4s;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder i {
    font-size: 3rem;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 6rem 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--gray-100);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.value-card h4 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

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

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    cursor: pointer;
}

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

.gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

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

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.overlay-content p {
    margin-bottom: 1rem;
    color: var(--gray-200);
}

.view-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.view-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.testimonial-item {
    display: none;
    text-align: center;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-content {
    background: var(--gray-50);
    padding: 3rem;
    border-radius: var(--radius-xl);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.quote-icon i {
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--gray-700);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.author-avatar i {
    font-size: 1.5rem;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.author-info span {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: var(--accent);
    font-size: 0.875rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gray-300);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--gray-600);
}

.control-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.dot.active,
.dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 0;
    background: var(--gray-50);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.contact-details p {
    margin-bottom: 0.25rem;
    color: var(--gray-700);
    font-weight: 500;
}

.contact-details span {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-container {
    background: var(--white);
    padding: 3.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    /* Modern design enhancements */
    border: 1px solid rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    /* Enhanced container */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(99, 102, 241, 0.02));
    /* Full width with margins */
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--gray-800);
    font-size: 1rem;
    /* Enhanced label styling */
    position: relative;
}

/* Removed the purple accent lines under labels */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: var(--white);
    /* Modern input styling */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-family: inherit;
}

/* Enhanced date picker styling */
.form-group input[type="date"] {
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

/* Enhanced select styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

/* Enhanced textarea styling */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), 0 8px 25px rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

/* ===== NEW CHECKBOX STYLES - WHOLE LABEL CLICKABLE ===== */
.checkbox-item input[type="checkbox"] {
    display: none !important;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    margin-top: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-normal);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.checkbox-item:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.02));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

/* Removed duplicate rule */

/* New checkbox icon styles */
.checkbox-item .checkbox-icon {
    font-size: 1.2rem;
    color: var(--gray-400);
    margin-right: 0.75rem;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.checkbox-item:hover .checkbox-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-icon {
    color: var(--primary);
    transform: scale(1.2);
}

.checkbox-item input[type="checkbox"]:checked ~ * {
    color: var(--primary);
}

.checkbox-item input[type="checkbox"]:checked {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.2);
}

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 2rem;
    /* Enhanced submit button */
    background: var(--gradient-primary);
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    transition: all var(--transition-normal);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn .btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn .btn-icon {
    margin-left: 0.5rem;
    transition: transform var(--transition-normal);
}

.submit-btn:hover .btn-icon {
    transform: translateX(3px);
}

/* ===== CONTACT INFO BELOW FORM ===== */
.contact-info-below {
    margin-top: 2rem;
}

.contact-info-below .contact-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all var(--transition-normal);
    height: 100%;
    overflow: hidden;
    word-wrap: break-word;
}

.contact-info-below .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-info-below .contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.contact-info-below .contact-details h4 {
    color: var(--gray-800);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-info-below .contact-details p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.contact-info-below .contact-details span {
    color: var(--gray-600);
    font-size: 0.9rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.contact-info-below .social-links {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all var(--transition-normal);
    height: 100%;
}

.contact-info-below .social-links:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.contact-info-below .social-links h4 {
    color: var(--gray-800);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-below .social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-info-below .social-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.contact-info-below .social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* Mobile optimizations for contact info */
@media (max-width: 768px) {
    .contact-info-below .contact-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .contact-info-below .contact-icon {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .contact-info-below .contact-details {
        text-align: center;
    }
    
    .contact-info-below .contact-details h4,
    .contact-info-below .contact-details p,
    .contact-info-below .contact-details span {
        text-align: center;
        margin: 0 auto;
    }
    
    /* Fix icon alignment */
    .contact-info-below .contact-icon i {
        display: inline-block;
        vertical-align: middle;
    }
    
    /* Increase gap between boxes on mobile */
    .contact-info-below .row > div {
        margin-bottom: 1.5rem;
    }
    
    /* Ensure proper spacing */
    .contact-info-below .row {
        gap: 1.5rem;
    }
}

/* ===== FORM MESSAGES ===== */
.form-messages {
    margin-bottom: 2rem;
    position: relative;
}

/* Enhanced form section header */
.contact-form-container .section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.contact-form-container .section-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-container .section-header p {
    color: var(--gray-600);
    font-size: 1.05rem;
}

.message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    animation: slideInDown 0.5s ease-out;
}

.success-message {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: var(--white);
    border: 1px solid rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.error-message {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.message i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MINIMAL FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

/* Footer top section removed */

/* Footer widget styles removed */

/* All footer widget, logo, social, and links styles removed */

.footer-bottom {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--gray-400);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

/* All new footer styles removed - keeping only essential copyright */

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 120px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

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

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 100px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-section {
        text-align: center;
        padding: 120px 20px 60px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .contact-content {
        margin-bottom: 3rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    /* Keep hero features in single row on mobile */
    .hero-features {
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0.5rem;
        flex-direction: row;
    }
    
    .hero-features .feature-item {
        flex: 1;
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
        text-align: center;
        min-width: 0;
    }
    
    /* Keep hero stats in single row on mobile */
    .hero-stats {
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0.8rem;
        flex-direction: row;
    }
    
    .hero-stats .stat-item {
        flex: 1;
        text-align: center;
        min-width: 0;
    }
    
    .hero-stats .stat-number {
        font-size: 1.3rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.85rem;
    }
    
    /* Hide Bootstrap mobile menu on mobile */
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-toggler {
        display: none !important;
    }
    

    
    .services-intro .intro-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-elements {
        width: 200px;
        height: 200px;
    }
    
    .floating-rose, .floating-heart, .floating-star {
        font-size: 1.5rem;
    }
    
    /* Services background responsive */
    .rose-bg {
        width: 80px;
        height: 80px;
    }
    
    .rose-bg::before {
        width: 40px;
        height: 40px;
    }
    
    .shape-bg {
        width: 60px;
        height: 60px;
    }
    
    .bg-pattern {
        background-size: 
            100% 100%,
            100% 100%,
            100% 100%,
            30px 30px,
            30px 30px;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 4rem;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1rem;
        justify-content: space-between;
    }
    
    .hero-stats .stat-item {
        flex: 1;
        text-align: center;
        min-width: 0;
    }
    
    .hero-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.6rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ===== AOS ANIMATION OPTIMIZATIONS ===== */
[data-aos] {
    will-change: transform, opacity;
    transform: translateZ(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

/* Performance improvements for mobile */
@media (max-width: 768px) {
    [data-aos] {
        transition: transform 0.4s ease-out, opacity 0.4s ease-out;
        transform: translateY(20px);
    }
    
    /* Reduce animation complexity on mobile */
    .floating-elements,
    .wedding-particles {
        display: none;
    }
    
    /* Prevent layout shifts */
    .service-card,
    .contact-info-below .contact-item,
    .about-stats-below-image .stat {
        contain: layout style paint;
    }
    
    /* Disable AOS animations on mobile for services */
    .services-section [data-aos],
    .services-section .section-header[data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
    
    /* Completely disable all AOS animations on mobile */
    .services-section *[data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Mobile hero section fixes - eliminate cropping and white space */
@media (max-width: 768px) {
    /* Fix hero section cropping */
    .hero-section {
        min-height: 100vh !important; /* Full viewport height */
        max-height: none !important;
        padding: 80px 0 2rem 0 !important; /* Proper top and bottom padding */
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible !important;
    }
    
    .hero-content {
        position: relative;
        z-index: 999; /* Reduced to be below header */
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-features,
    .hero-stats,
    .hero-buttons {
        position: relative;
        z-index: 999; /* Consistent with hero-content */
        margin: 0;
        padding: 0;
    }
    
    /* Eliminate white space between hero and services */
    .services-section {
        margin-top: 0 !important; /* Remove negative margins */
        padding-top: 2rem !important; /* Normal padding */
        position: relative;
        z-index: 1;
    }
    
    /* Completely disable ALL AOS animations on mobile */
    .services-section,
    .services-section *,
    .services-section [data-aos],
    .services-section [data-aos] * {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        animation-delay: 0s !important;
        animation-duration: 0s !important;
    }
    
    /* Force immediate visibility */
    .services-section .section-header,
    .services-section .service-card {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== CUSTOM MOBILE MENU STYLES ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1060;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--white); 
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Hamburger icon color change on scroll */
.navbar.scrolled .mobile-menu-toggle span {
    background: var(--dark) !important;
    transition: background 0.3s ease;
}

/* Debug: Make sure navbar.scrolled is working */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.mobile-menu-toggle.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1055;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    padding: 0;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-content {
    text-align: center;
    padding: 2rem;
    max-width: 350px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mobile-menu-nav li {
    margin: 0.4rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
    
    .mobile-menu.active .mobile-menu-nav li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-menu-nav li:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu-nav li:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu-nav li:nth-child(3) { transition-delay: 0.3s; }
    .mobile-menu-nav li:nth-child(4) { transition-delay: 0.4s; }
    .mobile-menu-nav li:nth-child(5) { transition-delay: 0.5s; }
    .mobile-menu-nav li:nth-child(6) { transition-delay: 0.6s; }
    .mobile-menu-nav li:nth-child(7) { transition-delay: 0.7s; }

.mobile-menu-nav a {
    color: var(--white) !important;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    display: block;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
}

.mobile-menu-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.mobile-menu-nav a:hover::before {
    left: 100%;
}

.mobile-menu-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Mobile CTA Button */
.mobile-menu-nav .mobile-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    color: var(--white) !important;
    border: 2px solid var(--white) !important;
    margin-top: 0.8rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.5);
    font-size: 1rem;
    position: relative;
    z-index: 10;
}

.mobile-menu-nav .mobile-cta:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.6);
    border-color: var(--accent-light) !important;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Show mobile menu only on mobile devices */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .mobile-menu {
        display: flex !important;
    }
    
    /* Ensure mobile CTA is visible */
    .mobile-menu-nav .mobile-cta {
        background: var(--primary) !important;
        color: var(--white) !important;
        border: 2px solid var(--white) !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}
