/* ========================================
   Global Styles & Variables
   ======================================== */

:root {
    --primary-color: #1a1a2e;
    --primary-dark: #0f0f1e;
    --secondary-color: #1e90ff;
    --accent-color: #0066cc;
    --dark-bg: #0d0d0a;
    --light-bg: #f8f9fa;
    --card-bg: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #b0b8d4;
    --border-color: #2a3050;
    --purple-accent: #6a4c93;
    --orange-bright: #1e90ff;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glow-color: 30, 144, 255;
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ========================================
   Navigation Bar
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #1e90ff;
    cursor: pointer;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
    color: #0066cc;
}

.logo-icon {
    font-size: 2rem;
}

.logo-icon[src] {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    transition: var(--transition);
    vertical-align: middle;
    display: inline-block;
}

.nav-logo:hover .logo-icon[src] {
    box-shadow: 0 6px 20px rgba(30, 144, 255, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e90ff, #0066cc);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1e90ff;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-btn {
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
}

.nav-link-btn::after {
    display: none;
}

.nav-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 144, 255, 0.4);
}

/* Shop Icon Styling */
.nav-item a[href="shop.html"] {
    font-size: 1.3rem;
    color: #1e90ff;
    transition: all 0.3s ease;
    padding: 0.5rem !important;
}

.nav-item a[href="shop.html"]::after {
    display: none !important;
}

.nav-item a[href="shop.html"]:hover {
    color: #0066cc;
    transform: scale(1.25) rotate(10deg);
    text-shadow: 0 0 12px rgba(30, 144, 255, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e90ff;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0a 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
    padding-top: 180px;
    margin-top: -80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 10%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(106, 76, 147, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 10%;
    right: 5%;
    animation: pulse 8s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="black" opacity="0.03" /></svg>');
    z-index: 1;
}

.hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 100 100"><rect width="1" height="1" fill="%231e90ff" opacity="0.05" x="10" y="10"/><rect width="1" height="1" fill="%236a4c93" opacity="0.05" x="30" y="40"/><rect width="1" height="1" fill="%231e90ff" opacity="0.05" x="50" y="20"/><rect width="1" height="1" fill="%236a4c93" opacity="0.05" x="70" y="30"/><rect width="1" height="1" fill="%231e90ff" opacity="0.05" x="90" y="60"/></svg>');
}

.floating-box {
    position: absolute;
    border: 2px solid #1e90ff;
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.1);
    opacity: 0 !important;
    animation: float 9s ease-in-out infinite;
    border-radius: 4px;
    z-index: 1;
    display: none !important;
    visibility: hidden !important;
}

.box-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 5%;
    animation-delay: 0s;
    border-color: #1e90ff;
}

.box-2 {
    width: 100px;
    height: 100px;
    top: 65%;
    left: 2%;
    animation-delay: 2s;
    border-color: #6a4c93;
}

.box-3 {
    width: 120px;
    height: 120px;
    bottom: 5%;
    right: 3%;
    animation-delay: 4s;
    transform: rotate(15deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
}

.floating-icon {
    position: absolute;
    z-index: 1;
}

.moon {
    top: 15%;
    right: 15%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 70% 70%, #0066cc, #1e90ff);
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.3);
    animation: glow 8s ease-in-out infinite;
    opacity: 0.8;
}

.moon::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 15px 10px 0 rgba(255, 255, 255, 0.1),
                30px 20px 0 rgba(255, 255, 255, 0.1);
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(30, 144, 255, 0.3); opacity: 0.8; }
    50% { box-shadow: 0 0 50px rgba(30, 144, 255, 0.5); opacity: 0.9; }
}

.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: white;
    animation: twinkle 4s infinite;
    opacity: 0.7;
}

