/* ========================================
   Modern Premium Design - 2025 Standards
   Bal Digital
======================================== */

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

:root {
    /* Modern Color Palette */
    --color-primary: #6366f1;
    --color-primary-light: #818cf8;
    --color-primary-dark: #4f46e5;
    --color-secondary: #ec4899;
    --color-accent: #f59e0b;
    --color-success: #10b981;
    --color-info: #06b6d4;
    
    --color-text-primary: #0f172a;
    --color-text-secondary: #475569;
    --color-text-light: #94a3b8;
    
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-bg-tertiary: #f1f5f9;
    --color-bg-dark: #0f172a;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-cool: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-purple: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(28,100%,74%,1) 0px, transparent 50%),
                      radial-gradient(at 80% 0%, hsla(189,100%,56%,1) 0px, transparent 50%),
                      radial-gradient(at 0% 50%, hsla(355,100%,93%,1) 0px, transparent 50%),
                      radial-gradient(at 80% 50%, hsla(340,100%,76%,1) 0px, transparent 50%),
                      radial-gradient(at 0% 100%, hsla(22,100%,77%,1) 0px, transparent 50%),
                      radial-gradient(at 80% 100%, hsla(242,100%,70%,1) 0px, transparent 50%),
                      radial-gradient(at 0% 0%, hsla(343,100%,76%,1) 0px, transparent 50%);
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 15px rgba(99, 102, 241, 0.5);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-sans);
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   Navigation - Modern Glassmorphism
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    letter-spacing: -0.02em;
    transition: all var(--transition-base);
    position: relative;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
}

.logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    transition: all var(--transition-base);
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(253, 176, 34, 0.2));
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 176, 34, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.logo:hover .logo-icon::after {
    opacity: 1;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Bee Animation */
.logo-icon svg ellipse[cx="25"][cy="26"],
.logo-icon svg circle[cx="25"][cy="17"],
.logo-icon svg path[d*="M19.5 23"],
.logo-icon svg path[d*="M19 27"],
.logo-icon svg path[d*="M20 31"],
.logo-icon svg path[d*="M25 34"],
.logo-icon svg path[d*="M23 15"],
.logo-icon svg path[d*="M27 15"],
.logo-icon svg circle[cx="20"][cy="11"],
.logo-icon svg circle[cx="30"][cy="11"] {
    transition: transform 0.3s ease;
}

/* Wings animation on hover */
.logo:hover .logo-icon svg ellipse[cx="18"][cy="23"] {
    animation: wing-left 0.3s ease-in-out infinite;
}

.logo:hover .logo-icon svg ellipse[cx="32"][cy="23"] {
    animation: wing-right 0.3s ease-in-out infinite;
}

/* Bee flying animation on hover */
.logo:hover .logo-icon svg ellipse[cx="25"][cy="26"],
.logo:hover .logo-icon svg circle[cx="25"][cy="17"],
.logo:hover .logo-icon svg path[d*="M19.5 23"],
.logo:hover .logo-icon svg path[d*="M19 27"],
.logo:hover .logo-icon svg path[d*="M20 31"],
.logo:hover .logo-icon svg path[d*="M25 34"],
.logo:hover .logo-icon svg path[d*="M23 15"],
.logo:hover .logo-icon svg path[d*="M27 15"],
.logo:hover .logo-icon svg circle[cx="20"][cy="11"],
.logo:hover .logo-icon svg circle[cx="30"][cy="11"] {
    animation: bee-fly 0.6s ease-in-out infinite;
}

@keyframes bee-fly {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes wing-left {
    0%, 100% {
        transform: rotate(-30deg);
        transform-origin: 25px 23px;
    }
    50% {
        transform: rotate(-50deg);
        transform-origin: 25px 23px;
    }
}

@keyframes wing-right {
    0%, 100% {
        transform: rotate(30deg);
        transform-origin: 25px 23px;
    }
    50% {
        transform: rotate(50deg);
        transform-origin: 25px 23px;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.125rem;
}

.logo-primary {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D4A257 0%, #FDB022 50%, #D4A257 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
}

.logo-secondary {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

.nav-menu a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.938rem;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav-menu a:hover {
    color: var(--color-primary);
}

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

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--color-text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* ========================================
   Hero Section - Premium Modern
======================================== */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: var(--gradient-primary);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(120px);
    animation: float-slow 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -30%;
    width: 700px;
    height: 700px;
    background: var(--gradient-secondary);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(120px);
    animation: float-slow 25s ease-in-out infinite reverse;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
}

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

.hero-description {
    font-size: 1.375rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.125rem 2.5rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

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

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--color-text-secondary);
    font-size: 0.938rem;
    font-weight: 500;
}

.hero-image {
    position: relative;
    height: 550px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.75rem 2.25rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 50px;
    left: 20px;
}

.card-2 {
    top: 220px;
    right: 60px;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 80px;
    left: 80px;
    animation-delay: 3s;
}

.card-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.card-text {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 1.125rem;
}

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

/* ========================================
   Section Styles - Modern Layout
======================================== */
section {
    padding: 120px 0;
}

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

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   Services Section - Premium Cards
======================================== */
.services {
    background: var(--color-bg-secondary);
    position: relative;
}

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

.service-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--color-primary);
}

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

