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

:root {
    --primary-color: #000000;
    --secondary-color: #8b0000;
    --accent-gold: #ff8c00;
    --accent-gold-light: #ffa500;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #1a0000;
    --bg-dark: #000000;
    --white: #ffffff;
    --gradient-cosmic: linear-gradient(135deg, #000000 0%, #8b0000 25%, #dc143c 50%, #ff4500 75%, #ff8c00 100%);
    --gradient-gold: linear-gradient(135deg, #dc143c 0%, #ff4500 50%, #ff8c00 100%);
    --shadow-sm: 0 2px 8px rgba(220, 20, 60, 0.3);
    --shadow-md: 0 4px 16px rgba(220, 20, 60, 0.4);
    --shadow-lg: 0 8px 32px rgba(255, 140, 0, 0.5);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Force page to start at top */
html, body {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

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

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

.shiva-logo {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #000000 0%, #8b0000 100%);
    border: 2px solid var(--accent-gold);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    animation: logoFloat 3s ease-in-out infinite;
}

.shiva-image {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    z-index: 3;
    position: relative;
    animation: shivaBreath 4s ease-in-out infinite;
    filter: brightness(1.1) contrast(1.1);
}

.shiva-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(251, 191, 36, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: auraGlow 3s ease-in-out infinite;
    z-index: 1;
}

.shiva-aura::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: auraGlow 3s ease-in-out infinite reverse;
}

.om-symbol {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: omPulse 2s ease-in-out infinite;
    z-index: 4;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}

@keyframes shivaBreath {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 5px rgba(251, 191, 36, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 15px rgba(251, 191, 36, 0.6));
    }
}

@keyframes auraGlow {
    0%, 100% {
        border-color: rgba(251, 191, 36, 0.3);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        border-color: rgba(251, 191, 36, 0.8);
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

@keyframes omPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.9);
    }
}

.logo-img {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.5));
    animation: logoRotate 4s ease-in-out infinite;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.8), 0 0 30px rgba(220, 20, 60, 0.6);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

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

@keyframes logoRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-5deg) scale(1.05);
    }
    75% {
        transform: rotate(5deg) scale(1.05);
    }
}

@keyframes logoGlow {
    0% {
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.8), 0 0 30px rgba(220, 20, 60, 0.6);
    }
    100% {
        text-shadow: 0 0 30px rgba(255, 140, 0, 1), 0 0 40px rgba(220, 20, 60, 0.8), 0 0 50px rgba(255, 69, 0, 0.6);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

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

.btn-nav {
    padding: 10px 24px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--white);
}

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

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: kenBurns 20s ease-in-out infinite alternate;
    opacity: 0;
    transition: opacity 1s ease-in;
}

.hero-image.loaded {
    opacity: 1;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.stars-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 8s ease-in-out infinite;
    opacity: 0.4;
    z-index: 3;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-container {
    position: relative;
    z-index: 4;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
}

.badge-shine {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50px;
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        border-color: rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(0, 0, 0, 0.5);
    }
}

.hero-title {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.4s both;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

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

.glow-btn:hover::before {
    width: 300px;
    height: 300px;
}

.trust-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: nowrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    font-size: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    animation: fadeIn 1s ease-out 1.2s both;
    z-index: 4;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    transform: rotate(-45deg);
    margin: 8px auto 0;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

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

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

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

/* About Section */
.about {
    padding: 100px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a0000 25%, #330000 50%, #4d0000 75%, #660000 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: bgPulse 8s ease-in-out infinite;
}

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

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

.about-image {
    position: relative;
}

.shiva-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #000000 0%, #8b0000 50%, #dc143c 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 8px 32px rgba(220, 20, 60, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shiva-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.shiva-symbol {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: glow 2s ease-in-out infinite alternate;
}

.shiva-text {
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
    margin-bottom: 20px;
}

.cosmic-ring {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.cosmic-ring::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--accent-gold);
}

@keyframes glow {
    0% {
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
        transform: scale(1);
    }
    100% {
        text-shadow: 0 0 30px rgba(251, 191, 36, 0.8), 0 0 40px rgba(251, 191, 36, 0.6);
        transform: scale(1.1);
    }
}

.about-shiva-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--accent-gold);
}