.star:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { top: 20%; left: 25%; animation-delay: 0.6s; }
.star:nth-child(3) { top: 15%; left: 50%; animation-delay: 1.2s; }
.star:nth-child(4) { top: 30%; left: 75%; animation-delay: 1.8s; }
.star:nth-child(5) { top: 40%; left: 15%; animation-delay: 2.4s; }
.star:nth-child(6) { top: 50%; left: 35%; animation-delay: 3s; }
.star:nth-child(7) { top: 60%; left: 65%; animation-delay: 0.3s; }
.star:nth-child(8) { top: 70%; left: 85%; animation-delay: 0.9s; }
.star:nth-child(9) { top: 80%; left: 30%; animation-delay: 1.5s; }
.star:nth-child(10) { top: 85%; left: 50%; animation-delay: 2.1s; }
.star:nth-child(11) { top: 75%; left: 10%; animation-delay: 2.7s; }
.star:nth-child(12) { top: 25%; left: 90%; animation-delay: 3.3s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 4rem 2rem;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e90ff, #0066cc, #1e90ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 5px 15px rgba(30, 144, 255, 0.5);
    letter-spacing: -0.5px;
    animation: titleGlow 3s ease-in-out infinite;
    line-height: 1.1;
}

@keyframes titleGlow {
    0%, 100% { 
        text-shadow: 0 5px 15px rgba(30, 144, 255, 0.5), 0 0 20px rgba(30, 144, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 5px 20px rgba(30, 144, 255, 0.8), 0 0 30px rgba(30, 144, 255, 0.5);
        transform: scale(1.02);
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #1e90ff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.4px;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.btn-glow {
    animation: glow-button 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    z-index: -1;
    opacity: 0;
    filter: blur(10px);
}

@keyframes glow-button {
    0%, 100% { box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3); }
    50% { box-shadow: 0 12px 40px rgba(30, 144, 255, 0.6); }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #1e90ff;
    border-bottom: 2px solid #1e90ff;
    transform: rotate(45deg);
    margin: 10px auto 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

a.btn {
    text-decoration: none;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(30, 144, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #1e90ff;
    border: 2px solid #1e90ff;
}

.btn-secondary:hover {
    background: #1e90ff;
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ========================================
   Gallery Section
   ======================================== */

.gallery {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #16213e 0%, #0d0d0a 100%);
    position: relative;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    aspect-ratio: 1;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out;
    transition: var(--transition-slow);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    border-color: #1e90ff;
    box-shadow: 0 15px 50px rgba(30, 144, 255, 0.4);
    transform: translateY(-8px);
}

.gallery-item:nth-child(2) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.2s;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: brightness(0.85) contrast(1.1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.8), rgba(106, 76, 147, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ========================================
   Features Section
   ======================================== */

.features {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #16213e 0%, #0d0d0a 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.section-header::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #1e90ff, transparent);
    margin: 1.5rem auto 0;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(106, 76, 147, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: #1e90ff;
    box-shadow: 0 25px 60px rgba(30, 144, 255, 0.35);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.15), rgba(0, 102, 204, 0.1));
    border-radius: 15px;
    border: 2px solid rgba(30, 144, 255, 0.3);
    color: #1e90ff;
    animation: float 3s ease-in-out infinite, iconGlow 2s ease-in-out infinite;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.1);
}

@keyframes iconGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(30, 144, 255, 0.1), 0 0 20px rgba(30, 144, 255, 0.1); }
    50% { box-shadow: 0 6px 20px rgba(30, 144, 255, 0.2), 0 0 30px rgba(30, 144, 255, 0.2); }
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.25), rgba(0, 102, 204, 0.2));
    border-color: #1e90ff;
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(30, 144, 255, 0.3), 0 0 40px rgba(30, 144, 255, 0.2);
    color: #0066cc;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 0.4s;
}

.feature-card:nth-child(4) .feature-icon {
    animation-delay: 0.6s;
}

.feature-card:nth-child(5) .feature-icon {
    animation-delay: 0.8s;
}

