/* Eagles Plan Ltd. - Modern Styles */

/* CSS Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --blue-50: #eff6ff;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-500: #8b5cf6;
    --purple-600: #7c3aed;
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --orange-500: #f97316;
    --red-500: #ef4444;
    --yellow-500: #eab308;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(to bottom right, var(--gray-50), var(--blue-50));
    min-height: 100vh;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Typography */
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-7xl { font-size: 4.5rem; }

/* Spacing */
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-20 { margin-top: 5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

/* Layout */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.flex-col { flex-direction: column; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-y-0 { top: 0; bottom: 0; }

/* Z-index */
.z-10 { z-index: 10; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Width and Height */
.w-full { width: 100%; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }

.h-1 { height: 0.25rem; }
.h-12 { width: 3rem; }
.h-16 { height: 4rem; }

.min-h-screen { min-height: 100vh; }

.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }

/* Colors */
.text-white { color: var(--white); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-800 { color: var(--gray-800); }
.text-blue-500 { color: var(--blue-500); }
.text-blue-600 { color: var(--blue-600); }
.text-purple-600 { color: var(--purple-600); }
.text-pink-600 { color: var(--pink-600); }
.text-green-500 { color: var(--green-500); }
.text-orange-500 { color: var(--orange-500); }
.text-red-500 { color: var(--red-500); }

.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }

.bg-white { background-color: var(--white); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-blue-100 { background-color: var(--blue-100); }
.bg-purple-100 { background-color: var(--purple-100); }
.bg-pink-100 { background-color: var(--pink-100); }

/* Borders */
.border { border-width: 1px; border-color: var(--gray-200); }
.border-b { border-bottom-width: 1px; border-bottom-color: var(--gray-100); }
.border-r { border-right-width: 1px; }
.border-t { border-top-width: 1px; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-gray-100 { border-color: var(--gray-100); }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Transforms */
.transform { transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); }
.-translate-x-full { transform: translateX(-100%); }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Transitions */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Animations */
.animate-bounce {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* Hover Effects */
.hover\:text-white:hover { color: var(--white); }
.hover\:text-green-400:hover { color: var(--green-400); }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\:from-green-600:hover { background-image: linear-gradient(to right, var(--green-600), var(--green-700)); }
.hover\:to-green-700:hover { background-image: linear-gradient(to right, var(--green-600), var(--green-700)); }

/* Background Gradients */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--from-color), var(--to-color)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--from-color), var(--to-color)); }
.from-gray-50 { --from-color: var(--gray-50); }
.to-blue-50 { --to-color: var(--blue-50); }
.from-purple-50 { --from-color: var(--purple-50); }
.to-pink-50 { --to-color: var(--pink-50); }
.from-gray-900 { --from-color: var(--gray-900); }
.to-blue-900 { --to-color: #1e3a8a; }
.from-blue-500 { --from-color: var(--blue-500); }
.to-purple-500 { --to-color: var(--purple-500); }
.from-purple-500 { --from-color: var(--purple-500); }
.to-pink-500 { --to-color: var(--pink-500); }
.from-blue-400 { --from-color: var(--blue-400); }
.to-cyan-400 { --to-color: #22d3ee; }
.from-green-500 { --from-color: var(--green-500); }
.to-green-600 { --to-color: var(--green-600); }

/* Glass Effects */
.glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.gradient-bg {
    background: var(--primary-gradient);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Cards */
.modern-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.modern-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Hero Background */
.hero-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatShapes 15s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes floatShapes {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    33% { transform: translateY(-30px) translateX(20px) rotate(120deg); }
    66% { transform: translateY(20px) translateX(-20px) rotate(240deg); }
}

/* Modern Button */
.modern-btn {
    background: var(--accent-gradient);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

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

.modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
}

/* Modern Input */
.modern-input {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    font-size: 1rem;
}

.modern-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.modern-input::placeholder {
    color: var(--gray-600);
}

/* Services Section */
.service-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    color: var(--gray-600);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--blue-300);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--blue-500), var(--purple-500));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.services-showcase {
    margin-top: 3rem;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category.hidden {
    display: none;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.category-subtitle {
    color: var(--gray-600);
    font-size: 1.1rem;
}

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--blue-200);
}