.about-shiva-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gradient-cosmic);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cosmic-circle {
    width: 200px;
    height: 200px;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-text h3 {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.about-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.4);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    color: var(--accent-gold);
    margin-bottom: 8px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a0000 0%, #330000 25%, #4d0000 50%, #660000 75%, #800000 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, rgba(255, 140, 0, 0.6) 0%, transparent 50%),
        radial-gradient(2px 2px at 90% 30%, rgba(220, 20, 60, 0.6) 0%, transparent 50%),
        radial-gradient(1px 1px at 30% 60%, rgba(255, 140, 0, 0.5) 0%, transparent 50%),
        radial-gradient(2px 2px at 70% 80%, rgba(255, 69, 0, 0.6) 0%, transparent 50%),
        radial-gradient(1px 1px at 50% 40%, rgba(220, 20, 60, 0.5) 0%, transparent 50%),
        radial-gradient(2px 2px at 20% 90%, rgba(255, 140, 0, 0.6) 0%, transparent 50%),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 69, 0, 0.5) 0%, transparent 50%),
        radial-gradient(2px 2px at 40% 30%, rgba(220, 20, 60, 0.6) 0%, transparent 50%),
        radial-gradient(1px 1px at 60% 70%, rgba(255, 140, 0, 0.5) 0%, transparent 50%),
        radial-gradient(2px 2px at 15% 50%, rgba(255, 69, 0, 0.6) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: floatingDots 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatingDots {
    0%, 100% { 
        background-position: 0% 0%, 100% 0%, 50% 50%, 100% 100%, 0% 100%, 25% 75%, 75% 25%, 40% 60%, 60% 40%, 20% 80%;
        opacity: 0.6;
    }
    25% {
        background-position: 20% 30%, 80% 20%, 60% 40%, 90% 90%, 10% 80%, 35% 65%, 85% 15%, 50% 70%, 70% 30%, 30% 70%;
        opacity: 0.8;
    }
    50% { 
        background-position: 30% 50%, 70% 40%, 70% 30%, 80% 80%, 20% 70%, 45% 55%, 95% 5%, 60% 80%, 80% 20%, 40% 60%;
        opacity: 1;
    }
    75% {
        background-position: 10% 40%, 90% 30%, 55% 60%, 85% 85%, 15% 90%, 30% 70%, 80% 20%, 45% 65%, 65% 45%, 25% 75%;
        opacity: 0.8;
    }
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
    align-items: stretch;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

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

.service-card:hover::after {
    width: 400px;
    height: 400px;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 40px rgba(30, 58, 138, 0.15);
    border-color: var(--accent-gold);
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
    background: var(--gradient-cosmic);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

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

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-card h3 {
    font-size: 1.375rem;
    color: #000000;
    margin: 20px 20px 12px;
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.service-card p {
    color: #333333;
    margin: 0 24px 20px;
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    text-align: left;
}

.service-btn {
    display: inline-block;
    padding: 14px 32px;
    margin: auto 24px 24px;
    background: var(--gradient-cosmic);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    align-self: center;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.service-btn:hover::before {
    width: 300px;
    height: 300px;
}

.service-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.35);
}

/* Service card animations on scroll */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.service-card.fade-in {
    animation: fadeInScale 0.6s ease-out forwards;
}

/* Stagger animation for service cards */
.service-card:nth-child(1) { animation-delay: 0.05s; }
.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.15s; }
.service-card:nth-child(4) { animation-delay: 0.2s; }
.service-card:nth-child(5) { animation-delay: 0.25s; }
.service-card:nth-child(6) { animation-delay: 0.3s; }
.service-card:nth-child(7) { animation-delay: 0.35s; }
.service-card:nth-child(8) { animation-delay: 0.4s; }
.service-card:nth-child(9) { animation-delay: 0.45s; }
.service-card:nth-child(10) { animation-delay: 0.5s; }
.service-card:nth-child(11) { animation-delay: 0.55s; }
.service-card:nth-child(12) { animation-delay: 0.6s; }
.service-card:nth-child(13) { animation-delay: 0.65s; }
.service-card:nth-child(14) { animation-delay: 0.7s; }
.service-card:nth-child(15) { animation-delay: 0.75s; }
.service-card:nth-child(16) { animation-delay: 0.8s; }
.service-card:nth-child(17) { animation-delay: 0.85s; }
.service-card:nth-child(18) { animation-delay: 0.9s; }
.service-card:nth-child(19) { animation-delay: 0.95s; }
.service-card:nth-child(20) { animation-delay: 1s; }

/* Why Choose Section */
.why-choose {
    padding: 100px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a0000 25%, #330000 50%, #4d0000 75%, #660000 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 140, 0, 0.4) 1px, transparent 1px),
        radial-gradient(circle, rgba(220, 20, 60, 0.4) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: moveDots 20s linear infinite;
    pointer-events: none;
}

@keyframes moveDots {
    0% { background-position: 0 0, 40px 40px; }
    100% { background-position: 50px 50px, 90px 90px; }
}

.why-choose .section-tag {
    color: var(--accent-gold);
    position: relative;
    z-index: 1;
}

.why-choose .section-title {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Cinzel', serif;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a0000 0%, #330000 25%, #4d0000 50%, #660000 75%, #800000 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 140, 0, 0.3) 2px, transparent 2px),
        radial-gradient(circle, rgba(220, 20, 60, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 69, 0, 0.3) 1.5px, transparent 1.5px);
    background-size: 100px 100px, 60px 60px, 80px 80px;
    background-position: 0 0, 30px 30px, 50px 50px;
    animation: sparkle 25s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { 
        background-position: 0 0, 30px 30px, 50px 50px;
        opacity: 0.4;
    }
    25% {
        opacity: 0.7;
    }
    50% { 
        background-position: 100px 100px, 90px 90px, 130px 130px;
        opacity: 0.5;
    }
    75% {
        opacity: 0.8;
    }
    100% { 
        background-position: 200px 200px, 180px 180px, 210px 210px;
        opacity: 0.4;
    }
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-cosmic);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1.125rem;
    color: #000000;
    margin-bottom: 4px;
}

.author-info p {
    color: #666666;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-cosmic);
    color: var(--white);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Consultation Form Section */
.consultation-form {
    padding: 100px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a0000 25%, #330000 50%, #4d0000 75%, #660000 100%);
    position: relative;
    overflow: hidden;
}

.consultation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 140, 0, 0.5) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(220, 20, 60, 0.5) 1px, transparent 1px);
    background-size: 70px 70px, 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: driftDots 30s ease-in-out infinite;
    pointer-events: none;
}

