/* Reset and Base Styles */
/*
 * SITEBYJIRO MEDIA - Website Styles
 * © 2024 SITEBYJIRO MEDIA LLC. All rights reserved.
 * Designed & Developed by SITEBYJIRO MEDIA
 * https://sitebyjiro.com
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





/* Page Loader Styles */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.99) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.loader-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.loader-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
}

.loader-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    position: relative;
    margin-bottom: 40px;
    animation: logoFloat 2s ease-in-out infinite;
}

.loader-logo-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
}

.loader-brand-text {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    text-align: center;
}

.loader-brand-text span {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: brandTextFade 2s ease-in-out infinite;
}



/* Loader Animations */
@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

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

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

@keyframes brandTextFade {
    0%, 100% {
        opacity: 0.6;
        transform: scale(0.98);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}





/* Mobile Responsive for Loader */
@media (max-width: 768px) {
    .loader-logo-img {
        width: 120px;
        height: 120px;
    }
    
    .loader-brand-text {
        bottom: 40px;
    }
    
    .loader-brand-text span {
        font-size: 14px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .loader-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .loader-brand-text {
        bottom: 30px;
    }
    
    .loader-brand-text span {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}

/* Terms and Privacy Policy Styles */
.terms-section {
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
}

.terms-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section-block {
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.terms-section-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.terms-section-block:hover::before {
    opacity: 1;
}

.terms-section-block:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.terms-section-block h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
}

.terms-section-block h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    border-radius: 1px;
}

.terms-section-block p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 400;
}

.terms-section-block ul {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.terms-section-block li {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-weight: 400;
}

.terms-section-block li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

.terms-section-block strong {
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .terms-section {
        padding: 100px 0 60px;
    }
    
    .terms-content {
        max-width: 100%;
    }
    
    .terms-section-block {
        margin-bottom: 40px;
        padding: 30px 20px;
    }
    
    .terms-section-block h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .terms-section-block p {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .terms-section-block li {
        font-size: 15px;
        margin-bottom: 10px;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 80px 0 40px;
    }
    
    .terms-section-block {
        margin-bottom: 30px;
        padding: 25px 15px;
    }
    
    .terms-section-block h2 {
        font-size: 18px;
        margin-bottom: 14px;
    }
    
    .terms-section-block p {
        font-size: 14px;
        margin-bottom: 14px;
    }
    
    .terms-section-block li {
        font-size: 14px;
        margin-bottom: 8px;
        padding-left: 18px;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    /* Performance optimizations */
    will-change: scroll-position;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Mobile container adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-badge {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 5px;
    }
}

/* Geometric Grid Pattern */
.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
    /* Performance optimization */
    will-change: auto;
    transform: translateZ(0);
}

/* Navigation */
.navbar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Optimize animations and transitions */
    will-change: transform, opacity;
}

/* Enhanced navbar on scroll */
.navbar.scrolled {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.99) 0%, rgba(0, 0, 0, 0.97) 100%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.02);
    padding: 20px 0;
}

.navbar.scrolled .logo-icon {
    height: 60px;
}

.navbar.scrolled .nav-menu a {
    font-size: 15px;
    padding: 10px 0;
}

/* Removed sticky header effect - navbar is now non-sticky */