.product-card.featured {
    border: 2px solid var(--blue-300);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--orange-500), var(--red-500));
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue-500), var(--purple-500));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--purple-500), var(--pink-500));
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.product-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
    padding: 5rem 2rem;
    margin: 4rem 0;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.15), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.15), transparent 50%);
    pointer-events: none;
}

.cta-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: left;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cta-badge i {
    font-size: 0.8rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #e2e8f0, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #e2e8f0;
    font-weight: 500;
}

.cta-feature i {
    color: #10b981;
    font-size: 1.1rem;
}

.cta-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-circle {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    position: relative;
    animation: rotate 20s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon {
    font-size: 3rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-carts {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cart-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    animation: float-cart 4s ease-in-out infinite;
}

.cart-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.cart-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.cart-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 3s;
}

@keyframes float-cart {
    0%, 100% { 
        transform: translateY(0px) scale(0.8); 
        opacity: 0.5; 
    }
    50% { 
        transform: translateY(-15px) scale(1); 
        opacity: 0.8; 
    }
}

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

.cta-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
    z-index: -1;
    animation: rotate 15s linear infinite reverse;
}

.cta-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(59, 130, 246, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

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

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

@media (max-width: 768px) {
    .cta-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-visual {
        height: 200px;
    }
    
    .cta-circle {
        width: 150px;
        height: 150px;
    }
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        justify-content: center;
    }
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 2rem 0;
    position: relative;
}

.cta-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-card:hover .stat-glow {
    opacity: 1;
    transform: scale(1.2);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #60a5fa, #a855f7, #ec4899);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.stat-content {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
    text-shadow: none;
}

.stat-label {
    color: #e5e7eb;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.stat-card:nth-child(1) .stat-glow { animation: pulse-glow 3s infinite; animation-delay: 0s; }
.stat-card:nth-child(2) .stat-glow { animation: pulse-glow 3s infinite; animation-delay: 0.5s; }
.stat-card:nth-child(3) .stat-glow { animation: pulse-glow 3s infinite; animation-delay: 1s; }
.stat-card:nth-child(4) .stat-glow { animation: pulse-glow 3s infinite; animation-delay: 1.5s; }

/* Button Styles for CTA */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-500), var(--purple-500));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, var(--blue-600), var(--purple-600));
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--green-400);
    color: var(--green-600);
}

.mr-2 {
    margin-right: 0.5rem;
}

/* Service Icons */
.service-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

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

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Star Rating */
.star-rating input { display: none; }
.star-rating label { 
    cursor: pointer; 
    color: #d1d5db; 
    font-size: 1.5rem; 
    transition: all 0.2s ease; 
}
.star-rating input:checked ~ label, 
.star-rating label:hover, 
.star-rating label:hover ~ label { 
    color: #f59e0b; 
    transform: scale(1.1); 
}
.star-filled { color: #f59e0b; }
.star-empty { color: #d1d5db; }

/* Navigation */
.nav-link {
    position: relative;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: transparent;
}

/* Adaptive nav links based on section backgrounds */
.header.on-dark .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.header.on-light .nav-link {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 700;
}

.header.on-blue .nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.header.on-gradient .nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.2);
    text-shadow: 
        0 0 5px rgba(255, 215, 0, 0.8),
        0 0 10px rgba(255, 165, 0, 0.6),
        0 0 15px rgba(255, 105, 180, 0.4),
        0 0 20px rgba(138, 43, 226, 0.3),
        0 0 25px rgba(0, 191, 255, 0.2);
    animation: luminous-stream 2s ease-in-out infinite alternate;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

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

@keyframes luminous-stream {
    0% {
        text-shadow: 
            0 0 5px rgba(255, 215, 0, 0.8),
            0 0 10px rgba(255, 165, 0, 0.6),
            0 0 15px rgba(255, 105, 180, 0.4),
            0 0 20px rgba(138, 43, 226, 0.3),
            0 0 25px rgba(0, 191, 255, 0.2);
    }
    25% {
        text-shadow: 
            0 0 5px rgba(255, 105, 180, 0.8),
            0 0 10px rgba(138, 43, 226, 0.6),
            0 0 15px rgba(0, 191, 255, 0.4),
            0 0 20px rgba(50, 205, 50, 0.3),
            0 0 25px rgba(255, 215, 0, 0.2);
    }
    50% {
        text-shadow: 
            0 0 5px rgba(138, 43, 226, 0.8),
            0 0 10px rgba(0, 191, 255, 0.6),
            0 0 15px rgba(50, 205, 50, 0.4),
            0 0 20px rgba(255, 20, 147, 0.3),
            0 0 25px rgba(255, 165, 0, 0.2);
    }
    75% {
        text-shadow: 
            0 0 5px rgba(0, 191, 255, 0.8),
            0 0 10px rgba(50, 205, 50, 0.6),
            0 0 15px rgba(255, 20, 147, 0.4),
            0 0 20px rgba(255, 215, 0, 0.3),
            0 0 25px rgba(138, 43, 226, 0.2);
    }
    100% {
        text-shadow: 
            0 0 5px rgba(50, 205, 50, 0.8),
            0 0 10px rgba(255, 20, 147, 0.6),
            0 0 15px rgba(255, 215, 0, 0.4),
            0 0 20px rgba(255, 105, 180, 0.3),
            0 0 25px rgba(0, 191, 255, 0.2);
    }
}

/* Sidebar */
#sidebar {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-right: 1px solid rgba(255, 215, 0, 0.2);
}