@keyframes driftDots {
    0%, 100% { 
        transform: translate(0, 0);
        opacity: 0.5;
    }
    25% {
        transform: translate(20px, 20px);
        opacity: 0.7;
    }
    50% { 
        transform: translate(0, 40px);
        opacity: 0.6;
    }
    75% {
        transform: translate(-20px, 20px);
        opacity: 0.8;
    }
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 140, 0, 0.3);
    backdrop-filter: blur(10px);
}

.consultation-form-element {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.125rem;
    margin-top: 16px;
}

.payment-info {
    margin-top: 32px;
    text-align: center;
    padding-top: 32px;
    border-top: 2px solid #e5e7eb;
}

.payment-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.payment-icons span {
    font-size: 0.95rem;
    color: var(--white);
}

/* Blog Section */
.blog {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background: var(--gradient-cosmic);
}

.blog-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-content {
    padding: 32px;
}

.blog-category {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-gold);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blog-content h3 {
    font-size: 1.375rem;
    color: #000000;
    margin-bottom: 12px;
}

.blog-content p {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.blog-link {
    color: #dc143c;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--accent-gold);
}

/* FAQ Section */
.faq {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1a0000 0%, #330000 25%, #4d0000 50%, #660000 75%, #800000 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 140, 0, 0.4) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: pulseDots 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseDots {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

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

.faq-answer p {
    padding: 24px;
    color: #000000;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a0000 25%, #330000 50%, #4d0000 75%, #660000 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(220, 20, 60, 0.4) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(255, 140, 0, 0.3) 1px, transparent 1px);
    background-size: 80px 80px, 50px 50px;
    background-position: 0 0, 40px 40px;
    animation: twinkleDots 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes twinkleDots {
    0%, 100% { opacity: 0.4; }
    25% { opacity: 0.7; }
    50% { opacity: 0.5; }
    75% { opacity: 0.8; }
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: contents;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.contact-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.contact-item-link:hover .contact-item {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    cursor: pointer;
}

.contact-details span {
    color: #666666;
    display: block;
    transition: var(--transition);
}

.contact-item-link:hover .contact-details span {
    color: var(--accent-gold);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    color: #000000;
    margin-bottom: 8px;
}

.contact-details a {
    color: #666666;
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--accent-gold);
}

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

.social-links a {
    padding: 8px 16px;
    background: var(--gradient-cosmic);
    color: var(--white);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    background: var(--gradient-cosmic);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.map-placeholder p {
    font-size: 2rem;
    margin-bottom: 8px;
}

.map-placeholder small {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: #000;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 20px 32px;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 8px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Floating Call Button */
.call-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #dc143c 0%, #ff4500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: callPulse 2s infinite;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(220, 20, 60, 0.6);
}

@keyframes callPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(220, 20, 60, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(220, 20, 60, 0.7);
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7);
    }
}

/* Mobile CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 20px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    z-index: 998;
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gradient-gold);
    color: var(--primary-color);
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        gap: 24px;
        border-top: 2px solid var(--accent-gold);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        color: var(--white);
        font-size: 1.125rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu .btn-nav {
        background: var(--gradient-gold);
        color: var(--primary-color);
        padding: 16px 32px;
        border-radius: 12px;
        text-align: center;
        margin-top: 20px;
    }

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

    .hero-image {
        object-position: center center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0 10px;
    }

    .badge {
        flex-shrink: 0;
        min-width: fit-content;
        font-size: 0.85rem;
        padding: 10px 15px;
    }

    .badge-shine {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .service-card {
        max-width: 100%;
    }

    .service-image {
        height: 200px;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin: 16px 16px 12px;
    }

    .service-card p {
        margin: 0 16px 16px;
        font-size: 0.9rem;
        text-align: center;
    }

    .service-btn {
        margin: 0 16px 20px;
        padding: 12px 24px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .mobile-cta {
        display: block;
    }

    .whatsapp-float {
        bottom: 90px;
    }
    
    .call-float {
        bottom: 160px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .call-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .badge-shine {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .service-card {
        max-width: 100%;
    }

    .service-image {
        height: 180px;
    }

    .service-card h3 {
        font-size: 1.15rem;
        margin: 14px 14px 10px;
    }

    .service-card p {
        font-size: 0.875rem;
        margin: 0 14px 14px;
        line-height: 1.6;
    }

    .service-btn {
        padding: 11px 20px;
        font-size: 0.875rem;
        margin: 0 14px 18px;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 90px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-image {
        object-position: center top;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .service-card {
        max-width: 100%;
    }

    .service-image {
        height: 200px;
    }

    .service-card h3 {
        margin: 18px 20px 12px;
    }

    .service-card p {
        margin: 0 20px 18px;
    }

    .service-btn {
        margin: 0 20px 22px;
    }
}

/* Large tablets and small desktops */
@media (min-width: 1025px) and (max-width: 1280px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .service-image {
        height: 210px;
    }
}

/* Extra large screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }

    .service-image {
        height: 230px;
    }

    .service-card h3 {
        margin: 22px 24px 14px;
    }

    .service-card p {
        margin: 0 28px 22px;
    }

    .service-btn {
        margin: 0 28px 26px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Success Message */
.success-message {
    padding: 16px;
    background: #d1fae5;
    color: #065f46;
    border-radius: 8px;
    margin-top: 16px;
    text-align: center;
    font-weight: 600;
}

/* Error Message */
.error-message {
    padding: 16px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: 8px;
    margin-top: 16px;
    text-align: center;
    font-weight: 600;
}

/* Form Message */
.form-message {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.5;
    display: none;
}

.form-message.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 2px solid #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.form-message.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    border: 2px solid #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Falling Flowers Animation */
.falling-flower {
    position: absolute;
    font-size: 24px;
    pointer-events: none;
    z-index: 9999;
    animation: flowerFall linear forwards;
    opacity: 1;
}

@keyframes flowerFall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(500px) translateX(var(--drift, 0px)) rotate(var(--rotation, 360deg));
        opacity: 0;
    }
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    z-index: 10001;
    max-width: 90%;
    max-height: 90%;
    animation: modalZoom 0.3s ease;
}