.service-icon {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.service-icon.purple {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.service-icon.green {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.service-icon.orange {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.service-icon.red {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.service-icon.cyan {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: white;
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

.service-card > p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.063rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-features li {
    color: var(--color-text-secondary);
    padding-left: 2rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

/* ========================================
   Packages Section - Premium Pricing
======================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
    border: 2px solid rgba(99, 102, 241, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.package-card.featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.3);
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 35px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.625rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.938rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    letter-spacing: 0.02em;
}

.package-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.package-price {
    margin-bottom: 2.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.package-price .currency {
    font-size: 1.75rem;
    color: var(--color-text-secondary);
    font-weight: 600;
}

.package-price .amount {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    line-height: 1;
}

.package-price .period {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.package-features li {
    color: var(--color-text-primary);
    padding-left: 2rem;
    position: relative;
    font-size: 1.063rem;
    font-weight: 500;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

.package-features li.disabled {
    color: var(--color-text-light);
}

.package-features li.disabled::before {
    content: '✗';
    background: rgba(148, 163, 184, 0.15);
    color: var(--color-text-light);
}

.package-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ========================================
   About Section - Modern Grid
======================================== */
.about {
    background: var(--color-bg-secondary);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    align-items: start;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    flex-shrink: 0;
    line-height: 1;
}

.feature-text h4 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.feature-text p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Contact Section - Premium Layout
======================================== */
.contact {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1.5rem;
    align-items: start;
    transition: all var(--transition-base);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

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

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 16px -4px rgba(99, 102, 241, 0.4);
}

.contact-info-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.contact-info-content p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.social-connect {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.social-connect h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

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

.social-links-contact a {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px -2px rgba(99, 102, 241, 0.4);
}

.social-links-contact a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px -4px rgba(99, 102, 241, 0.6);
}

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

.map-container {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(99, 102, 241, 0.1);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.visit-office {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.visit-office h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.visit-office p {
    color: var(--color-text-secondary);
    font-size: 1.063rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ========================================
   Footer - Modern Dark
======================================== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(80px);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

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

.footer-logo-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(253, 176, 34, 0.3));
}

.footer-logo-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer Bee Animation */
.footer-logo:hover .footer-logo-icon svg ellipse[cx="18"][cy="23"] {
    animation: wing-left 0.3s ease-in-out infinite;
}

.footer-logo:hover .footer-logo-icon svg ellipse[cx="32"][cy="23"] {
    animation: wing-right 0.3s ease-in-out infinite;
}

.footer-logo:hover .footer-logo-icon svg ellipse[cx="25"][cy="26"],
.footer-logo:hover .footer-logo-icon svg circle[cx="25"][cy="17"],
.footer-logo:hover .footer-logo-icon svg path[d*="M19.5 23"],
.footer-logo:hover .footer-logo-icon svg path[d*="M19 27"],
.footer-logo:hover .footer-logo-icon svg path[d*="M20 31"],
.footer-logo:hover .footer-logo-icon svg path[d*="M25 34"],
.footer-logo:hover .footer-logo-icon svg path[d*="M23 15"],
.footer-logo:hover .footer-logo-icon svg path[d*="M27 15"],
.footer-logo:hover .footer-logo-icon svg circle[cx="20"][cy="11"],
.footer-logo:hover .footer-logo-icon svg circle[cx="30"][cy="11"] {
    animation: bee-fly 0.6s ease-in-out infinite;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.25rem;
}

.footer-logo-primary {
    font-size: 1.875rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D4A257 0%, #FDB022 50%, #D4A257 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.footer-logo-secondary {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-col p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col ul li a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 1rem;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

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

.social-links a {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.6);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--color-text-light);
    font-size: 0.938rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-links a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: 0.938rem;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: var(--color-text-light);
}

/* ========================================
   Privacy & Terms Pages
======================================== */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
}

.page-content {
    padding: 100px 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 3rem 0 1.5rem;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

.page-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2.5rem 0 1.25rem;
    color: var(--color-text-primary);
}

.page-content p {
    color: var(--color-text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.063rem;
}

.page-content ul {
    list-style: none;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.page-content ul li {
    color: var(--color-text-secondary);
    line-height: 1.9;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.063rem;
}

.page-content ul li::before {
    content: '•';
    position: absolute;
    left: -1.75rem;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

.page-content strong {
    color: var(--color-text-primary);
    font-weight: 700;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-map-section {
        order: -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: var(--shadow-2xl);
        padding: 3rem 0;
        gap: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
    }

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

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

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero {
        padding: 140px 0 80px;
    }

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

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

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

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

    section {
        padding: 80px 0;
    }

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

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

    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

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

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

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        gap: 2rem;
    }

    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 60px;
    }

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

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

    .btn {
        padding: 1rem 1.75rem;
        font-size: 0.938rem;
    }

    .service-card,
    .package-card {
        padding: 2rem;
    }

    .package-price .amount {
        font-size: 3rem;
    }

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

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

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

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

/* Selection */
::selection {
    background: var(--color-primary);
    color: white;
}

::-moz-selection {
    background: var(--color-primary);
    color: white;
}