.feature-card:nth-child(6) .feature-icon {
    animation-delay: 1s;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e90ff;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   Statistics Section
   ======================================== */

.stats {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0d0d0a 0%, #16213e 100%);
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 144, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(106, 76, 147, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(30, 144, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:nth-child(2) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.3s;
}

.stat-card:hover {
    transform: translateY(-12px);
    border-color: #1e90ff;
    box-shadow: 0 20px 60px rgba(30, 144, 255, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1e90ff 0%, #0066cc 50%, #1e90ff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(30, 144, 255, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    animation: float 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    animation: float 8s ease-in-out infinite;
    animation-delay: 0.5s;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    color: #1e90ff !important;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    border: 2px solid white;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0d0d0a 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    left: -250px;
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    animation: pulse 10s ease-in-out infinite;
    animation-delay: 0.5s;
    z-index: 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.contact-item {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.08) 0%, rgba(0, 102, 204, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(30, 144, 255, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.contact-item > * {
    position: relative;
    z-index: 1;
}

.contact-item:nth-child(2) {
    animation-delay: 0.1s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.2s;
}

.contact-item:hover {
    transform: translateY(-12px);
    border-color: #00ff88;
    box-shadow: 0 25px 50px rgba(30, 144, 255, 0.25), inset 0 1px 0 rgba(0, 255, 136, 0.2);
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.12) 0%, rgba(0, 102, 204, 0.08) 100%);
}

.contact-item:hover::before {
    left: 100%;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2) 0%, rgba(0, 255, 136, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(30, 144, 255, 0.4);
    transition: all 0.4s ease;
}

.contact-icon i {
    background: linear-gradient(135deg, #1e90ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(30, 144, 255, 0.3));
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.3) 0%, rgba(0, 255, 136, 0.2) 100%);
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transform: scale(1.1);
}

.contact-item:hover .contact-icon i {
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.6));
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e90ff;
    text-shadow: 0 0 10px rgba(30, 144, 255, 0.2);
    transition: all 0.4s ease;
    font-weight: 700;
}

.contact-item:hover h3 {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border: 2px solid rgba(30, 144, 255, 0.5);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(0, 102, 204, 0.05));
    position: relative;
    overflow: hidden;
}

.contact-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    z-index: -1;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-link:hover {
    border-color: #00ff88;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
    transform: translateY(-3px);
}

.contact-link:hover::before {
    left: 100%;
}

.contact-link:hover::after {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: #050a1a;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out;
}

.footer-section:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(4) {
    animation-delay: 0.3s;
}

.footer-section h4 {
    color: #1e90ff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: #1e90ff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #1e90ff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    color: #0066cc;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   Scroll Animations
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0d0d0a 0%, #16213e 100%);
        flex-direction: column;
        gap: 0.8rem;
        padding: 1.5rem 1.5rem;
        list-style: none;
        border-bottom: 2px solid rgba(30, 144, 255, 0.3);
        box-shadow: 0 10px 30px rgba(30, 144, 255, 0.1);
        z-index: 999;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        padding: 0.3rem 0;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem;
    }

    .hamburger {
        display: flex;
    }
    
    .hero-content {
        max-width: 90%;
        padding: 2rem 1.5rem;
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
    
    .moon {
        width: 60px;
        height: 60px;
        top: 10%;
        right: 10%;
    }
    
    .floating-box {
        opacity: 0.1;
    }
    
    .box-1 {
        width: 80px;
        height: 80px;
    }
    
    .box-2 {
        width: 60px;
        height: 60px;
    }
    
    .box-3 {
        width: 70px;
        height: 70px;
    }
    
    .hero-scroll-indicator {
        bottom: -60px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .hero {
        padding-top: 70px;
        margin-top: -70px;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 0.8rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .moon {
        width: 40px;
        height: 40px;
    }
    
    .stars-container .star {
        width: 1px;
        height: 1px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

/* ========================================
   Ultra Mobile (320px - 479px)
   ======================================== */

@media (max-width: 320px) {
    .navbar {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 25px;
        height: 25px;
    }

    .hero {
        padding-top: 100px;
        min-height: 100vh;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        max-width: 95%;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .contact-item {
        padding: 1.5rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section ul {
        font-size: 0.85rem;
    }
}

/* ========================================
   Large Desktop (1200px+)
   ======================================== */

@media (min-width: 1200px) {
    .hero {
        padding-top: 200px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   iPad / Tablet Landscape (900px - 1199px)
   ======================================== */

@media (min-width: 900px) and (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }
}