@keyframes modalZoom {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    font-size: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    background: white;
    color: #000;
    transform: rotate(90deg);
}

.service-card .service-image img {
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .modal-close {
        top: -50px;
        width: 36px;
        height: 36px;
        font-size: 28px;
    }
}

/* Locations Section */
.locations {
    padding: 80px 20px;
    background: linear-gradient(135deg, #000000 0%, #1a0000 25%, #330000 50%, #4d0000 75%, #660000 100%);
    position: relative;
    overflow: hidden;
}

.locations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(255, 140, 0, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(220, 20, 60, 0.3) 1.5px, transparent 1.5px);
    background-size: 40px 40px, 70px 70px;
    background-position: 0 0, 20px 20px;
    animation: locationDots 20s linear infinite;
    opacity: 0.6;
}

@keyframes locationDots {
    0% { background-position: 0 0, 20px 20px; }
    100% { background-position: 40px 40px, 90px 90px; }
}

.locations .container {
    position: relative;
    z-index: 1;
}

.locations .section-header {
    margin-bottom: 60px;
}

.locations .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.locations .section-title {
    color: white;
}

.locations .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.locations-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.location-category {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.location-country {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.location-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    color: #dc143c;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.location-card:hover::before {
    left: 100%;
}

.location-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
    background: linear-gradient(135deg, #dc143c 0%, #ff4500 50%, #ff8c00 100%);
    color: white;
}

@media (max-width: 768px) {
    .locations {
        padding: 60px 20px;
    }
    
    .location-category {
        padding: 20px;
    }
    
    .location-country {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .location-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .location-card {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Banner Section */
.banner-section {
    width: 100vw;
    margin-top: 80px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.banner-container {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center center;
    animation: bannerFadeIn 1s ease-in-out, blurEffect 2s ease-in-out forwards;
    max-width: 100vw;
    min-height: 100vh;
}

@keyframes blurEffect {
    0% {
        filter: blur(0px);
    }
    60% {
        filter: blur(0px);
    }
    100% {
        filter: blur(8px);
    }
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 2;
    pointer-events: none;
    animation: darkenOverlay 2s ease-in-out forwards;
}

@keyframes darkenOverlay {
    0% {
        background: rgba(0, 0, 0, 0);
    }
    60% {
        background: rgba(0, 0, 0, 0);
    }
    100% {
        background: rgba(0, 0, 0, 0.6);
    }
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    max-width: 1200px;
    width: 90%;
    padding: 40px 20px;
    text-align: center;
    opacity: 0;
    animation: showContent 1s ease-out 2s forwards;
}

@keyframes showContent {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes bannerFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .banner-section {
        margin-top: 70px;
        min-height: 100vh;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .banner-content {
        padding: 30px 15px;
        width: 95%;
    }
    
    .banner-image {
        object-fit: cover;
        min-height: 100vh;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .banner-section {
        margin-top: 60px;
        min-height: 100vh;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .banner-content {
        padding: 20px 15px;
        width: 95%;
    }
    
    .banner-image {
        object-fit: cover;
        min-height: 100vh;
    }
    
    .banner-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .banner-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .banner-content .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Service Pages Styles */
.service-hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #1e1b4b 100%);
    color: white;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-hero-image {
    position: relative;
}

.hero-service-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--accent-gold);
}

.service-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.service-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

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

.feature {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-details {
    padding: 100px 20px;
    background: var(--bg-light);
}

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

.detail-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.detail-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.detail-card ul {
    list-style: none;
    padding: 0;
}

.detail-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
}

.detail-card ul li:last-child {
    border-bottom: none;
}

.detail-card ul li strong {
    color: var(--primary-color);
}

.service-pricing {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.service-pricing .section-title {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-card.featured {
    border-color: var(--accent-gold);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--primary-color);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.price-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.price-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.price-card ul li:last-child {
    border-bottom: none;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .service-title {
        font-size: 1.75rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .detail-card {
        padding: 24px;
    }
    
    .price-card {
        padding: 32px 24px;
    }
}
/* Clickable Service Cards */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    transform: translateY(-8px);
}

.service-card-link .service-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-link:hover .service-card {
    transform: none; /* Prevent double transform */
    box-shadow: 0 16px 48px rgba(30, 58, 138, 0.2);
    border-color: var(--accent-gold);
}

.service-card-link .service-btn {
    display: inline-block;
    padding: 14px 32px;
    margin: 0 24px 24px;
    background: var(--gradient-cosmic);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
    pointer-events: none; /* Prevent button from interfering with card click */
}

.service-card-link:hover .service-btn {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.35);
}
/* Animated Background Dots */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.8) 0%, rgba(251, 191, 36, 0.4) 50%, transparent 100%);
    animation: float 6s ease-in-out infinite;
}

.dot:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.dot:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 20%;
    left: 80%;
    animation-delay: 1s;
    animation-duration: 10s;
}

.dot:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 35%;
    left: 25%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.dot:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 50%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.dot:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 65%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 11s;
}

.dot:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 80%;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 6s;
}

.dot:nth-child(7) {
    width: 3px;
    height: 3px;
    top: 15%;
    left: 45%;
    animation-delay: 1.5s;
    animation-duration: 8.5s;
}

.dot:nth-child(8) {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 85%;
    animation-delay: 2.5s;
    animation-duration: 7.5s;
}

.dot:nth-child(9) {
    width: 4px;
    height: 4px;
    top: 75%;
    left: 30%;
    animation-delay: 3.5s;
    animation-duration: 9.5s;
}

.dot:nth-child(10) {
    width: 6px;
    height: 6px;
    top: 25%;
    left: 5%;
    animation-delay: 4.5s;
    animation-duration: 10.5s;
}

.dot:nth-child(11) {
    width: 3px;
    height: 3px;
    top: 55%;
    left: 50%;
    animation-delay: 0.5s;
    animation-duration: 8s;
}

.dot:nth-child(12) {
    width: 5px;
    height: 5px;
    top: 85%;
    left: 90%;
    animation-delay: 1.8s;
    animation-duration: 7.2s;
}

.dot:nth-child(13) {
    width: 4px;
    height: 4px;
    top: 5%;
    left: 65%;
    animation-delay: 2.8s;
    animation-duration: 9.8s;
}

.dot:nth-child(14) {
    width: 6px;
    height: 6px;
    top: 45%;
    left: 15%;
    animation-delay: 3.8s;
    animation-duration: 6.8s;
}

.dot:nth-child(15) {
    width: 3px;
    height: 3px;
    top: 70%;
    left: 75%;
    animation-delay: 4.8s;
    animation-duration: 11.2s;
}

.dot:nth-child(16) {
    width: 5px;
    height: 5px;
    top: 30%;
    left: 95%;
    animation-delay: 0.8s;
    animation-duration: 8.8s;
}

.dot:nth-child(17) {
    width: 4px;
    height: 4px;
    top: 60%;
    left: 40%;
    animation-delay: 1.3s;
    animation-duration: 7.8s;
}

.dot:nth-child(18) {
    width: 7px;
    height: 7px;
    top: 90%;
    left: 20%;
    animation-delay: 2.3s;
    animation-duration: 10.3s;
}

.dot:nth-child(19) {
    width: 3px;
    height: 3px;
    top: 12%;
    left: 35%;
    animation-delay: 3.3s;
    animation-duration: 6.3s;
}

.dot:nth-child(20) {
    width: 6px;
    height: 6px;
    top: 48%;
    left: 8%;
    animation-delay: 4.3s;
    animation-duration: 9.3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(5px) scale(1.1);
        opacity: 0.4;
    }
}

/* Pulsing dots for extra effect */
.dot:nth-child(even) {
    animation-name: pulse-float;
}

@keyframes pulse-float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.2;
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4);
    }
    25% {
        transform: translateY(-15px) translateX(-10px) scale(1.3);
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(251, 191, 36, 0);
    }
    50% {
        transform: translateY(-25px) translateX(12px) scale(0.9);
        opacity: 0.9;
        box-shadow: 0 0 0 5px rgba(251, 191, 36, 0.1);
    }
    75% {
        transform: translateY(-8px) translateX(-8px) scale(1.15);
        opacity: 0.5;
        box-shadow: 0 0 0 15px rgba(251, 191, 36, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dot {
        display: none;
    }
    
    .dot:nth-child(-n+10) {
        display: block;
    }
}

@media (max-width: 480px) {
    .dot:nth-child(-n+6) {
        display: block;
    }
    
    .dot:nth-child(n+7) {
        display: none;
    }
}