#overlay {
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.sidebar-link {
display: flex;
align-items: center;
color: rgba(255, 255, 255, 0.9);
text-decoration: none;
padding: 0.75rem 1.5rem;
border-radius: 12px;
transition: all 0.3s ease;
margin: 0.25rem 0;
position: relative;
overflow: hidden;
}

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

.sidebar-link:hover::before {
left: 100%;
}

.sidebar-link:hover {
color: #ffd700;
background: rgba(255, 215, 0, 0.15);
transform: translateX(8px);
box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.sidebar-link i {
margin-right: 1rem;
width: 20px;
text-align: center;
transition: all 0.3s ease;
}

.sidebar-link:hover i {
color: #ffd700;
transform: scale(1.2);
}

/* Responsive Grid */
@media (min-width: 768px) {
.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.md\:flex { display: flex; }
.md\:hidden { display: none; }
.md\:text-left { text-align: left; }
.md\:text-right { text-align: right; }
.md\:text-5xl { font-size: 3rem; }
.md\:text-7xl { font-size: 4.5rem; }
.md\:text-2xl { font-size: 1.5rem; }
.md\:justify-start { justify-content: flex-start; }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:text-left { text-align: left; }
    .md\:text-right { text-align: right; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:justify-start { justify-content: flex-start; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .md\:hidden { display: block; }
}

/* Custom Styles */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
    margin: 4rem 0;
}

/* Tag Styles */
.tag {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.tag-blue {
    background-color: var(--blue-100);
    color: var(--blue-600);
}

.tag-purple {
    background-color: var(--purple-100);
    color: var(--purple-600);
}

.tag-pink {
    background-color: var(--pink-100);
    color: var(--pink-600);
}

/* Flex Utilities */
.flex-wrap { flex-wrap: wrap; }

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(to right, var(--green-500), var(--green-600));
    color: var(--white);
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: linear-gradient(to right, var(--green-600), var(--green-700));
    transform: translateY(-2px);
}

/* Contact Icons */
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-icon-blue {
    background: linear-gradient(to right, var(--blue-500), #06b6d4);
}

.contact-icon-purple {
    background: linear-gradient(to right, var(--purple-500), var(--pink-500));
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Layout Components */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 280px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    z-index: 50;
    border-right: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    list-style: none;
}

.overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 40;
    transition: opacity 0.3s ease;
}

.overlay.hidden {
    display: none;
}

.header {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 30;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.logo i {
    color: #ffd700;
    animation: eagle-glow 3s ease-in-out infinite alternate;
}

@keyframes eagle-glow {
    0% { text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 30px rgba(255, 215, 0, 0.4); }
}

.nav-menu {
    display: none;
    gap: 1rem;
    list-style: none;
    margin-left: auto;
    margin-right: 0.5rem;
}

.nav-menu.desktop {
    display: flex;
}

.hamburger {
    display: block;
    color: rgba(0, 0, 0, 0.7);
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.375rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hamburger:hover {
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Hero Section - Divine Style */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 25%, #1a1a1a 50%, #0a0a0a 75%, #000000 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.divine-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.celestial-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent, rgba(255, 255, 255, 0.05), transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: divine-rotate 30s linear infinite;
}

.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.1), transparent);
    animation: divine-float 8s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.orb-1 { width: 100px; height: 100px; top: 15%; left: 10%; animation-delay: 0s; }
.orb-2 { width: 60px; height: 60px; top: 25%; right: 20%; animation-delay: 2s; }
.orb-3 { width: 80px; height: 80px; bottom: 30%; left: 15%; animation-delay: 4s; }
.orb-4 { width: 40px; height: 40px; top: 60%; right: 10%; animation-delay: 6s; }
.orb-5 { width: 120px; height: 120px; bottom: 20%; right: 25%; animation-delay: 1s; }

.divine-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    animation: divine-sparkle 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.particle:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; right: 25%; animation-delay: 0.5s; }
.particle:nth-child(3) { bottom: 35%; left: 20%; animation-delay: 1s; }
.particle:nth-child(4) { top: 70%; left: 60%; animation-delay: 1.5s; }
.particle:nth-child(5) { bottom: 50%; right: 15%; animation-delay: 2s; }
.particle:nth-child(6) { top: 30%; left: 70%; animation-delay: 2.5s; }

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

@keyframes divine-float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 0.9; }
}

