.btn-gamified {
    position: relative;
    isolation: isolate;
    border: 2px solid transparent;
    background: #0b1220;
    color: #e6faff;
    padding: 16px 36px;
    border-radius: 14px;
    box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.25) inset, 0 12px 30px rgba(14, 165, 233, 0.25);
}

.btn-gamified::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 16px;
    background: conic-gradient(
        from 0deg,
        #06b6d4, #3b82f6, #8b5cf6, #06b6d4
    );
    filter: blur(6px);
    opacity: 0.85;
    animation: spinGlow 6s linear infinite;
}

.btn-gamified:hover::before {
    filter: blur(8px);
}

.btn-gamified:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25) inset, 0 16px 36px rgba(59, 130, 246, 0.35);
}

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

/* Gentle pulse to catch attention */
.btn-gamified {
    animation: pulseGlow 2.8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.25) inset, 0 12px 30px rgba(14, 165, 233, 0.25); }
    50% { box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.25) inset, 0 16px 36px rgba(59, 130, 246, 0.35); }
}

.pricing-note {
    margin-top: 12px;
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 18px; /* add space before CTA */
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Tablet/Desktop breakpoint to align About section earlier */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-text {
        text-align: center;
    }
    .youtube-cta {
        display: flex;
        justify-content: center;
        margin: 10px auto 0;
    }
}

.footer-logo-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --card-bg: #ffffff;
    --card-border: #e5e7eb;
    /* Fixed navbar height used to offset content and anchor scroll */
    --nav-height: 70px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll at root */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    /* Prevent content from being hidden beneath the fixed navbar */
    padding-top: var(--nav-height);
}

/* Hide scrollbars globally (keeps scrolling functional) */
html,
body {
    /* Firefox */
    scrollbar-width: none;
    /* IE/Edge (legacy) */
    -ms-overflow-style: none;
}

/* Chrome, Safari and other WebKit-based browsers */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

/* Ensure scrollbars are hidden for ALL scrollable elements */
* {
    /* Firefox */
    scrollbar-width: none;
    /* IE/Edge (legacy) */
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}

/* Dark mode removed */

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px; /* keep in sync with --nav-height */
}

.logo-img {
    height: 40px; /* larger logo */
    width: auto;
    display: block;
}

.logo-round {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

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

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}


.nav-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 30px;
    margin-left: auto; /* push to right */
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Theme toggle removed */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

/* Ensure in-page anchor navigation doesn't hide section headers under fixed navbar */
section {
    scroll-margin-top: calc(var(--nav-height) + 10px);
}

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

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

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

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

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

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

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

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.title-name {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #1e40af; /* deep blue */
    color: #ffffff;
    border: 2px solid #1e3a8a;
    box-shadow: 0 8px 18px rgba(30, 64, 175, 0.35);
}

.btn-primary:hover {
    background: #1b3a9a;
    border-color: #1b3a9a;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(30, 64, 175, 0.45);
}

.btn-secondary {
    background: #0b1220; /* near-black */
    color: #ffffff;
    border: 2px solid #334155; /* slate border for definition */
    box-shadow: 0 8px 18px rgba(2, 6, 23, 0.35);
}

.btn-secondary:hover {
    background: #0f172a;
    border-color: #3b485c;
    transform: translateY(-2px);
}

.profile-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: cardFloat 6s ease-in-out infinite;
}

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

.profile-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.hero-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* When image fallback swaps to SVG logo */
.portrait-fallback {
    object-fit: contain !important;
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.profile-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: bounce 2s infinite;
    cursor: pointer;
}

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

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Ensure the subtitle under What I Offer is black */
.services .section-subtitle {
    color: var(--text-primary);
}

/* Make About subtitle black as well */
.about .section-subtitle {
    color: var(--text-primary);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature {
    background: var(--bg-secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

/* Featured Section */
.featured {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.featured-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.featured-highlights {
    margin-bottom: 40px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

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

.featured-action {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 6px; /* extra separation from note */
}

.btn-featured {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-featured:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
}

.original-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    opacity: 0.7;
}

.product-showcase {
    position: relative;
    height: 400px;
    overflow: hidden; /* Ensure animated items don't overflow horizontally */
}

.showcase-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
    animation: showcaseFloat 4s ease-in-out infinite;
}

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

.item-2 {
    top: 10%;
    right: 20%;
    animation-delay: 1s;
}

.item-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}

.item-4 {
    bottom: 20%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes showcaseFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-primary);
}

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

.about-image {
    position: relative;
    overflow: hidden; /* Prevent floating elements from causing horizontal scroll */
}

.image-frame {
    width: 340px;
    height: 340px;
    border-radius: 20px;
    background: radial-gradient(1200px 600px at 50% 120%, #0b0f19 0%, #070b14 60%, #03060c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.8) 99%, rgba(255,255,255,0) 100%),
      radial-gradient(1px 1px at 80% 20%, rgba(255,255,255,0.7) 99%, rgba(255,255,255,0) 100%),
      radial-gradient(1px 1px at 60% 70%, rgba(255,255,255,0.8) 99%, rgba(255,255,255,0) 100%),
      radial-gradient(1px 1px at 30% 80%, rgba(255,255,255,0.7) 99%, rgba(255,255,255,0) 100%),
      radial-gradient(1px 1px at 50% 40%, rgba(255,255,255,0.9) 99%, rgba(255,255,255,0) 100%);
    opacity: 0.8;
}

.about-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.profile-placeholder {
    font-size: 4rem;
    color: white;
}

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

.element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: elementFloat 3s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    right: -10%;
    color: var(--primary-color);
    animation-delay: 0s;
}

.element-2 {
    bottom: 20%;
    right: -5%;
    color: #ff0000;
    animation-delay: 1s;
}

.element-3 {
    top: 60%;
    left: -10%;
    color: var(--accent-color);
    animation-delay: 2s;
}

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

.about-story p {
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.stat-info .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-info .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Make About stats labels black */
.about .stat-info .stat-label {
    color: var(--text-primary);
}

.btn-youtube {
    background: #ff0000;
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    border-radius: 10px;
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

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

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.1);
    animation: bgFloat 8s ease-in-out infinite;
}

.bg-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bg-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.bg-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes bgFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

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

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Dark mode overrides removed */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: 0;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 30px 0;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

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

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

    .featured-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about .youtube-cta {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .hero-buttons {
        justify-content: center;
    }
}