/* Performance optimizations for animations */
.floating-element,
.hero-glow,
.cta-button,
.service-card,
.contact-item,
.form-input,
.navbar,
.hero-title,
.hero-subtitle,
.hero-description,
.stat-card,
.value-card,
.process-step,
.faq-item {
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Mobile touch optimizations */
@media (max-width: 768px) {
    .team-member,
    .value-card,
    .service-card,
    .stat-card,
    .pricing-card,
    .contact-item {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .cta-button,
    .form-submit,
    .package-cta .cta-button {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    /* Improve scrolling performance */
    .team-grid,
    .values-grid,
    .services-grid,
    .stats-grid,
    .pricing-grid {
        -webkit-overflow-scrolling: touch;
    }
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    transform: translateZ(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Enhanced spacing for larger screens */
@media (min-width: 1400px) {
    .nav-container {
        max-width: 1400px;
        padding: 0 40px;
    }
    
    .nav-menu {
        gap: 60px;
    }
    
    .nav-menu a {
        font-size: 17px;
    }
    
    .logo-icon {
        height: 70px;
    }
}

.logo-icon {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.2));
    position: relative;
    z-index: 2;
}

.logo-icon:hover {
    transform: scale(1.1) translateY(-3px);
    filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.3));
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.logo-icon:hover::after {
    transform: translate(-50%, -50%) scale(1.8);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 12px 0;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* Removed the background shape hover effect */

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-menu a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

/* Removed the background shape hover effect */

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

/* Desktop nav-item styling */
.nav-menu .nav-item {
    list-style: none;
    position: relative;
    animation: fadeInDown 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(-10px);
}

.nav-menu .nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-menu .nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-menu .nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-menu .nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-menu .nav-item:nth-child(5) { animation-delay: 0.5s; }

/* Policies Dropdown Styles */
.policies-dropdown {
    position: relative;
}

.policies-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policies-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.policies-dropdown:hover .policies-toggle::after {
    transform: rotate(180deg);
}

.policies-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.policies-dropdown:hover .policies-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.policies-submenu li {
    list-style: none;
}

.policies-submenu a {
    display: block;
    padding: 12px 24px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.policies-submenu a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 255, 255, 0.5);
    transform: translateX(4px);
}

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

/* Hide mobile elements on desktop */
.mobile-menu {
    display: none;
}

.sidebar-header,
.mobile-close {
    display: none;
}

/* Enhanced CTA button styling */
.cta-nav {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #000000 !important;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid #ffffff;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    min-width: 170px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 6px 20px rgba(255, 255, 255, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.cta-nav:hover {
    background: transparent;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 
        0 12px 32px rgba(255, 255, 255, 0.2),
        0 6px 16px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-nav:hover::before {
    left: 100%;
}

.cta-nav::after {
    display: none !important;
}

.cta-nav:active {
    transform: translateY(-2px);
    transition: transform 0.1s ease;
    box-shadow: 
        0 8px 24px rgba(255, 255, 255, 0.15),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Instagram CTA Button Styling */
.instagram-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #000000 !important;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    min-width: 50px;
    height: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(255, 255, 255, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    margin: 8px 0;
}

.instagram-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.instagram-cta:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(255, 255, 255, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) !important;
}

.instagram-cta:hover::before {
    left: 100%;
}

.instagram-cta:hover i {
    color: #ffffff !important;
}

.instagram-cta:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
    box-shadow: 
        0 6px 16px rgba(255, 255, 255, 0.1),
        0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Instagram icon styling */
.instagram-cta i {
    font-size: 20px;
    display: block;
    text-align: center;
    z-index: 2;
    position: relative;
}

/* Override policies submenu styles for Instagram button */
.policies-submenu .instagram-cta,
.policies-list .instagram-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
    box-shadow: 
        0 4px 12px rgba(255, 255, 255, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
    margin: 12px 16px !important;
    width: calc(100% - 32px) !important;
    justify-content: center !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    border-left: 2px solid #ffffff !important;
    min-width: 50px !important;
    height: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.policies-submenu .instagram-cta:hover,
.policies-list .instagram-cta:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    border-left-color: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
    box-shadow: 
        0 8px 20px rgba(255, 255, 255, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* Ensure Instagram icon is properly styled in mobile menu */
.policies-list .instagram-cta i {
    font-size: 20px !important;
    color: #000000 !important;
    display: block !important;
    text-align: center !important;
    z-index: 2 !important;
    position: relative !important;
}

.policies-list .instagram-cta:hover i {
    color: #ffffff !important;
}

/* Disable ::after pseudo-element for Instagram button to prevent flying arrow/mail icon */
.policies-list .instagram-cta::after,
.policies-submenu .instagram-cta::after {
    display: none !important;
    content: none !important;
}

/* Disable ::before pseudo-element for Instagram button to prevent any unwanted icons */
.policies-list .instagram-cta::before,
.policies-submenu .instagram-cta::before {
    display: none !important;
    content: none !important;
}

/* Ensure Instagram button doesn't inherit any unwanted styles from parent elements */
.policies-list li:last-child::before,
.policies-list li:last-child::after,
.policies-submenu li:last-child::before,
.policies-submenu li:last-child::after {
    display: none !important;
    content: none !important;
}

/* Additional override for any remaining pseudo-elements */
.policies-list .instagram-cta,
.policies-submenu .instagram-cta {
    position: relative !important;
}

.policies-list .instagram-cta *,
.policies-submenu .instagram-cta * {
    position: relative !important;
    z-index: 10 !important;
}

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        z-index: 10000;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        pointer-events: auto;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.hamburger:active {
    transform: scale(0.95);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 30%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 10;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 0.85;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-line {
    display: block;
    position: relative;
}

.title-line.highlight {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: expand 1.5s ease-out 1s both;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-weight: 400;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.7;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-cta.primary {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    color: #000000;
    border: none;
    padding: 20px 40px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.hero-cta.primary:hover {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
}

.hero-cta.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
}

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.button-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hero-cta.primary:hover .button-icon {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

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

.stat-number {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.scroll-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes expand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

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

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
    text-decoration: none;
    display: inline-block;
    outline: none;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
    color: #000000;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.cta-button:active {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* Ensure CTA buttons work properly as links */
a.cta-button {
    text-decoration: none;
    color: inherit;
}

a.cta-button:hover {
    text-decoration: none;
    color: #000000;
}

a.cta-button:focus {
    outline: none;
    text-decoration: none;
}



.hero-cta {
    font-size: 18px;
    padding: 20px 44px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

.hero-cta:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.4);
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-number {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 30px;
}

.section-description {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 60px;
    opacity: 0.8;
}

.section-number-bottom {
    position: absolute;
    bottom: 40px;
    right: 20px;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.2em;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.stat-description {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    text-align: center;
    padding: 25px 18px;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ffffff;
    opacity: 0.95;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
    filter: grayscale(100%) brightness(1.2);
    text-align: center;
    width: 100%;
    display: block;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1);
}

.service-icon i {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    opacity: 1;
    filter: grayscale(0%) brightness(1.5) saturate(1.2);
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 45px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.2);
    animation: iconGlow 2s ease-in-out infinite alternate;
}

@keyframes iconGlow {
    0% {
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 45px rgba(255, 255, 255, 0.3),
            0 0 60px rgba(255, 255, 255, 0.2);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 40px rgba(255, 255, 255, 0.6),
            0 0 60px rgba(255, 255, 255, 0.4),
            0 0 80px rgba(255, 255, 255, 0.3);
    }
}

.service-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.service-description {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

/* Strategy Section */
.strategy-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    position: relative;
}

.strategy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.strategy-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.strategy-card:hover::before {
    opacity: 1;
}

.strategy-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.strategy-icon {
    font-size: 72px;
    color: #ffffff;
    opacity: 0.95;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    filter: grayscale(100%) brightness(1.2);
}

.strategy-card:hover .strategy-icon {
    transform: scale(1.1);
    opacity: 1;
    filter: grayscale(100%) brightness(1.5);
}

.strategy-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.strategy-step {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-description {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 35px;
    max-width: 600px;
}

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

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.indicator.active {
    border-color: #ffffff;
}

.indicator.active::before {
    width: 6px;
    height: 6px;
}

.indicator:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.02) 100%);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-description {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 500px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 50%, rgba(17, 17, 17, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 70px 0 40px;
    position: relative;
    margin-top: 80px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 35px;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.footer-logo .logo-icon {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.05);
}

.footer-logo .logo-icon:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.copyright {
    font-size: 14px;
    opacity: 0.75;
    letter-spacing: 0.1em;
    font-weight: 500;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.85);
}

.footer-tagline {
    font-size: 12px;
    opacity: 0.6;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.7);
}

.footer-branding {
    font-size: 10px;
    opacity: 0.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}



.footer-section-links {
    display: flex;
    flex-direction: row;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 6px 0;
    white-space: nowrap;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

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

    /* Mobile Navigation - Only applies on mobile */
    @media (max-width: 768px) {
        .nav-menu {
            display: none;
        }
        
        .mobile-menu {
            display: flex;
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            height: 100vh;
            background: linear-gradient(180deg, #000000 0%, #111111 100%);
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            padding: 0;
            gap: 0;
            z-index: 10000;
            pointer-events: auto;
            transform: translateX(100%);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow-y: auto;
            overflow-x: hidden;
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                -15px 0 40px rgba(0, 0, 0, 0.7),
                inset 0 0 0 1px rgba(255, 255, 255, 0.05);
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
            will-change: transform;
            -webkit-overflow-scrolling: touch;
            touch-action: pan-y;
            -webkit-touch-callout: none;
            visibility: visible;
            backdrop-filter: blur(10px);
            box-sizing: border-box;
            /* Ensure links work properly */
            pointer-events: auto;
        }
        
        /* Show mobile elements on mobile */
        .sidebar-header,
        .mobile-close {
            display: flex;
        }
        
        .mobile-menu::-webkit-scrollbar {
            width: 4px;
        }
        
        .mobile-menu::-webkit-scrollbar-track {
            background: transparent;
        }
        
        .mobile-menu::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 2px;
        }
        
        .mobile-menu::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        
        .mobile-menu.active {
            transform: translateX(0) !important;
            display: flex !important;
            pointer-events: auto !important;
            visibility: visible !important;
            z-index: 10001 !important;
            box-shadow: 
                -20px 0 50px rgba(0, 0, 0, 0.8),
                inset 0 0 0 1px rgba(255, 255, 255, 0.1);
        }
        

        
        .mobile-menu.active .sidebar-nav .nav-item {
            animation: slideInRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        }
        
        .mobile-menu.active .sidebar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
        .mobile-menu.active .sidebar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
        .mobile-menu.active .sidebar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
        .mobile-menu.active .sidebar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
    
        
        /* Sidebar Header */
        .sidebar-header {
            padding: 30px 25px 25px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            background: linear-gradient(180deg, #000000 0%, #111111 100%);
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            pointer-events: auto;
            backdrop-filter: blur(10px);
        }
        
        .sidebar-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .sidebar-header:hover::before {
            opacity: 1;
        }
        
        .sidebar-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            z-index: 1;
        }
        
        .sidebar-logo img {
            height: 45px;
            width: auto;
            filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
            transition: all 0.3s ease;
        }
        
        .sidebar-logo:hover img {
            transform: scale(1.05);
            filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.5));
        }
        
        .sidebar-title {
            display: none;
        }
        
        .sidebar-nav {
            padding: 15px 0;
            display: flex;
            flex-direction: column;
            gap: 0;
            flex: 1;
            list-style: none;
            margin: 0;
            pointer-events: auto;
            /* Ensure links work properly */
            position: relative;
            z-index: 1;
        }
        

        
        /* Sidebar Navigation Container */
        .sidebar-nav {
            padding: 30px 0 20px;
            flex: 1;
            list-style: none;
            margin: 0;
            pointer-events: auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        
        /* Mobile menu overlay - completely removed to prevent interference */
        .mobile-menu-overlay {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }
    }



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

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

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

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Mobile Menu Close Button */
    .mobile-close {
        position: absolute;
        top: 30px;
        right: 25px;
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        display: none;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10002;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        pointer-events: auto !important;
    }

.mobile-close:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.mobile-close:active {
    transform: scale(0.95) rotate(90deg);
    transition: all 0.1s ease;
    background: rgba(255, 255, 255, 0.3);
}

.mobile-close::before,
.mobile-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.mobile-close::before {
    transform: rotate(45deg);
}

.mobile-close::after {
    transform: rotate(-45deg);
}

.mobile-close:hover::before,
.mobile-close:hover::after {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    /* Show close button only when menu is active */
    body.menu-active .mobile-close {
        display: flex !important;
        z-index: 10001;
        pointer-events: auto;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    /* Hide any potential duplicate close buttons */
    .mobile-close + .mobile-close,
    .mobile-close ~ .mobile-close {
        display: none !important;
    }

    /* Hide hamburger when menu is active to prevent duplicate X */
    body.menu-active .hamburger {
        display: none !important;
    }
    
    /* Prevent scrolling when mobile menu is active */
    body.menu-active {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* Ensure mobile menu is always on top when active */
    body.menu-active .mobile-menu {
        z-index: 10001;
        pointer-events: auto;
        visibility: visible;
        transform: translateX(0);
    }
    
    /* Ensure all mobile menu elements are clickable */
    body.menu-active .mobile-menu * {
        pointer-events: auto;
    }
    
    .sidebar-nav .nav-item {
        margin: 0;
        position: relative;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
        list-style: none;
        display: block;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .sidebar-nav .nav-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .sidebar-nav .nav-item:not(:last-child) {
        margin-bottom: 2px;
    }
    
            .sidebar-nav .nav-item a {
            font-size: 14px;
            font-weight: 500;
            padding: 16px 25px;
            border: none;
            border-radius: 0;
            width: 100%;
            text-align: left;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 14px;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            background: transparent;
            color: #ffffff;
            text-decoration: none;
            border-left: 2px solid transparent;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
            min-height: 50px;
            cursor: pointer;
            -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
            z-index: 10;
            pointer-events: auto !important;
            user-select: none;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            box-sizing: border-box;
            touch-action: manipulation;
        }
    
    /* Add icons to mobile nav items */
    .sidebar-nav .nav-item a::before {
        content: '';
        width: 20px;
        height: 20px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        opacity: 1;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        flex-shrink: 0;
        filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.8));
    }
    
    .sidebar-nav .nav-item:nth-child(1) a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6'/%3E%3C/svg%3E");
    }
    
    .sidebar-nav .nav-item:nth-child(2) a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
    }
    
    .sidebar-nav .nav-item:nth-child(3) a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
    }
    
    .sidebar-nav .nav-item:nth-child(4) a::before {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 8l7.89 4.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E");
    }
    

    
    /* Background hover effect */
    .sidebar-nav .nav-item a::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
        transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }
    
    .sidebar-nav .nav-item a:hover::after {
        width: 100%;
    }
    
    .sidebar-nav .nav-item a:hover,
    .sidebar-nav .nav-item a:focus,
    .sidebar-nav .nav-item a:active {
        color: #ffffff;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
        border-left-color: #ffffff;
        transform: translateX(6px);
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
        width: 100%;
        box-sizing: border-box;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .sidebar-nav .nav-item a:hover::before,
    .sidebar-nav .nav-item a:focus::before {
        opacity: 1;
        transform: scale(1.15) rotate(5deg);
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .sidebar-nav .nav-item a:active {
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
        transform: translateX(8px) scale(0.96);
        transition: all 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
    }
    
    /* Touch-specific styles for mobile */
    @media (hover: none) and (pointer: coarse) {
        .sidebar-nav .nav-item a:hover {
            background: transparent;
            transform: none;
            border-left-color: transparent;
            box-shadow: none;
        }
        
        .sidebar-nav .nav-item a:active {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
            transform: translateX(8px) scale(0.95);
            border-left-color: #ffffff;
            box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
            transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        /* Ensure touch targets are large enough */
        .sidebar-nav .nav-item a {
            min-height: 50px;
            padding: 16px 25px;
        }
        
        .mobile-close {
            min-width: 52px;
            min-height: 52px;
        }
        
        .hamburger {
            min-width: 44px;
            min-height: 44px;
        }
    }
    
    /* Smooth fade-in animation for mobile menu */
    .mobile-menu.active .sidebar-nav .nav-item {
        animation: fadeInSmooth 1s ease-out forwards;
    }
    
    .mobile-menu.active .sidebar-nav .nav-item:nth-child(1) { animation-delay: 0.2s; }
    .mobile-menu.active .sidebar-nav .nav-item:nth-child(2) { animation-delay: 0.4s; }
    .mobile-menu.active .sidebar-nav .nav-item:nth-child(3) { animation-delay: 0.6s; }
    .mobile-menu.active .sidebar-nav .nav-item:nth-child(4) { animation-delay: 0.8s; }
    .mobile-menu.active .sidebar-nav .nav-item:nth-child(5) { animation-delay: 1.0s; }

    /* Mobile Policies Section Styles */
    .policies-section {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .policies-label {
        display: block;
        color: rgba(255, 255, 255, 0.7);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 12px;
        padding: 0 25px;
        font-family: 'Inter', sans-serif;
    }

    .policies-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .policies-list li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .policies-list li:last-child {
        border-bottom: none;
    }

    .policies-list a {
        font-size: 13px;
        font-weight: 400;
        padding: 12px 35px;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        display: block;
        transition: all 0.3s ease;
        border-left: 2px solid transparent;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: 'Inter', sans-serif;
    }

    .policies-list a:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
        border-left-color: rgba(255, 255, 255, 0.3);
        transform: translateX(4px);
    }

    .policies-list a:active {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(6px);
    }
    
    @keyframes fadeInSmooth {
        0% {
            opacity: 0;
            transform: translateY(15px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Add subtle glow effect on hover */
    .sidebar-nav .nav-item:hover {
        box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
    }
    

    

    

    
    .hero {
        padding: 80px 20px 60px;
        min-height: 90vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        /* Ensure CTA button is visible on all devices */
        position: relative;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
        width: 100%;
        /* Better layout for Apple devices */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }

    .hero-glow {
        width: 350px;
        height: 350px;
        opacity: 0.6;
    }

    .hero-badge {
        padding: 8px 20px;
        margin-bottom: 25px;
        display: inline-block;
    }

    .badge-text {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        line-height: 1.1;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        letter-spacing: -0.02em;
    }

    .title-line.highlight::after {
        width: 60px;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-bottom: 20px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .hero-description {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 30px;
        line-height: 1.6;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 0;
        align-items: center;
        /* Ensure CTA button is always visible */
        position: relative;
        z-index: 10;
    }

    .hero-cta.primary,
    .hero-cta.secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        height: 50px;
        /* Ensure CTA button is always visible */
        position: relative;
        z-index: 15;
    }

    .hero-cta.primary {
        padding: 0 32px;
        font-size: 15px;
        font-weight: 600;
    }

    .hero-cta.secondary {
        padding: 0 32px;
        font-size: 15px;
        font-weight: 500;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    
    .hero-stats .stat-item {
        text-align: center;
        min-width: 80px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.8rem;
        margin-bottom: 3px;
    }
    
    .hero-stats .stat-label {
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .scroll-indicator {
        display: none;
    }
    
    /* Apple Device Optimizations */
    @supports (-webkit-touch-callout: none) {
        /* iOS Safari specific optimizations */
        .hero {
            min-height: 100vh;
            min-height: -webkit-fill-available;
            padding: 60px 20px 40px;
        }
        
        .hero-content {
            padding: 0;
            max-height: 100vh;
            max-height: -webkit-fill-available;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hero-actions {
            margin-top: auto;
            margin-bottom: 20px;
            padding-bottom: env(safe-area-inset-bottom);
        }
        
        .hero-stats {
            margin-top: 20px;
            margin-bottom: 10px;
        }
    }
    
    /* iPhone Pro Max and large screens specific */
    @media screen and (min-width: 428px) and (max-width: 926px) {
        .hero {
            min-height: 100vh;
            padding: 70px 20px 50px;
        }
        
        .hero-content {
            justify-content: space-between;
            min-height: 100vh;
            min-height: -webkit-fill-available;
        }
        
        .hero-title {
            font-size: clamp(2.8rem, 8vw, 3.5rem);
            margin-bottom: 15px;
        }
        
        .hero-subtitle {
            font-size: clamp(1.1rem, 3.5vw, 1.3rem);
            margin-bottom: 15px;
        }
        
        .hero-description {
            font-size: clamp(0.95rem, 2.8vw, 1.05rem);
            margin-bottom: 25px;
            max-width: 600px;
        }
        
        .hero-actions {
            margin-top: 30px;
            margin-bottom: 30px;
        }
        
        .hero-stats {
            margin-top: 25px;
            margin-bottom: 15px;
        }
    }
    
    /* iPhone Pro Max landscape */
    @media screen and (min-width: 926px) and (max-width: 1024px) and (orientation: landscape) {
        .hero {
            min-height: 100vh;
            padding: 50px 20px 30px;
        }
        
        .hero-content {
            justify-content: center;
            gap: 20px;
        }
        
        .hero-title {
            font-size: clamp(2.5rem, 6vw, 3rem);
            margin-bottom: 10px;
        }
        
        .hero-subtitle {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            margin-bottom: 10px;
        }
        
        .hero-description {
            font-size: clamp(0.9rem, 2vw, 1rem);
            margin-bottom: 20px;
        }
        
        .hero-actions {
            margin-top: 20px;
            margin-bottom: 20px;
        }
        
        .hero-stats {
            margin-top: 15px;
            margin-bottom: 10px;
        }
    }
    
    section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
        text-align: center;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 16px;
        text-align: center;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .section-number {
        font-size: 12px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-top: 50px;
        padding: 0 15px;
    }
    
    .stat-card {
        padding: 25px 20px;
        border-radius: 18px;
    }
    
    .stat-number {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    
    .stat-title {
        font-size: 18px;
    }
    
    .stat-description {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 50px 0;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 25px 20px;
        border-radius: 18px;
    }
    
    .service-icon {
        font-size: 36px;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
        display: block;
        text-shadow: 
            0 0 8px rgba(255, 255, 255, 0.3),
            0 0 16px rgba(255, 255, 255, 0.2),
            0 0 24px rgba(255, 255, 255, 0.1);
    }
    
    .service-icon i {
        display: inline-block;
        text-align: center;
        width: 100%;
    }
    
    .service-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .services-cta {
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .services-cta .cta-button {
        padding: 14px 28px;
        font-size: 14px;
        letter-spacing: 0.6px;
    }
    
    .strategy-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
        margin-top: 40px;
        border-radius: 18px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    }
    
    .strategy-icon {
        font-size: 48px;
        margin-bottom: 20px;
        background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    }
    
    .strategy-step {
        font-size: 22px;
        margin-bottom: 15px;
        background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        letter-spacing: 0.1em;
    }
    
    .strategy-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
        max-width: 100%;
        color: rgba(255, 255, 255, 0.85);
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .strategy-indicators {
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
    }
    
    .indicator {
        width: 16px;
        height: 16px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .cta-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 16px;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .cta-content .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .footer {
        padding: 45px 0 25px;
        margin-top: 60px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 35px;
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
        align-items: center;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .footer-logo .logo-icon {
        height: 35px;
        width: auto;
    }
    
    .footer-info {
        gap: 5px;
        align-items: center;
    }
    
    .copyright {
        font-size: 12px;
        text-align: center;
    }
    
    .footer-tagline {
        font-size: 10px;
        text-align: center;
    }

    .footer-branding {
        font-size: 8px;
        text-align: center;
        margin-top: 2px;
    }
    
    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section {
        text-align: center;
        gap: 10px;
        align-items: center;
    }
    

    
    .footer-section-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-link {
        font-size: 11px;
        padding: 4px 0;
        text-align: center;
    }
    
    .footer-link:hover {
        color: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
    }
    
    .section-number-bottom {
        bottom: 20px;
        right: 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px 50px;
        min-height: 85vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
        text-align: center;
        width: 100%;
    }

    .hero-glow {
        width: 280px;
        height: 280px;
        opacity: 0.5;
    }

    .hero-badge {
        padding: 6px 16px;
        margin-bottom: 20px;
        display: inline-block;
    }

    .badge-text {
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
        line-height: 1.1;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        letter-spacing: -0.01em;
    }

    .title-line.highlight::after {
        width: 50px;
        bottom: -6px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4.5vw, 1.2rem);
        margin-bottom: 15px;
        font-weight: 600;
        letter-spacing: 0.3px;
    }

    .hero-description {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
        margin-bottom: 25px;
        line-height: 1.6;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.9;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 0;
        align-items: center;
    }

    .hero-cta.primary,
    .hero-cta.secondary {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        height: 48px;
    }

    .hero-cta.primary {
        padding: 0 28px;
        font-size: 14px;
        font-weight: 600;
    }

    .hero-cta.secondary {
        padding: 0 28px;
        font-size: 14px;
        font-weight: 500;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 25px;
        flex-wrap: wrap;
    }
    
    .hero-stats .stat-item {
        text-align: center;
        min-width: 70px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.6rem;
        margin-bottom: 2px;
    }
    
    .hero-stats .stat-label {
        font-size: 9px;
        letter-spacing: 0.6px;
    }

    .scroll-indicator {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .stats-grid {
        gap: 20px;
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .stat-card {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .stat-number {
        font-size: clamp(1.5rem, 10vw, 2.5rem);
    }
    
    .stat-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .stat-description {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .services-grid {
        gap: 20px;
        margin: 40px 0;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 35px 20px;
        border-radius: 18px;
    }
    
    .service-icon {
        font-size: 42px;
        margin-bottom: 18px;
        text-align: center;
        width: 100%;
        display: block;
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.3),
            0 0 20px rgba(255, 255, 255, 0.2),
            0 0 30px rgba(255, 255, 255, 0.1);
    }
    
    .service-icon i {
        display: inline-block;
        text-align: center;
        width: 100%;
    }
    
    .service-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .services-cta {
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .services-cta .cta-button {
        /* Inherit standard cta-button styles */
    }
    
    .strategy-card {
        padding: 30px 20px;
        margin-top: 35px;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    }
    
    .strategy-icon {
        font-size: 42px;
        margin-bottom: 18px;
        background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
        border: 2px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);
    }
    
    .strategy-step {
        font-size: 18px;
        margin-bottom: 12px;
        background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        letter-spacing: 0.08em;
    }
    
    .strategy-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.8);
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .strategy-indicators {
        gap: 12px;
    }
    
    .indicator {
        width: 14px;
        height: 14px;
    }
    
    .cta-content {
        gap: 25px;
        padding: 0 15px;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 12px;
    }
    
    .cta-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .cta-content .cta-button {
        max-width: 280px;
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .footer {
        padding: 35px 0 20px;
        margin-top: 50px;
    }
    
    .footer-content {
        gap: 20px;
        padding: 0 15px;
        max-width: 100%;
    }
    
    .footer-logo {
        gap: 10px;
        align-items: center;
    }
    
    .footer-logo .logo-icon {
        height: 30px;
        width: auto;
    }
    
    .footer-info {
        gap: 4px;
        align-items: center;
    }
    
    .copyright {
        font-size: 11px;
        text-align: center;
    }
    
    .footer-tagline {
        font-size: 9px;
        text-align: center;
    }

    .footer-branding {
        font-size: 7px;
        text-align: center;
        margin-top: 2px;
    }
    
    .footer-links {
        gap: 15px;
        width: 100%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section {
        text-align: center;
        gap: 8px;
        align-items: center;
    }
    

    
    .footer-section-links {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-link {
        font-size: 10px;
        padding: 3px 0;
        text-align: center;
    }
    
    .footer-link:hover {
        color: rgba(255, 255, 255, 1);
        transform: translateY(-1px);
    }
    
    .section-number-bottom {
        bottom: 15px;
        right: 15px;
        font-size: 11px;
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
    .hero {
        min-height: 100vh;
        padding: 120px 0 80px;
    }
    
    .hero-content {
        padding: 0 15px;
        text-align: center;
    }
    
    .hero-glow {
        width: 200px;
        height: 200px;
        opacity: 0.3;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }
    
    .badge-text {
        letter-spacing: 1px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .title-line.highlight::after {
        width: 60px;
        height: 2px;
        bottom: -8px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 25px;
        padding: 0 5px;
    }
    
    .hero-actions {
        margin-bottom: 25px;
    }
    
    .hero-cta.primary,
    .hero-cta.secondary {
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 500;
    }
    
    .hero-cta.primary {
        margin-bottom: 10px;
    }
    
    .hero-cta.secondary {
        margin-left: 0;
    }
    
    .hero-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
        flex-wrap: wrap;
    }
    
    .hero-stats .stat-item {
        text-align: center;
        min-width: 60px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }
    
    .hero-stats .stat-label {
        font-size: 8px;
        letter-spacing: 0.5px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 14px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .stats-grid {
        gap: 20px;
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .stat-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    
    .stat-title {
        font-size: 16px;
    }
    
    .stat-description {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .services-grid {
        gap: 20px;
        margin: 40px 0;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .service-icon {
        font-size: 40px;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
        display: block;
        text-shadow: 
            0 0 8px rgba(255, 255, 255, 0.3),
            0 0 16px rgba(255, 255, 255, 0.2),
            0 0 24px rgba(255, 255, 255, 0.1);
    }
    
    .service-icon i {
        display: inline-block;
        text-align: center;
        width: 100%;
    }
    
    .service-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .services-cta {
        margin-top: 30px;
        padding: 0 15px;
    }
    
    .services-cta .cta-button {
        /* Inherit standard cta-button styles */
    }
    
    .strategy-card {
        padding: 25px 18px;
        border-radius: 14px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
    }
    
    .strategy-icon {
        font-size: 36px;
        margin-bottom: 15px;
        background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        border: 2px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.06);
    }
    
    .strategy-step {
        font-size: 16px;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
        letter-spacing: 0.06em;
    }
    
    .strategy-description {
        font-size: 13px;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.75);
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .strategy-indicators {
        margin-top: 15px;
        gap: 8px;
    }
    
    /* Mobile touch optimizations for strategy section */
    .strategy-card {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .strategy-card:active {
        transform: scale(0.98);
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .cta-content {
        padding: 40px 20px;
        text-align: center;
    }
    
    .cta-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .cta-content .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 15px 28px;
        font-size: 15px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .footer-info {
        margin-top: 8px;
    }
    
    .copyright {
        font-size: 10px;
    }
    
    .footer-tagline {
        font-size: 8px;
    }

    .footer-branding {
        font-size: 6px;
        margin-top: 1px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section {
        text-align: center;
        gap: 6px;
        align-items: center;
    }
    

    
    .footer-section-links {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-link {
        font-size: 9px;
        padding: 2px 0;
        text-align: center;
    }
    
    .footer-link:hover {
        color: rgba(255, 255, 255, 0.9);
        transform: translateY(-1px);
    }
    
    .section-number-bottom {
        font-size: 9px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Disable hover effects on mobile */
    .stat-card:hover::before,
    .strategy-card:hover::before {
        opacity: 0;
    }
    
    .stat-card:hover,
    .strategy-card:hover {
        transform: none;
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Optimize animations for mobile */
    .fade-in-up {
        animation-duration: 0.4s;
    }
    
    /* Improve touch targets */
    .cta-button,
    .indicator {
        min-height: 44px;
        min-width: 44px;
    }
    
    .indicator {
        width: 16px;
        height: 16px;
    }
    
    /* Reduce motion for accessibility */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* About Page Styles */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* About Hero Tablet & Mobile Optimizations */
@media (max-width: 1024px) {
    .about-hero {
        min-height: 95vh;
        padding: 110px 0 70px;
    }
    
    .about-hero .hero-content {
        padding: 0 30px;
        text-align: center;
    }
    
    .about-hero .hero-title {
        font-size: clamp(3rem, 7vw, 4rem);
        margin-bottom: 25px;
    }
    
    .about-hero .hero-subtitle {
        font-size: clamp(1.2rem, 3.5vw, 1.4rem);
        margin-bottom: 20px;
    }
    
    .about-hero .hero-description {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 35px;
    }
    
    .about-hero .hero-actions {
        margin-bottom: 45px;
    }
    
    .about-hero .scroll-indicator {
        margin-top: 35px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 90vh;
        padding: 100px 0 60px;
    }
    
    .about-hero .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .about-hero .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 20px;
    }
    
    .about-hero .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: 15px;
    }
    
    .about-hero .hero-description {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .about-hero .hero-actions {
        margin-bottom: 40px;
    }
    
    .about-hero .scroll-indicator {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 85vh;
        padding: 80px 0 50px;
    }
    
    .about-hero .hero-content {
        padding: 0 15px;
    }
    
    .about-hero .hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        margin-bottom: 15px;
    }
    
    .about-hero .hero-subtitle {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
        margin-bottom: 12px;
    }
    
    .about-hero .hero-description {
        font-size: clamp(0.9rem, 4vw, 1rem);
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .about-hero .hero-actions {
        margin-bottom: 30px;
    }
    
    .about-hero .scroll-indicator {
        margin-top: 25px;
    }
}

@media (max-width: 320px) {
    .about-hero {
        min-height: 80vh;
        padding: 70px 0 40px;
    }
    
    .about-hero .hero-content {
        padding: 0 12px;
    }
    
    .about-hero .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 12px;
    }
    
    .about-hero .hero-subtitle {
        font-size: clamp(0.95rem, 5vw, 1.1rem);
        margin-bottom: 10px;
    }
    
    .about-hero .hero-description {
        font-size: clamp(0.85rem, 4.5vw, 0.95rem);
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .about-hero .hero-actions {
        margin-bottom: 25px;
    }
    
    .about-hero .scroll-indicator {
        margin-top: 20px;
    }
}

/* Mission Section */
.mission-section {
    padding: 120px 0;
    position: relative;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    pointer-events: none;
}

.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(1.2);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    filter: grayscale(100%) brightness(1.5);
}

.mission-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 1px;
}

.mission-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Story Section */
.story-section {
    padding: 120px 0;
    position: relative;
}

.story-timeline {
    margin-top: 60px;
    position: relative;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 0 40px;
    flex: 1;
    max-width: 400px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.timeline-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Values Section */
.values-section {
    padding: 120px 0;
    position: relative;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    pointer-events: none;
}

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

/* Desktop styles for smaller value cards */
@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        gap: 25px;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .value-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .value-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ffffff;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(1.2);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    filter: grayscale(100%) brightness(1.5);
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.value-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile responsiveness for values section */
@media (max-width: 1024px) {
    .values-section {
        padding: 90px 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 60px;
    }
    
    .value-card {
        padding: 35px 25px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .value-card:active {
        transform: scale(0.98);
    }
    
    .value-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
        margin-bottom: 22px;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
    }
    
    .value-title {
        font-size: clamp(20px, 4vw, 22px);
        margin-bottom: 15px;
    }
    
    .value-description {
        font-size: clamp(15px, 3vw, 16px);
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 80px 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 50px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .value-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .value-description {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .values-section {
        padding: 60px 0;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
        margin-top: 40px;
    }
    
    .value-card {
        padding: 25px 18px;
    }
    
    .value-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .value-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .value-description {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (max-width: 320px) {
    .values-section {
        padding: 50px 0;
    }
    
    .values-grid {
        gap: 18px;
        margin-top: 30px;
    }
    
    .value-card {
        padding: 20px 15px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .value-title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .value-description {
        font-size: 13px;
        line-height: 1.3;
    }
}

/* Team Section */
.team-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.team-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.team-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
}

.team-section .section-description {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 25px;
}

.team-member::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: rotate 10s linear infinite;
}

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

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover::after {
    opacity: 0.3;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.1);
}

.member-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: grayscale(100%) brightness(1.3);
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.member-avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.team-member:hover .member-avatar {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.15) 100%);
    filter: grayscale(0%) brightness(1.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.team-member:hover .member-avatar::before {
    opacity: 1;
}

.team-member:hover .member-avatar img {
    transform: scale(1.1);
}

.white-circle-avatar {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.team-member:hover .white-circle-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.member-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.member-role {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.member-bio {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Enhanced Mobile Responsive for Team Sections */
@media (max-width: 1024px) {
    .team-section {
        padding: 90px 0;
    }
    
    .team-section .section-title {
        font-size: clamp(2.5rem, 5.5vw, 3rem);
        margin-bottom: 25px;
    }
    
    .team-section .section-description {
        font-size: clamp(1.1rem, 3vw, 1.2rem);
        margin-bottom: 50px;
        line-height: 1.7;
        max-width: 100%;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 60px;
        padding: 0 20px;
    }
    
    .team-member {
        padding: 35px 30px;
        margin: 0 auto;
        max-width: 100%;
        min-height: auto;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .team-member:active {
        transform: scale(0.98);
    }
    
    .member-avatar {
        width: 95px;
        height: 95px;
        margin-bottom: 25px;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
    }
    
    .member-name {
        font-size: clamp(20px, 4vw, 22px);
        word-wrap: break-word;
        hyphens: auto;
        margin-bottom: 10px;
    }
    
    .member-role {
        font-size: clamp(13px, 2.5vw, 15px);
        padding: 8px 18px;
        word-wrap: break-word;
        border-radius: 18px;
        margin-bottom: 18px;
    }
    
    .member-bio {
        font-size: clamp(14px, 3vw, 15px);
        line-height: 1.7;
        word-wrap: break-word;
        hyphens: auto;
        color: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 80px 0;
    }
    
    .team-section .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .team-section .section-description {
        font-size: clamp(1rem, 3.5vw, 1.1rem);
        margin-bottom: 40px;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 50px;
        padding: 0 15px;
    }
    
    .team-member {
        padding: 30px 25px;
        margin: 0 auto;
        max-width: 100%;
        min-height: auto;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .team-member:active {
        transform: scale(0.98);
    }
    
    .member-avatar {
        width: 85px;
        height: 85px;
        margin-bottom: 20px;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    }
    
    .member-name {
        font-size: clamp(18px, 4.5vw, 20px);
        word-wrap: break-word;
        hyphens: auto;
        margin-bottom: 8px;
    }
    
    .member-role {
        font-size: clamp(12px, 3vw, 14px);
        padding: 6px 15px;
        word-wrap: break-word;
        border-radius: 15px;
        margin-bottom: 15px;
    }
    
    .member-bio {
        font-size: clamp(13px, 3.5vw, 14px);
        line-height: 1.6;
        word-wrap: break-word;
        hyphens: auto;
        color: rgba(255, 255, 255, 0.85);
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-section .section-title {
        font-size: clamp(1.8rem, 7vw, 2rem);
        margin-bottom: 15px;
    }
    
    .team-section .section-description {
        font-size: clamp(0.95rem, 4vw, 1rem);
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .team-member {
        padding: 25px 20px;
        margin: 0 auto;
        max-width: 100%;
        min-height: auto;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
    }
    
    .member-avatar {
        width: 75px;
        height: 75px;
        margin-bottom: 18px;
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);
    }
    
    .member-name {
        font-size: clamp(16px, 5vw, 18px);
        word-wrap: break-word;
        hyphens: auto;
        margin-bottom: 6px;
    }
    
    .member-role {
        font-size: clamp(11px, 3.5vw, 13px);
        padding: 5px 12px;
        word-wrap: break-word;
        border-radius: 12px;
        margin-bottom: 12px;
    }
    
    .member-bio {
        font-size: clamp(12px, 4vw, 13px);
        line-height: 1.5;
        word-wrap: break-word;
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
    .team-section {
        padding: 50px 0;
    }
    
    .team-section .section-title {
        font-size: clamp(1.6rem, 8vw, 1.8rem);
        margin-bottom: 12px;
    }
    
    .team-section .section-description {
        font-size: clamp(0.9rem, 4.5vw, 0.95rem);
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
        margin-top: 30px;
        padding: 0 8px;
    }
    
    .team-member {
        padding: 20px 15px;
        margin: 0 auto;
        max-width: 100%;
        min-height: auto;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    }
    
    .member-avatar {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.06);
    }
    
    .member-name {
        font-size: clamp(15px, 5.5vw, 17px);
        word-wrap: break-word;
        hyphens: auto;
        margin-bottom: 5px;
    }
    
    .member-role {
        font-size: clamp(10px, 4vw, 12px);
        padding: 4px 10px;
        word-wrap: break-word;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .member-bio {
        font-size: clamp(11px, 4.5vw, 12px);
        line-height: 1.4;
        word-wrap: break-word;
        hyphens: auto;
        color: rgba(255, 255, 255, 0.75);
    }
}

/* Services Page Styles */
.services-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Services Hero Tablet & Mobile Optimizations */
@media (max-width: 1024px) {
    .services-hero {
        min-height: 95vh;
        padding: 110px 0 70px;
    }
    
    .services-hero .hero-content {
        padding: 0 30px;
        text-align: center;
    }
    
    .services-hero .hero-title {
        font-size: clamp(3rem, 7vw, 4rem);
        margin-bottom: 25px;
    }
    
    .services-hero .hero-subtitle {
        font-size: clamp(1.2rem, 3.5vw, 1.4rem);
        margin-bottom: 20px;
    }
    
    .services-hero .hero-description {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 35px;
    }
    
    .services-hero .hero-actions {
        margin-bottom: 45px;
    }
    
    .services-hero .scroll-indicator {
        margin-top: 35px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 90vh;
        padding: 100px 0 60px;
    }
    
    .services-hero .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .services-hero .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 20px;
    }
    
    .services-hero .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: 15px;
    }
    
    .services-hero .hero-description {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .services-hero .hero-actions {
        margin-bottom: 40px;
    }
    
    .services-hero .scroll-indicator {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        min-height: 85vh;
        padding: 80px 0 50px;
    }
    
    .services-hero .hero-content {
        padding: 0 15px;
    }
    
    .services-hero .hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        margin-bottom: 15px;
    }
    
    .services-hero .hero-subtitle {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
        margin-bottom: 12px;
    }
    
    .services-hero .hero-description {
        font-size: clamp(0.9rem, 4vw, 1rem);
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .services-hero .hero-actions {
        margin-bottom: 30px;
    }
    
    .services-hero .scroll-indicator {
        margin-top: 25px;
    }
}

@media (max-width: 320px) {
    .services-hero {
        min-height: 80vh;
        padding: 70px 0 40px;
    }
    
    .services-hero .hero-content {
        padding: 0 12px;
    }
    
    .services-hero .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 12px;
    }
    
    .services-hero .hero-subtitle {
        font-size: clamp(0.95rem, 5vw, 1.1rem);
        margin-bottom: 10px;
    }
    
    .services-hero .hero-description {
        font-size: clamp(0.85rem, 4.5vw, 0.95rem);
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .services-hero .hero-actions {
        margin-bottom: 25px;
    }
    
    .services-hero .scroll-indicator {
        margin-top: 20px;
    }
}

.main-services-section {
    padding: 120px 0;
    position: relative;
}

/* Main Services Section Tablet & Mobile Optimizations */
@media (max-width: 1024px) {
    .main-services-section {
        padding: 90px 0;
    }
    
    .main-services-section .section-title {
        font-size: clamp(2.5rem, 5.5vw, 3rem);
        margin-bottom: 25px;
    }
    
    .main-services-section .section-description {
        font-size: clamp(1.1rem, 3vw, 1.2rem);
        margin-bottom: 50px;
        line-height: 1.7;
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 60px;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 35px 30px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .service-card:active {
        transform: scale(0.98);
    }
    
    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
        margin-bottom: 22px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-title {
        font-size: clamp(20px, 4vw, 22px);
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: clamp(15px, 3vw, 16px);
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 20px;
    }
    
    .service-features {
        margin-top: 20px;
    }
    
    .service-features li {
        font-size: clamp(14px, 2.8vw, 15px);
        margin-bottom: 8px;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .main-services-section {
        padding: 80px 0;
    }
    
    .main-services-section .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .main-services-section .section-description {
        font-size: clamp(1rem, 3.5vw, 1.1rem);
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 50px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 25px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
        margin-bottom: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-title {
        font-size: clamp(18px, 4.5vw, 20px);
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: clamp(14px, 3.5vw, 15px);
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .service-features {
        margin-top: 18px;
    }
    
    .service-features li {
        font-size: clamp(13px, 3vw, 14px);
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    .main-services-section {
        padding: 60px 0;
    }
    
    .main-services-section .section-title {
        font-size: clamp(1.8rem, 7vw, 2rem);
        margin-bottom: 15px;
    }
    
    .main-services-section .section-description {
        font-size: clamp(0.95rem, 4vw, 1rem);
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 25px 20px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
        margin-bottom: 18px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-title {
        font-size: clamp(16px, 5vw, 18px);
        margin-bottom: 10px;
    }
    
    .service-description {
        font-size: clamp(13px, 4vw, 14px);
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .service-features {
        margin-top: 15px;
    }
    
    .service-features li {
        font-size: clamp(12px, 3.5vw, 13px);
        margin-bottom: 5px;
    }
}

@media (max-width: 320px) {
    .main-services-section {
        padding: 50px 0;
    }
    
    .main-services-section .section-title {
        font-size: clamp(1.6rem, 8vw, 1.8rem);
        margin-bottom: 12px;
    }
    
    .main-services-section .section-description {
        font-size: clamp(0.9rem, 4.5vw, 0.95rem);
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
        margin-top: 30px;
        padding: 0 8px;
    }
    
    .service-card {
        padding: 20px 15px;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-bottom: 15px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-title {
        font-size: clamp(15px, 5.5vw, 17px);
        margin-bottom: 8px;
    }
    
    .service-description {
        font-size: clamp(12px, 4.5vw, 13px);
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .service-features {
        margin-top: 12px;
    }
    
    .service-features li {
        font-size: clamp(11px, 4vw, 12px);
        margin-bottom: 4px;
    }
}

.main-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.service-features li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

.process-section {
    padding: 120px 0;
    position: relative;
}

/* Process Section Tablet & Mobile Optimizations */
@media (max-width: 1024px) {
    .process-section {
        padding: 90px 0;
    }
    
    .process-section .section-title {
        font-size: clamp(2.5rem, 5.5vw, 3rem);
        margin-bottom: 25px;
    }
    
    .process-section .section-description {
        font-size: clamp(1.1rem, 3vw, 1.2rem);
        margin-bottom: 50px;
        line-height: 1.7;
        max-width: 100%;
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 60px;
        padding: 0 20px;
    }
    
    .process-step {
        padding: 35px 30px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .process-step:active {
        transform: scale(0.98);
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
    }
    
    .step-title {
        font-size: clamp(20px, 4vw, 22px);
        margin-bottom: 15px;
    }
    
    .step-description {
        font-size: clamp(15px, 3vw, 16px);
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-section .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .process-section .section-description {
        font-size: clamp(1rem, 3.5vw, 1.1rem);
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 50px;
        padding: 0 15px;
    }
    
    .process-step {
        padding: 30px 25px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 18px;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    }
    
    .step-title {
        font-size: clamp(18px, 4.5vw, 20px);
        margin-bottom: 12px;
    }
    
    .step-description {
        font-size: clamp(14px, 3.5vw, 15px);
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-section .section-title {
        font-size: clamp(1.8rem, 7vw, 2rem);
        margin-bottom: 15px;
    }
    
    .process-section .section-description {
        font-size: clamp(0.95rem, 4vw, 1rem);
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .process-step {
        padding: 25px 20px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);
    }
    
    .step-title {
        font-size: clamp(16px, 5vw, 18px);
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: clamp(13px, 4vw, 14px);
        line-height: 1.5;
    }
}

@media (max-width: 320px) {
    .process-section {
        padding: 50px 0;
    }
    
    .process-section .section-title {
        font-size: clamp(1.6rem, 8vw, 1.8rem);
        margin-bottom: 12px;
    }
    
    .process-section .section-description {
        font-size: clamp(0.9rem, 4.5vw, 0.95rem);
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 18px;
        margin-top: 30px;
        padding: 0 8px;
    }
    
    .process-step {
        padding: 20px 15px;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 12px;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.06);
    }
    
    .step-title {
        font-size: clamp(15px, 5.5vw, 17px);
        margin-bottom: 8px;
    }
    
    .step-description {
        font-size: clamp(12px, 4.5vw, 13px);
        line-height: 1.4;
    }
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Contact Page Styles - Enhanced */
.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* Contact Hero Tablet & Mobile Optimizations */
@media (max-width: 1024px) {
    .contact-hero {
        min-height: 95vh;
        padding: 110px 0 70px;
    }
    
    .contact-hero .hero-content {
        padding: 0 30px;
        text-align: center;
    }
    
    .contact-hero .hero-title {
        font-size: clamp(3rem, 7vw, 4rem);
        margin-bottom: 25px;
    }
    
    .contact-hero .hero-subtitle {
        font-size: clamp(1.2rem, 3.5vw, 1.4rem);
        margin-bottom: 20px;
    }
    
    .contact-hero .hero-description {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 35px;
    }
    
    .contact-hero .scroll-indicator {
        margin-top: 35px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 90vh;
        padding: 100px 0 60px;
    }
    
    .contact-hero .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .contact-hero .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 20px;
    }
    
    .contact-hero .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: 15px;
    }
    
    .contact-hero .hero-description {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .contact-hero .scroll-indicator {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 85vh;
        padding: 80px 0 50px;
    }
    
    .contact-hero .hero-content {
        padding: 0 15px;
    }
    
    .contact-hero .hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        margin-bottom: 15px;
    }
    
    .contact-hero .hero-subtitle {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
        margin-bottom: 12px;
    }
    
    .contact-hero .hero-description {
        font-size: clamp(0.9rem, 4vw, 1rem);
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .contact-hero .scroll-indicator {
        margin-top: 25px;
    }
}

@media (max-width: 320px) {
    .contact-hero {
        min-height: 80vh;
        padding: 70px 0 40px;
    }
    
    .contact-hero .hero-content {
        padding: 0 12px;
    }
    
    .contact-hero .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 12px;
    }
    
    .contact-hero .hero-subtitle {
        font-size: clamp(0.95rem, 5vw, 1.1rem);
        margin-bottom: 10px;
    }
    
    .contact-hero .hero-description {
        font-size: clamp(0.85rem, 4.5vw, 0.95rem);
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .contact-hero .scroll-indicator {
        margin-top: 20px;
    }
}

.contact-hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
}

.contact-section {
    padding: 120px 0;
    position: relative;
}

/* Contact Section Tablet & Mobile Optimizations */
@media (max-width: 1024px) {
    .contact-section {
        padding: 90px 0;
    }
    
    .contact-section .section-title {
        font-size: clamp(2.5rem, 5.5vw, 3rem);
        margin-bottom: 25px;
    }
    
    .contact-section .section-description {
        font-size: clamp(1.1rem, 3vw, 1.2rem);
        margin-bottom: 50px;
        line-height: 1.7;
        max-width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 60px;
        padding: 0 20px;
    }
    
    .contact-item {
        padding: 35px 30px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .contact-item:active {
        transform: scale(0.98);
    }
    
    .contact-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
        margin-bottom: 22px;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
    }
    
    .contact-title {
        font-size: clamp(20px, 4vw, 22px);
        margin-bottom: 15px;
    }
    
    .contact-description {
        font-size: clamp(15px, 3vw, 16px);
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 20px;
    }
    
    .contact-link {
        font-size: clamp(16px, 3.5vw, 18px);
        margin-bottom: 8px;
    }
    
    .response-time, .best-for {
        font-size: clamp(14px, 2.8vw, 15px);
        line-height: 1.6;
        margin-bottom: 6px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-section .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .contact-section .section-description {
        font-size: clamp(1rem, 3.5vw, 1.1rem);
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 50px;
        padding: 0 15px;
    }
    
    .contact-item {
        padding: 30px 25px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 26px;
        margin-bottom: 20px;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    }
    
    .contact-title {
        font-size: clamp(18px, 4.5vw, 20px);
        margin-bottom: 12px;
    }
    
    .contact-description {
        font-size: clamp(14px, 3.5vw, 15px);
        line-height: 1.6;
        margin-bottom: 18px;
    }
    
    .contact-link {
        font-size: clamp(15px, 4vw, 17px);
        margin-bottom: 6px;
    }
    
    .response-time, .best-for {
        font-size: clamp(13px, 3vw, 14px);
        line-height: 1.5;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section .section-title {
        font-size: clamp(1.8rem, 7vw, 2rem);
        margin-bottom: 15px;
    }
    
    .contact-section .section-description {
        font-size: clamp(0.95rem, 4vw, 1rem);
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .contact-item {
        padding: 25px 20px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
    }
    
    .contact-icon {
        width: 65px;
        height: 65px;
        font-size: 24px;
        margin-bottom: 18px;
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);
    }
    
    .contact-title {
        font-size: clamp(16px, 5vw, 18px);
        margin-bottom: 10px;
    }
    
    .contact-description {
        font-size: clamp(13px, 4vw, 14px);
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .contact-link {
        font-size: clamp(14px, 4.5vw, 16px);
        margin-bottom: 5px;
    }
    
    .response-time, .best-for {
        font-size: clamp(12px, 3.5vw, 13px);
        line-height: 1.4;
        margin-bottom: 4px;
    }
}

@media (max-width: 320px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-section .section-title {
        font-size: clamp(1.6rem, 8vw, 1.8rem);
        margin-bottom: 12px;
    }
    
    .contact-section .section-description {
        font-size: clamp(0.9rem, 4.5vw, 0.95rem);
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
        margin-top: 30px;
        padding: 0 8px;
    }
    
    .contact-item {
        padding: 20px 15px;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-bottom: 15px;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.06);
    }
    
    .contact-title {
        font-size: clamp(15px, 5.5vw, 17px);
        margin-bottom: 8px;
    }
    
    .contact-description {
        font-size: clamp(12px, 4.5vw, 13px);
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .contact-link {
        font-size: clamp(13px, 5vw, 15px);
        margin-bottom: 4px;
    }
    
    .response-time, .best-for {
        font-size: clamp(11px, 4vw, 12px);
        line-height: 1.3;
        margin-bottom: 3px;
    }
}

.contact-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
    z-index: -1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 28px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.contact-item:hover .contact-icon::before {
    opacity: 1;
}

.contact-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.contact-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    line-height: 1.7;
    font-weight: 400;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    display: inline-block;
}

.contact-link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    transform: translateY(-1px);
}

.contact-details {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.response-time {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin: 10px 0 6px 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.best-for {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 6px 0 0 0;
    font-weight: 400;
    line-height: 1.5;
    font-style: italic;
}

.contact-form-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 0%, transparent 50%);
    z-index: -1;
}

.form-content {
    max-width: 900px;
    margin: 0 auto;
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    padding: 40px 35px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    z-index: -1;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

    .form-label {
        font-size: 13px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 8px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

.form-input {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 18px;
    color: white;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    font-weight: 400;
}

.form-input:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.form-input option {
    background: #000000;
    color: white;
    font-weight: 400;
}

.form-submit {
    width: 100%;
    margin-top: 25px;
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.form-submit:hover::before {
    left: 100%;
}

.form-submit:hover {
    background: linear-gradient(135deg, #333333 0%, #666666 100%);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-form-section {
        padding: 80px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }
    
    .contact-item {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .contact-title {
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .contact-description {
        font-size: 14px;
        margin-bottom: 22px;
    }
    
    .contact-link {
        font-size: 16px;
    }
    
    .contact-details {
        margin-top: 22px;
        padding-top: 18px;
    }
    
    .response-time {
        font-size: 12px;
        margin: 8px 0 5px 0;
    }
    
    .best-for {
        font-size: 12px;
        margin: 5px 0 0 0;
    }
    
    .form-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .form-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .form-description {
        font-size: 15px;
        margin-bottom: 50px;
    }
    
    .contact-form {
        padding: 35px 25px;
        border-radius: 18px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-input {
        padding: 18px 20px;
        font-size: 16px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .form-input:focus {
        background: rgba(255, 255, 255, 0.15);
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .form-submit {
        padding: 20px 35px;
        font-size: 16px;
        margin-top: 30px;
        width: 100%;
        border-radius: 50px;
        background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
        border: 2px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 700;
        letter-spacing: 0.8px;
    }
    
    .form-submit:hover {
        background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
        color: #000000;
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 0 40px;
        min-height: 70vh;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        gap: 25px;
        margin-top: 50px;
    }
    
    .contact-item {
        padding: 35px 25px;
        border-radius: 18px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .contact-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .contact-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .contact-link {
        font-size: 15px;
    }
    
    .contact-details {
        margin-top: 20px;
        padding-top: 15px;
    }
    
    .response-time {
        font-size: 11px;
        margin: 6px 0 4px 0;
    }
    
    .best-for {
        font-size: 11px;
        margin: 4px 0 0 0;
    }
    
    .form-content {
        padding: 0 15px;
    }
    
    .form-title {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .form-description {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .contact-form {
        padding: 25px 20px;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }
    
    .form-row {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
        position: relative;
    }
    
    /* Mobile touch optimizations */
    .form-input,
    .form-submit {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-height: 44px; /* Better touch target */
    }
    
    /* Success/Error message styling */
    #successMessage,
    #errorMessage {
        padding: 15px 20px;
        border-radius: 10px;
        margin-top: 20px;
        font-weight: 500;
        text-align: center;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    #successMessage {
        background: rgba(0, 255, 136, 0.1);
        border-color: rgba(0, 255, 136, 0.3);
        color: #00ff88;
    }
    
    #errorMessage {
        background: rgba(255, 68, 68, 0.1);
        border-color: rgba(255, 68, 68, 0.3);
        color: #ff4444;
    }
    
    .form-input {
        padding: 16px 18px;
        font-size: 15px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 2px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .form-input:focus {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
        transform: translateY(-1px);
    }
    
    .form-submit {
        padding: 18px 30px;
        font-size: 15px;
        margin-top: 25px;
        width: 100%;
        border-radius: 45px;
        background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
        border: 2px solid rgba(255, 255, 255, 0.25);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 700;
        letter-spacing: 0.6px;
    }
    
    .form-submit:hover {
        background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.85) 100%);
        color: #000000;
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15);
    }
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.faq-section {
    padding: 120px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    z-index: -1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Thank You Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 16px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 40px 30px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px 16px 0 0;
}

.modal-body {
    padding: 30px;
}

.modal-body .cta-button {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-body .cta-button:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive for FAQ and Modal */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 25px 20px;
    }
    
    .faq-question {
        font-size: 16px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 30px 20px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 24px !important;
    }
    
    .modal-body h3 {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .faq-item {
        padding: 20px 15px;
    }
    
    .faq-question {
        font-size: 15px;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
}

/* Pricing Hero Tablet & Mobile Optimizations */
@media (max-width: 1024px) {
    .pricing-hero {
        min-height: 95vh;
        padding: 110px 0 70px;
    }
    
    .pricing-hero .hero-content {
        padding: 0 30px;
        text-align: center;
    }
    
    .pricing-hero .hero-title {
        font-size: clamp(3rem, 7vw, 4rem);
        margin-bottom: 25px;
    }
    
    .pricing-hero .hero-subtitle {
        font-size: clamp(1.2rem, 3.5vw, 1.4rem);
        margin-bottom: 20px;
    }
    
    .pricing-hero .hero-description {
        font-size: clamp(1rem, 3vw, 1.2rem);
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        min-height: 90vh;
        padding: 100px 0 60px;
    }
    
    .pricing-hero .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .pricing-hero .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 20px;
    }
    
    .pricing-hero .hero-subtitle {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: 15px;
    }
    
    .pricing-hero .hero-description {
        font-size: clamp(0.95rem, 3.5vw, 1.1rem);
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        min-height: 85vh;
        padding: 80px 0 50px;
    }
    
    .pricing-hero .hero-content {
        padding: 0 15px;
    }
    
    .pricing-hero .hero-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
        margin-bottom: 15px;
    }
    
    .pricing-hero .hero-subtitle {
        font-size: clamp(1rem, 4.5vw, 1.2rem);
        margin-bottom: 12px;
    }
    
    .pricing-hero .hero-description {
        font-size: clamp(0.9rem, 4vw, 1rem);
        line-height: 1.5;
        margin-bottom: 25px;
    }
}

@media (max-width: 320px) {
    .pricing-hero {
        min-height: 80vh;
        padding: 70px 0 40px;
    }
    
    .pricing-hero .hero-content {
        padding: 0 12px;
    }
    
    .pricing-hero .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 12px;
    }
    
    .pricing-hero .hero-subtitle {
        font-size: clamp(0.95rem, 5vw, 1.1rem);
        margin-bottom: 10px;
    }
    
    .pricing-hero .hero-description {
        font-size: clamp(0.85rem, 4.5vw, 0.95rem);
        line-height: 1.4;
        margin-bottom: 20px;
    }
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
    z-index: -1;
}

.pricing-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
}

/* Pricing Section Tablet & Mobile Optimizations */
@media (max-width: 1024px) {
    .pricing-section {
        padding: 90px 0;
    }
    
    .pricing-section .section-title {
        font-size: clamp(2.5rem, 5.5vw, 3rem);
        margin-bottom: 25px;
    }
    
    .pricing-section .section-description {
        font-size: clamp(1.1rem, 3vw, 1.2rem);
        margin-bottom: 50px;
        line-height: 1.7;
        max-width: 100%;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 60px;
        padding: 0 20px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        align-items: stretch;
    }
    
    .pricing-card {
        padding: 30px 20px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        height: fit-content;
        display: flex;
        flex-direction: column;
    }
    
    .pricing-card:active {
        transform: scale(0.98);
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
        box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.25);
        order: -1;
    }
    
    .featured-badge {
        font-size: clamp(10px, 2vw, 12px);
        padding: 6px 12px;
        border-radius: 16px;
        top: -12px;
    }
    
    .package-name {
        font-size: clamp(20px, 4vw, 24px);
        margin-bottom: 12px;
    }
    
    .package-price {
        margin-bottom: 15px;
    }
    
    .price-amount {
        font-size: clamp(2.5rem, 6vw, 3rem);
    }
    
    .price-period {
        font-size: clamp(14px, 3vw, 16px);
    }
    
    .package-description {
        font-size: clamp(13px, 2.5vw, 15px);
        line-height: 1.6;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .features-title {
        font-size: clamp(16px, 3.5vw, 18px);
        margin-bottom: 12px;
    }
    
    .features-list li {
        font-size: clamp(12px, 2.5vw, 14px);
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .pricing-cta {
        margin-top: 20px;
        margin-top: auto;
    }
    
    .pricing-cta .cta-button {
        padding: 12px 24px;
        font-size: clamp(13px, 2.5vw, 15px);
        letter-spacing: 0.04em;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-section .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 20px;
    }
    
    .pricing-section .section-description {
        font-size: clamp(1rem, 3.5vw, 1.1rem);
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 50px;
        padding: 0 15px;
    }
    
    .pricing-card {
        padding: 35px 25px;
        border-radius: 18px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    }
    
    .pricing-card.featured {
        transform: scale(1.03);
        box-shadow: 0 15px 35px rgba(255, 255, 255, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .featured-badge {
        font-size: clamp(11px, 3vw, 13px);
        padding: 6px 14px;
        border-radius: 18px;
        top: -12px;
    }
    
    .package-name {
        font-size: clamp(22px, 5.5vw, 26px);
        margin-bottom: 12px;
    }
    
    .package-price {
        margin-bottom: 18px;
    }
    
    .price-amount {
        font-size: clamp(2.5rem, 9vw, 3.5rem);
    }
    
    .price-period {
        font-size: clamp(15px, 4vw, 17px);
    }
    
    .package-description {
        font-size: clamp(14px, 3.5vw, 15px);
        line-height: 1.6;
        margin-bottom: 22px;
    }
    
    .features-title {
        font-size: clamp(17px, 4.5vw, 19px);
        margin-bottom: 12px;
    }
    
    .features-list li {
        font-size: clamp(13px, 3vw, 14px);
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    .pricing-cta {
        margin-top: 22px;
    }
    
    .pricing-cta .cta-button {
        padding: 12px 24px;
        font-size: clamp(13px, 3.5vw, 15px);
        letter-spacing: 0.04em;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-section .section-title {
        font-size: clamp(1.8rem, 7vw, 2rem);
        margin-bottom: 15px;
    }
    
    .pricing-section .section-description {
        font-size: clamp(0.95rem, 4vw, 1rem);
        margin-bottom: 30px;
        line-height: 1.5;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .pricing-card {
        padding: 30px 20px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
        box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.15);
    }
    
    .featured-badge {
        font-size: clamp(10px, 3.5vw, 12px);
        padding: 5px 12px;
        border-radius: 16px;
        top: -10px;
    }
    
    .package-name {
        font-size: clamp(20px, 6vw, 24px);
        margin-bottom: 10px;
    }
    
    .package-price {
        margin-bottom: 15px;
    }
    
    .price-amount {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    
    .price-period {
        font-size: clamp(14px, 4.5vw, 16px);
    }
    
    .package-description {
        font-size: clamp(13px, 4vw, 14px);
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .features-title {
        font-size: clamp(16px, 5vw, 18px);
        margin-bottom: 10px;
    }
    
    .features-list li {
        font-size: clamp(12px, 3.5vw, 13px);
        margin-bottom: 6px;
        line-height: 1.4;
    }
    
    .pricing-cta {
        margin-top: 20px;
    }
    
    .pricing-cta .cta-button {
        padding: 10px 20px;
        font-size: clamp(12px, 4vw, 14px);
        letter-spacing: 0.03em;
    }
}

@media (max-width: 320px) {
    .pricing-section {
        padding: 50px 0;
    }
    
    .pricing-section .section-title {
        font-size: clamp(1.6rem, 8vw, 1.8rem);
        margin-bottom: 12px;
    }
    
    .pricing-section .section-description {
        font-size: clamp(0.9rem, 4.5vw, 0.95rem);
        margin-bottom: 25px;
        line-height: 1.4;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
        margin-top: 30px;
        padding: 0 8px;
    }
    
    .pricing-card {
        padding: 25px 15px;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    }
    
    .pricing-card.featured {
        transform: scale(1.01);
        box-shadow: 0 10px 25px rgba(255, 255, 255, 0.08);
        border: 2px solid rgba(255, 255, 255, 0.12);
    }
    
    .featured-badge {
        font-size: clamp(9px, 4vw, 11px);
        padding: 4px 10px;
        border-radius: 14px;
        top: -8px;
    }
    
    .package-name {
        font-size: clamp(18px, 6.5vw, 22px);
        margin-bottom: 8px;
    }
    
    .package-price {
        margin-bottom: 12px;
    }
    
    .price-amount {
        font-size: clamp(1.8rem, 11vw, 2.5rem);
    }
    
    .price-period {
        font-size: clamp(13px, 5vw, 15px);
    }
    
    .package-description {
        font-size: clamp(12px, 4.5vw, 13px);
        line-height: 1.4;
        margin-bottom: 18px;
    }
    
    .features-title {
        font-size: clamp(15px, 5.5vw, 17px);
        margin-bottom: 8px;
    }
    
    .features-list li {
        font-size: clamp(11px, 4vw, 12px);
        margin-bottom: 5px;
        line-height: 1.3;
    }
    
    .pricing-cta {
        margin-top: 18px;
    }
    
    .pricing-cta .cta-button {
        padding: 8px 18px;
        font-size: clamp(11px, 4.5vw, 13px);
        letter-spacing: 0.02em;
    }
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
    z-index: -1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 30px 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    margin-top: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.package-header {
    text-align: center;
    margin-bottom: 40px;
}

.package-name {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.package-price {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    color: white;
    display: block;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1;
    display: flex;
    align-items: center;
}

.package-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.package-features {
    margin-bottom: 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.features-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.features-list li i {
    color: #00ff88;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 14px;
    flex-shrink: 0;
}

.package-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.package-cta .cta-button {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    display: inline-block;
    width: 100%;
    max-width: 280px;
}

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

.package-cta .cta-button:hover::before {
    left: 100%;
}

.package-cta .cta-button:hover {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.4);
    letter-spacing: 1.2px;
}

.package-cta .cta-button:active {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.pricing-faq-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.pricing-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
    z-index: -1;
}

.pricing-cta-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
}

.pricing-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
    z-index: -1;
}

/* Mobile Responsive for Pricing */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 100px 0 60px;
    }
    
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-faq-section {
        padding: 80px 0;
    }
    
    .pricing-cta-section {
        padding: 80px 0;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 50px;
        padding: 0 20px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .featured-badge {
        top: -15px;
        padding: 8px 20px;
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .package-name {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .package-price {
        padding: 15px;
        gap: 6px;
    }
    
    .price-period {
        font-size: 14px;
        padding: 3px 10px;
    }
    
    .features-title {
        font-size: 16px;
    }
    
    .features-list li {
        font-size: 14px;
    }
    
    .package-cta {
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .package-cta .cta-button {
        padding: 14px 28px;
        font-size: 13px;
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 80px 0 40px;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-faq-section {
        padding: 60px 0;
    }
    
    .pricing-cta-section {
        padding: 60px 0;
    }
    
    .pricing-grid {
        gap: 25px;
        padding: 0 15px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .package-name {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .package-price {
        padding: 12px;
        gap: 4px;
    }
    
    .price-period {
        font-size: 12px;
        padding: 2px 8px;
        letter-spacing: 0.8px;
    }
    
    .package-description {
        font-size: 14px;
    }
    
    .features-list li {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .package-cta {
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .package-cta .cta-button {
        padding: 12px 24px;
        font-size: 12px;
        max-width: 240px;
    }
    
    .featured-badge {
        top: -12px;
        padding: 6px 16px;
        font-size: 9px;
        letter-spacing: 0.8px;
        border-radius: 20px;
    }
}

/* ========================================
   ADMIN DASHBOARD STYLES
   ======================================== */

.admin-container {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.99) 100%);
    padding-top: 100px;
    position: relative;
}

/* Admin Login Section */
.admin-login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    background: #000000;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.admin-login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.admin-login-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
    pointer-events: none;
}

/* Admin Login Form */
.admin-login-form {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-login-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 24px;
    opacity: 0.5;
    z-index: -1;
}

.admin-form-group {
    margin-bottom: 28px;
    text-align: left;
    position: relative;
}

.admin-form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.admin-form-group input {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    position: relative;
}

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

.admin-form-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 0 0 4px rgba(255, 255, 255, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.admin-form-group input:invalid {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Admin Profile */
.admin-profile {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.admin-profile:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.admin-profile-info h4 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.admin-profile-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 2px 0;
    position: relative;
    z-index: 2;
}

.admin-role {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.admin-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.admin-profile-avatar:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.admin-profile-avatar i {
    font-size: 20px;
    color: #ffffff;
}

.admin-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.admin-login-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.admin-login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.admin-login-header {
    margin-bottom: 30px;
}

.admin-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.admin-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
}

.admin-title::after {
    display: none;
}

.admin-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.admin-login-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.admin-login-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px 40px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.admin-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.admin-login-btn:active {
    transform: translateY(0);
}

.admin-login-info {
    text-align: center;
}

.admin-login-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Admin Dashboard Section */
.admin-dashboard-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: #000000;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.admin-dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.admin-dashboard-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
    pointer-events: none;
}

.admin-dashboard-header {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.admin-dashboard-header:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.admin-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.admin-header-left {
    flex: 1;
}

.admin-header-right {
    display: flex;
    align-items: center;
}

.admin-dashboard-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-dashboard-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Mobile Responsive for Header */
@media (max-width: 768px) {
    .admin-dashboard-header {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .admin-header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .admin-dashboard-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }
    
    .admin-dashboard-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .admin-dashboard-header {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .admin-header-container {
        gap: 15px;
    }
    
    .admin-dashboard-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .admin-dashboard-subtitle {
        font-size: 0.9rem;
    }
}

/* Animation Classes */

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}



.admin-action-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.admin-action-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.admin-action-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.admin-action-header i {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
}

.admin-action-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
}

.admin-action-btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 14px 24px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.admin-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.admin-action-btn:hover::before {
    opacity: 1;
}

.admin-action-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 30px rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Admin Recent Activity */
.admin-recent-activity {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.admin-recent-activity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.admin-recent-activity:hover::before {
    opacity: 1;
}

.admin-recent-activity:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.admin-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 25px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.admin-activity-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.admin-activity-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.admin-activity-item:hover::before {
    opacity: 1;
}

.admin-activity-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

.admin-activity-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.admin-activity-icon i {
    font-size: 16px;
    color: #ffffff;
}

.admin-activity-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.admin-activity-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 4px 0;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.admin-activity-time {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

/* Hide header and footer on admin login */
.admin-login-section ~ .navbar,
.admin-login-section ~ .footer,
.admin-login-section ~ nav.navbar,
.admin-login-section ~ footer.footer {
    display: none !important;
}

/* Hide header and footer on admin page when login section is visible */
.admin-container .navbar,
.admin-container .footer {
    display: none !important;
}

/* Alternative approach - hide when login section is visible */
body:has(.admin-login-section:not([style*="display: none"])) .navbar,
body:has(.admin-login-section:not([style*="display: none"])) .footer {
    display: none !important;
}

/* Direct approach for admin page */
body:has(.admin-container) .navbar,
body:has(.admin-container) .footer {
    display: none !important;
}

/* Most reliable approach - target admin page specifically */
.admin-page .navbar,
.admin-page .footer,
.admin-page .page-loader,
.admin-page .grid-pattern {
    display: none !important;
}

/* Additional comprehensive hiding for admin page */
body.admin-page nav,
body.admin-page footer,
body.admin-page .navbar,
body.admin-page .footer,
body.admin-page .page-loader,
body.admin-page .grid-pattern {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Responsive admin dashboard */
@media (max-width: 1024px) {
    .admin-dashboard-section {
        padding: 40px 25px;
        gap: 30px;
    }
    
    .admin-header {
        padding: 40px;
    }
    
    .admin-dashboard-title {
        font-size: 32px;
        letter-spacing: 2.5px;
    }
    
    .admin-dashboard-subtitle {
        font-size: 16px;
    }
    
    .admin-profile {
        padding: 25px;
        gap: 20px;
    }
    
    .admin-profile-info h4 {
        font-size: 18px;
    }
    
    .admin-profile-avatar {
        width: 70px;
        height: 70px;
    }
    
    .admin-logout-btn {
        padding: 14px 24px;
        font-size: 13px;
    }
}

/* Responsive admin login section */
@media (max-width: 768px) {
    .admin-dashboard-section {
        padding: 25px 12px;
        gap: 20px;
        min-height: 100vh;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
        border-radius: 20px;
        margin-bottom: 0;
    }
    
    .admin-header-content {
        gap: 15px;
        width: 100%;
    }
    
    .admin-dashboard-title {
        font-size: 26px;
        letter-spacing: 1.5px;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .admin-dashboard-subtitle {
        font-size: 15px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .admin-profile {
        padding: 20px;
        gap: 15px;
        border-radius: 16px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .admin-profile-info {
        flex: 1;
        text-align: center;
    }
    
    .admin-profile-info h4 {
        font-size: 17px;
        margin-bottom: 4px;
    }
    
    .admin-profile-info p {
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .admin-profile-avatar {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .admin-logout-btn {
        padding: 14px 20px;
        font-size: 12px;
        letter-spacing: 0.5px;
        width: 100%;
        justify-content: center;
        border-radius: 12px;
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .admin-header-actions {
        width: 100%;
    }
    
    .admin-login-section {
        padding: 5px;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
    
    /* Mobile-specific enhancements */
    .admin-header::before {
        display: none;
    }
    
    .admin-profile::before {
        display: none;
    }
    
    .admin-profile-avatar:hover {
        transform: none;
    }
    
    .admin-header:hover {
        transform: none;
    }
    
    .admin-login-card {
        padding: 20px 15px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    .admin-title {
        font-size: 18px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }
    
    .admin-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .admin-logo {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .admin-login-header {
        margin-bottom: 15px;
    }
    
    .admin-form-group {
        margin-bottom: 15px;
    }
    
    .admin-form-group label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .admin-form-group input {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .admin-login-btn {
        padding: 14px 25px;
        font-size: 13px;
        margin-top: 10px;
    }
    
    .admin-login-info p {
        font-size: 11px;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .admin-dashboard-section {
        padding: 20px 8px;
        gap: 15px;
    }
    
    .admin-header {
        padding: 20px 15px;
        gap: 15px;
        border-radius: 16px;
    }
    
    .admin-header-content {
        gap: 12px;
    }
    
    .admin-dashboard-title {
        font-size: 22px;
        letter-spacing: 1px;
        margin-bottom: 3px;
    }
    
    .admin-dashboard-subtitle {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .admin-profile {
        padding: 16px;
        gap: 12px;
        border-radius: 14px;
    }
    
    .admin-profile-info h4 {
        font-size: 15px;
        margin-bottom: 3px;
    }
    
    .admin-profile-info p {
        font-size: 12px;
        margin-bottom: 1px;
    }
    
    .admin-profile-avatar {
        width: 50px;
        height: 50px;
    }
    
    .admin-logout-btn {
        padding: 12px 16px;
        font-size: 11px;
        letter-spacing: 0.3px;
        border-radius: 10px;
        min-height: 40px;
        touch-action: manipulation;
    }
    
    .admin-login-section {
        padding: 3px;
    }
    
    .admin-login-card {
        padding: 15px 12px;
    }
    
    .admin-title {
        font-size: 16px;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }
    
    .admin-subtitle {
        font-size: 11px;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .admin-logo {
        width: 35px;
        height: 35px;
        margin-bottom: 6px;
    }
    
    .admin-login-header {
        margin-bottom: 12px;
    }
    
    .admin-form-group {
        margin-bottom: 12px;
    }
    
    .admin-form-group label {
        font-size: 10px;
        margin-bottom: 4px;
    }
    
    .admin-form-group input {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .admin-login-btn {
        padding: 12px 20px;
        font-size: 12px;
        margin-top: 8px;
    }
    
    .admin-login-info p {
        font-size: 10px;
        margin-top: 8px;
    }
}

/* Admin Notifications */
.admin-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    backdrop-filter: blur(25px);
    border-radius: 16px;
    padding: 20px 24px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    z-index: 10000;
    animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: top right;
}

.admin-error-notification {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.95) 0%, rgba(220, 53, 69, 0.85) 100%);
    border: 1px solid rgba(220, 53, 69, 0.4);
    box-shadow: 0 20px 40px rgba(220, 53, 69, 0.3);
}

.admin-success-notification {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.95) 0%, rgba(40, 167, 69, 0.85) 100%);
    border: 1px solid rgba(40, 167, 69, 0.4);
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.3);
}

.admin-notification-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-notification-content i {
    font-size: 18px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.admin-notification-content span {
    flex: 1;
    line-height: 1.5;
}

.admin-notification-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    margin-left: 16px;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.admin-notification-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Animations */

/* Responsive Design for Admin */
@media (max-width: 768px) {
    .admin-login-section {
        padding: 20px 15px;
        min-height: 100vh;
    }
    
    .admin-login-form {
        max-width: 100%;
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .admin-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .admin-form-group input {
        padding: 16px 18px;
        font-size: 16px;
    }
    
    .admin-login-btn {
        padding: 18px 32px;
        font-size: 15px;
    }
    
    .admin-notification {
        top: 20px;
        right: 15px;
        left: 15px;
        max-width: none;
        border-radius: 12px;
        padding: 16px 20px;
    }
    
    .admin-dashboard-title {
        font-size: 24px;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .admin-actions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .admin-stat-card {
        padding: 20px;
    }
    
    .admin-action-card {
        padding: 20px;
    }
    
    .admin-recent-activity {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .admin-login-card {
        padding: 30px 15px;
    }
    
    .admin-title {
        font-size: 20px;
    }
    
    .admin-subtitle {
        font-size: 14px;
    }
    
    .admin-login-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .admin-dashboard-title {
        font-size: 20px;
    }
    
    .admin-stat-number {
        font-size: 24px;
    }
    
    .admin-action-title {
        font-size: 18px;
    }
    
    .admin-section-title {
        font-size: 20px;
    }
}

/* Thank You Payment Page Styles */
.thank-you-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.thank-you-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    z-index: 10;
    position: relative;
    padding: 0 20px;
}

.success-icon {
    margin-bottom: clamp(30px, 5vw, 40px);
    animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-icon i {
    font-size: clamp(60px, 12vw, 80px);
    color: #00ff88;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



.thank-you-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: clamp(2px, 1vw, 4px);
    text-transform: uppercase;
    line-height: 1.1;
    animation: titleSlideIn 1s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
}



.thank-you-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    letter-spacing: clamp(1px, 0.5vw, 2px);
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    opacity: 0;
}

.thank-you-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: min(600px, 90vw);
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 1s both;
    opacity: 0;
}

.payment-details {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 3vw, 30px);
    margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.payment-badge {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 10px);
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 20px);
    border-radius: 0;
    transition: all 0.3s ease;
    min-width: fit-content;
}

.payment-badge:hover {
    background: rgba(0, 255, 136, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.payment-badge i {
    font-size: clamp(16px, 2.5vw, 18px);
    color: #00ff88;
}

.payment-badge span {
    font-family: 'Inter', sans-serif;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.2vw, 1px);
    white-space: nowrap;
}

.next-steps {
    margin-bottom: 60px;
}

.next-steps-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.step-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #00ccff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step-item:hover::before {
    transform: scaleX(1);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-icon {
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 40px;
    color: #00ff88;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.thank-you-actions .cta-button {
    min-width: 200px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 0;
}

.contact-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.contact-link:hover {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.contact-link i {
    font-size: 18px;
    color: #00ff88;
}

.welcome-message {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 255, 0.1) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    position: relative;
    overflow: hidden;
}

.welcome-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #00ccff);
}

.welcome-icon {
    margin-bottom: 15px;
}

.welcome-icon i {
    font-size: 30px;
    color: #00ff88;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
    animation: starTwinkle 2s ease-in-out infinite;
}

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

.welcome-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
    .thank-you-hero {
        padding: 80px 15px 40px;
    }
    
    .thank-you-container {
        padding: 0 10px;
    }
    
    .payment-details {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .thank-you-hero {
        padding: 60px 10px 30px;
    }
    
    .thank-you-container {
        padding: 0 5px;
    }
    
    .payment-details {
        margin-bottom: 30px;
    }
}