@keyframes divine-sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1.5); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
}

.hero-badge i {
    font-size: 1rem;
    color: #ffd700;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.1;
}

.divine-text {
    background: linear-gradient(135deg, #ffd700, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: divine-glow 3s ease-in-out infinite alternate;
    position: relative;
}

.divine-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: divine-underline 2s ease-in-out infinite alternate;
}

.hero-subtitle-line {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 3.5rem;
    margin-top: 0.5rem;
}

.company-name {
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: divine-underline 2s ease-in-out infinite;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.hero-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.hero-stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.divine-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divine-btn.primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a3e;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.divine-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.divine-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.divine-btn.primary:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.divine-btn.secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.6);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.divine-btn:hover .btn-glow {
    left: 100%;
}

@keyframes divine-glow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 255, 255, 0.3); }
}

@keyframes divine-underline {
    0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

/* Scroll-triggered Product Animations */
.product-animations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.scroll-product {
    position: absolute;
    font-size: 2.5rem;
    color: #ffd700;
    opacity: 0.8;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: product-float 6s ease-in-out infinite;
}

.product-phone {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.product-cart {
    top: 60%;
    left: 8%;
    animation-delay: 1.2s;
}

.product-delivery {
    top: 25%;
    left: 15%;
    animation-delay: 2.4s;
}

.product-package {
    bottom: 20%;
    right: 20%;
    animation-delay: 3.6s;
}

.product-order {
    top: 45%;
    right: 5%;
    animation-delay: 4.8s;
}

@keyframes product-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(-25px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

/* Product Animation Details */
.order-pulse {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse-order 2s ease-in-out infinite;
}

@keyframes pulse-order {
    0%, 100% { transform: scale(0.8); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.cart-items {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.cart-item {
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 2px;
    margin: 2px;
    animation: cart-bounce 1.5s ease-in-out infinite;
}

.cart-item:nth-child(2) { animation-delay: 0.3s; }
.cart-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes cart-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.delivery-trail {
    position: absolute;
    top: 50%;
    left: -30px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    animation: delivery-speed 2s ease-in-out infinite;
}

@keyframes delivery-speed {
    0% { transform: translateX(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(20px); opacity: 0; }
}

.package-contents {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.content-item {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    margin: 1px;
    animation: content-pop 2s ease-in-out infinite;
}

.content-item:nth-child(2) { animation-delay: 0.5s; }

@keyframes content-pop {
    0%, 100% { transform: scale(0.5); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.order-checkmarks {
    position: absolute;
    top: -15px;
    right: -15px;
}

.checkmark {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    margin: 2px;
    animation: checkmark-appear 3s ease-in-out infinite;
}

.checkmark:nth-child(2) { animation-delay: 0.8s; }
.checkmark:nth-child(3) { animation-delay: 1.6s; }

@keyframes checkmark-appear {
    0%, 80% { transform: scale(0); opacity: 0; }
    90% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Scroll-triggered animations */
.scroll-fade-out {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
}

.scroll-slide-left {
    transform: translateX(-100px);
    opacity: 0;
}

.scroll-slide-right {
    transform: translateX(100px);
    opacity: 0;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 30%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

.luminous-effects {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.light-beam {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: beam-sweep 8s ease-in-out infinite;
}

.beam-1 {
    left: 20%;
    animation-delay: 0s;
}

.beam-2 {
    left: 50%;
    animation-delay: 2.5s;
}

.beam-3 {
    left: 80%;
    animation-delay: 5s;
}

@keyframes beam-sweep {
    0%, 100% { opacity: 0; transform: scaleY(0); }
    20% { opacity: 1; transform: scaleY(1); }
    80% { opacity: 1; transform: scaleY(1); }
}

.logo-svg-gradients {
    position: absolute;
    width: 0;
    height: 0;
}

.logo-shield-gradient {
    stop-color: #ffd700;
}

.logo-shield-gradient-end {
    stop-color: #ff8c00;
}

.logo-shield-stroke {
    stop-color: #b8860b;
}

.logo-eagle-gradient {
    stop-color: #2c1810;
}

.logo-eagle-gradient-end {
    stop-color: #8b4513;
}

.logo-wings-gradient {
    stop-color: #4a4a4a;
}

.logo-wings-gradient-end {
    stop-color: #1a1a1a;
}

.logo-planning-gradient {
    stop-color: #ffd700;
}

.logo-planning-gradient-end {
    stop-color: #ff8c00;
}

.logo-box-gradient {
    stop-color: #e6e6e6;
}

.logo-box-gradient-end {
    stop-color: #cccccc;
}

.floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    animation: dot-float 6s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.dot-1 { top: 20%; left: 15%; animation-delay: 0s; }
.dot-2 { top: 40%; right: 25%; animation-delay: 1s; }
.dot-3 { bottom: 30%; left: 30%; animation-delay: 2s; }
.dot-4 { top: 60%; right: 15%; animation-delay: 3s; }
.dot-5 { bottom: 50%; left: 60%; animation-delay: 4s; }
.dot-6 { top: 30%; left: 70%; animation-delay: 5s; }

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

/* Enhanced Hero Elements */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000 0%, #0a0a1a 25%, #1a0033 50%, #2d004d 75%, #4a0080 100%);
    opacity: 0.95;
    animation: video-pulse 15s ease-in-out infinite;
}

@keyframes video-pulse {
    0%, 100% { opacity: 0.95; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.02); }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.15), transparent 60%),
                radial-gradient(circle at 70% 60%, rgba(147, 51, 234, 0.15), transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1), transparent 50%);
    animation: overlay-drift 25s ease-in-out infinite;
}

@keyframes overlay-drift {
    0%, 100% { 
        background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.15), transparent 60%),
                    radial-gradient(circle at 70% 60%, rgba(147, 51, 234, 0.15), transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1), transparent 50%);
    }
    33% { 
        background: radial-gradient(circle at 60% 30%, rgba(255, 215, 0, 0.15), transparent 60%),
                    radial-gradient(circle at 20% 70%, rgba(147, 51, 234, 0.15), transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1), transparent 50%);
    }
    66% { 
        background: radial-gradient(circle at 80% 60%, rgba(255, 215, 0, 0.15), transparent 60%),
                    radial-gradient(circle at 40% 20%, rgba(147, 51, 234, 0.15), transparent 60%),
                    radial-gradient(circle at 10% 40%, rgba(59, 130, 246, 0.1), transparent 50%);
    }
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    color: rgba(255, 215, 0, 0.4);
    font-size: 1.5rem;
    animation: float-business 12s ease-in-out infinite;
}

.icon-1 { top: 20%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 30%; right: 15%; animation-delay: 2s; }
.icon-3 { bottom: 40%; left: 20%; animation-delay: 4s; }
.icon-4 { top: 70%; right: 25%; animation-delay: 6s; }
.icon-5 { bottom: 25%; right: 10%; animation-delay: 8s; }

@keyframes float-business {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-20px) rotate(5deg); opacity: 0.6; }
    50% { transform: translateY(-10px) rotate(-3deg); opacity: 0.8; }
    75% { transform: translateY(-25px) rotate(3deg); opacity: 0.5; }
}

.badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.title-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.title-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: title-sparkle 2s ease-in-out infinite;
}

.title-particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.title-particle:nth-child(2) { top: 30%; right: 25%; animation-delay: 0.7s; }
.title-particle:nth-child(3) { bottom: 25%; left: 70%; animation-delay: 1.4s; }

@keyframes title-sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1.5); }
}

.highlight-text {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-item i {
    color: #ffd700;
    font-size: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats .stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.hero-stats .stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.hero-stats .stat-icon {
    position: absolute;
    top: -10px;
    right: 10px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a1a3e;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.pulse-btn {
    animation: pulse-glow-btn 2s ease-in-out infinite;
}

@keyframes pulse-glow-btn {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.3); }
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    animation: ripple-effect 2s ease-out infinite;
}

@keyframes ripple-effect {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 300px; height: 300px; opacity: 0; }
}

.hero-social {
    margin-top: 2rem;
}

.social-proof {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-features { gap: 1rem; }
    .feature-item { font-size: 0.8rem; padding: 0.5rem 0.75rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .trust-indicators { gap: 1rem; }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-scroll a:hover {
    color: var(--white);
}

.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-divider-line {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, var(--blue-500), var(--purple-500));
    margin: 0 auto 2rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
    font-weight: 300;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

.vision-mission-card {
    padding: 2rem;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--white);
    font-size: 1.5rem;
}

.card-icon.blue {
    background: linear-gradient(to right, var(--blue-500), var(--purple-500));
}

.card-icon.purple {
    background: linear-gradient(to right, var(--purple-500), var(--pink-500));
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
}

.card-text {
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.625;
}

.stats-grid {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.service-card {
    padding: 2rem;
    text-align: center;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.reviews-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    margin-right: 1rem;
}

.review-avatar.blue {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.review-avatar.green {
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

.review-avatar.purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.review-avatar.orange {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.review-info h4 {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.review-stars {
    display: flex;
    color: #fbbf24;
}

.review-text {
    color: #6b7280;
    line-height: 1.6;
}

.reviews-divider {
    background: linear-gradient(to right, #8b5cf6, #ec4899);
}

.review-form {
    max-width: 42rem;
    margin: 0 auto;
}

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

.contact-grid {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-form {
    padding: 2rem;
}

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

.contact-card {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-weight: 600;
    color: var(--gray-800);
}

.contact-value {
    color: var(--gray-600);
}

.hours-table {
    width: 100%;
    color: var(--gray-600);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--gray-800);
}

.hours-time {
    color: var(--gray-600);
}

.hours-closed {
    color: var(--red-500);
    font-weight: 500;
}

.footer {
    background: linear-gradient(to right, var(--gray-900), #1e3a8a, #581c87);
    color: var(--white);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.625;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
}

.developer-credit {
    color: rgba(255, 255, 255, 0.8);
}

.developer-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: #ffed4a;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.ecommerce-link {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ecommerce-link:hover {
    background: linear-gradient(135deg, #059669, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.divine-btn.ecommerce {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: white;
}

.divine-btn.ecommerce:hover {
    background: linear-gradient(135deg, #059669, #2563eb);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

/* Mobile Hero Styles */
.hero-desktop {
    display: block;
}

.hero-mobile {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mobile-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.mobile-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    animation: subtle-glow 8s ease-in-out infinite alternate;
}

@keyframes subtle-glow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}


/* Clean Mobile Hero */
@media (max-width: 767px) {
    .hero-desktop {
        display: none;
    }
    
    .hero-mobile {
        display: block;
    }
    
    .hero-content {
        position: relative;
        z-index: 10;
        padding: 4rem 1.5rem 3rem;
        text-align: center;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-badge {
        display: inline-block;
        background: rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.9);
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        margin-bottom: 2.5rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }
    
    .hero-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: badge-shimmer 3s ease-in-out infinite;
    }
    
    @keyframes badge-shimmer {
        0% { left: -100%; }
        100% { left: 100%; }
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .hero-title .divine-text {
        font-size: 2.5rem;
        line-height: 1.1;
        font-weight: 900;
        color: #ffffff;
        margin-bottom: 0.75rem;
        display: block;
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        animation: text-glow 4s ease-in-out infinite alternate;
    }
    
    @keyframes text-glow {
        0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
        100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.2); }
    }
    
    .hero-title .company-name {
        background: linear-gradient(45deg, #ffffff, #e5e7eb, #ffffff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        display: block;
        font-size: 1.75rem;
        margin-top: 0.75rem;
        animation: company-shine 3s ease-in-out infinite;
    }
    
    @keyframes company-shine {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 3rem;
        color: rgba(255, 255, 255, 0.8);
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        font-weight: 300;
    }
    
    .hero-description .highlight-text {
        color: #ffffff;
        font-weight: 500;
        position: relative;
    }
    
    .hero-description .highlight-text::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
        animation: underline-glow 2s ease-in-out infinite alternate;
    }
    
    @keyframes underline-glow {
        0% { opacity: 0.3; }
        100% { opacity: 0.8; }
    }
    
    .hero-features {
        display: none;
    }
    
    .hero-stats {
        display: none;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        max-width: 300px;
        margin: 0 auto 3rem;
    }
    
    .divine-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 50px;
        transition: all 0.4s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        letter-spacing: 0.5px;
    }
    
    .divine-btn.primary {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    
    .divine-btn.primary::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.6s ease;
    }
    
    .divine-btn.primary:hover::before {
        left: 100%;
    }
    
    .divine-btn.primary:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .divine-btn.secondary {
        background: transparent;
        color: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(5px);
    }
    
    .divine-btn.secondary::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.6s ease;
    }
    
    .divine-btn.secondary:hover::before {
        left: 100%;
    }
    
    .divine-btn.secondary:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        color: #ffffff;
    }
    
    .hero-social {
        margin-top: 2rem;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-proof {
        text-align: center;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.85rem;
        margin-bottom: 1rem;
        font-weight: 300;
    }
    
    .trust-indicators {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .trust-item {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }
    
    .trust-item:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.95);
        transform: translateY(-1px);
    }
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.back-to-top-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: luminous-pulse 3s ease-in-out infinite alternate;
}

@keyframes luminous-pulse {
    0% { 
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 20px rgba(255, 255, 255, 0.05);
    }
    100% { 
        box-shadow: 
            0 6px 25px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            0 0 30px rgba(255, 255, 255, 0.15);
    }
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, #333333 0%, #4a4a4a 50%, #333333 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 35px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.25);
}

.back-to-top-btn:hover::before {
    opacity: 1;
}

.back-to-top-btn i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.back-to-top-btn:hover i {
    transform: scale(1.15) translateY(-1px);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}
    
    .header {
        padding: 0.5rem 0;
    }
    
    .nav {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1rem;
        gap: 0.375rem;
    }
    
    .logo-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .nav-menu.desktop {
        display: none;
    }
    
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 10px;
        font-size: 1.1rem;
    }
    
    /* Mobile sidebar enhancements */
    #sidebar {
        width: 280px;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .sidebar-link {
        padding: 1rem 1.5rem;
        margin: 0.25rem 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .sidebar-link:hover {
        background: rgba(255, 215, 0, 0.1);
        transform: translateX(8px);
    }
    
    .sidebar-link i {
        width: 20px;
        margin-right: 1rem;
        color: rgba(255, 215, 0, 0.8);
    }
    
    /* Touch-friendly interactions */
    .hamburger:active {
        transform: scale(0.95);
    }
    
    .nav-link:active {
        transform: scale(0.98);
    }
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 50%, #1a1a1a 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.back-to-top-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: luminous-pulse 3s ease-in-out infinite alternate;
}

@keyframes luminous-pulse {
    0% { 
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            0 0 20px rgba(255, 255, 255, 0.05);
    }
    100% { 
        box-shadow: 
            0 6px 25px rgba(0, 0, 0, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            0 0 30px rgba(255, 255, 255, 0.15);
    }
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, #333333 0%, #4a4a4a 50%, #333333 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 35px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.25);
}

.back-to-top-btn:hover::before {
    opacity: 1;
}

.back-to-top-btn i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.back-to-top-btn:hover i {
    transform: scale(1.15) translateY(-1px);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu.desktop {
        display: flex;
    }
    
    .sidebar {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .nav-menu {
        gap: 0.75rem;
        margin-right: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 1.15rem;
    }
    
    .logo-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 1025px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-section.left {
        text-align: left;
    }
    
    .footer-section.right {
        text-align: right;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
}
