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

/* Dazzling Scroll Indicator */
.dazzle-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc143c, #dc143c, #dc143c);
    z-index: 2000;
    transition: width 0.3s ease;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    cursor: none;
}

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

/* Desktop container */
.container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
}

/* Emergency mobile fixes - override everything */
@media (max-width: 768px) {
    * {
        box-sizing: border-box !important;
    }
    
    body {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }
    
    html {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 10px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 5px;
        width: 100%;
        margin: 0;
    }
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #ffcccc, #dc143c, #ffffff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 4s ease infinite;
}

@keyframes textGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #dc143c;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.2);
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #dc143c;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
}

.cursor-dot.hover {
    transform: scale(3);
    background: #dc143c;
}

/* Particle Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: linear-gradient(45deg, #dc143c, #dc143c);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1.5);
    }
}

/* Highlight */
.highlight {
    background: linear-gradient(135deg, #dc143c 0%, #dc143c 25%, #dc143c 50%, #8b0000 75%, #dc143c 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #dc143c 0%, #dc143c 30%, #dc143c 60%, #8b0000 100%);
    background-size: 400% 400%;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
    animation: buttonGlow 3s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.8);
    animation: buttonGlow 0.5s ease;
}

.btn-secondary {
    background: transparent;
    color: #dc143c;
    border: 2px solid #dc143c;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.6);
}

.btn-secondary:hover::before {
    left: 0;
}

@keyframes buttonGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    animation: testimonialGlow 20s ease-in-out infinite;
}

@keyframes testimonialGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.testimonial-card {
    background: linear-gradient(145deg, #2c0808 0%, #1a0000 100%);
    border-radius: 20px;
    padding: 30px 20px;
    border: 2px solid #dc143c;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.2);
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(220, 20, 60, 0.4);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(220, 20, 60, 0.2);
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffcccc;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

.author-avatar i {
    font-size: 1.5rem;
    color: white;
}

.author-info {
    flex: 1;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-role {
    font-size: 0.9rem;
    color: #ffcccc;
    margin-bottom: 10px;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Badges */
.badge {
    background-color: #dc143c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 0, 0, 0.9);
    backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 
        0 2px 30px rgba(220, 20, 60, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

.navbar.scrolled {
    background: rgba(5, 0, 0, 0.95);
    box-shadow: 
        0 4px 40px rgba(220, 20, 60, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 10px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 50px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.nav-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc143c, #dc143c);
    border-radius: 1px;
    transition: width 0.3s ease;
}

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

.nav-logo i {
    font-size: 2rem;
    margin-right: 10px;
    background: linear-gradient(135deg, #dc143c 0%, #dc143c 50%, #dc143c 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGlow 3s ease infinite;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.4));
}

@keyframes logoGlow {
    0%, 100% { background-position: 0% 50%; filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.4)); }
    50% { background-position: 100% 50%; filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.8)); }
}

@media (max-width: 768px) {
    .nav-logo {
        font-size: 1.2rem;
    }
}

.nav-menu {
    display: flex !important;
    list-style: none !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    overflow: visible !important;
}

@media (max-width: 768px) {
    .nav-menu {
        width: 100% !important;
        justify-content: center !important;
        gap: 20px !important;
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        background: rgba(10, 0, 0, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        padding: 20px 0 !important;
        border-top: 1px solid rgba(220, 20, 60, 0.2) !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    }
    
    .nav-menu.active {
        transform: translateX(0) !important;
    }
}




/* Mobile: always show menu on mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: flex !important;
        transform: translateX(-100%) !important;
    }

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc143c, #dc143c);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.6);
}

.nav-link:hover {
    color: #dc143c;
    background: rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.hamburger {
    display: flex !important;
    flex-direction: column !important;
    cursor: pointer !important;
    z-index: 1001 !important;
    position: fixed !important;
    right: 10px !important;
    top: 10px !important;
    padding: 8px;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.1);
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(220, 20, 60, 0.2);
    transform: scale(1.1);
}

.bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #dc143c, #dc143c);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.4);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.8);
}

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

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.8);
}


/* Hide hamburger on desktop, show on mobile */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
}
/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at center, #000000 0%, #1a0000 30%, #2c0808 60%, #8b0000 80%, #000000 100%);
    background-size: 400% 400%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000, #1a0000, #2c0808, #8b0000, #dc143c, #8b0000, #2c0808, #1a0000, #000000);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Background Animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 0, 0, 0.05) 0%, transparent 50%);
    animation: heroBackgroundMove 20s ease-in-out infinite;
}

/* Floating particles */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, #ffffff, transparent),
        radial-gradient(1px 1px at 50px 160px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 40px, #ffffff, transparent),
        radial-gradient(2px 2px at 80px 10px, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.3;
    animation: float 15s linear infinite;
    z-index: -1;
}

@keyframes heroBackgroundMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, -50px) scale(1.1); }
    66% { transform: translate(50px, -30px) scale(0.9); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 100%;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-visual {
    position: relative;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

#heroChart {
    max-width: 100%;
    height: 400px;
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.3));
}

@media (max-width: 768px) {
    #heroChart {
        height: 300px;
    }
}

.hero-buttons {
    margin-top: 30px;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

/* Enhanced Button Styles */
.btn {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #dc143c 0%, #dc143c 50%, #dc143c 100%);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
    animation: buttonGradient 3s ease infinite;
}

@keyframes buttonGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(220, 20, 60, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #dc143c;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #dc143c 0%, #dc143c 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s;
}

.btn-secondary:hover::after {
    left: 100%;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: radial-gradient(ellipse at center, #1a0000 0%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    animation: serviceGlow 15s ease-in-out infinite;
}

@keyframes serviceGlow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(145deg, #2c0808 0%, #1a0000 100%);
    padding: 30px 20px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #dc143c;
    background-clip: padding-box;
    color: white;
    position: relative;
    transform-style: preserve-3d;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
    animation: serviceCardFloat 6s ease-in-out infinite;
}

.service-card:nth-child(1) {
    animation-delay: 0s;
}

.service-card:nth-child(2) {
    animation-delay: 2s;
}

.service-card:nth-child(3) {
    animation-delay: 4s;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: linear-gradient(135deg, #dc143c 0%, #dc143c 50%, #dc143c 100%);
    border: 2px solid transparent;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
    transform: translateZ(-10px) scale(1.02);
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 30px 60px rgba(220, 20, 60, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.4);
}

.service-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #dc143c 0%, #dc143c 50%, #dc143c 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: iconGlow 3s ease infinite;
    transition: all 0.4s ease;
}

@keyframes iconGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.service-card:hover .service-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.6));
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    transition: all 0.4s ease;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc143c, #dc143c, #dc143c);
    transition: width 0.4s ease;
}

.service-card:hover h3::after {
    width: 100%;
}

.service-card p {
    color: #ffcccc;
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.service-card:hover p {
    opacity: 1;
    color: #ffffff;
}

.service-link {
    color: #dc143c;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Badge Enhancement */
.badge {
    background: linear-gradient(135deg, #dc143c 0%, #dc143c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
    animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #0d0000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
    animation: featuresBackgroundShift 20s ease-in-out infinite;
}

@keyframes featuresBackgroundShift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(100px, -50px); }
    66% { transform: translate(-50px, 50px); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(145deg, #2c0808 0%, #1a0000 100%);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 30px rgba(220, 20, 60, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid #dc143c;
    background-clip: padding-box;
    color: white;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateX(0deg);
    animation: featurePulse 4s ease-in-out infinite;
}

.feature-item:nth-child(1) {
    animation-delay: 0s;
}

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

.feature-item:nth-child(3) {
    animation-delay: 1s;
}

.feature-item:nth-child(4) {
    animation-delay: 1.5s;
}

.feature-item:nth-child(5) {
    animation-delay: 2s;
}

.feature-item:nth-child(6) {
    animation-delay: 2.5s;
}

@keyframes featurePulse {
    0%, 100% { 
        transform: perspective(1000px) rotateX(0deg) scale(1);
        box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
    }
    50% { 
        transform: perspective(1000px) rotateX(5deg) scale(1.02);
        box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
    }
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #dc143c 0%, #dc143c 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.feature-item:hover::before {
    opacity: 0.1;
}

.feature-item:hover {
    transform: perspective(1000px) rotateX(-5deg) translateZ(10px) translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(220, 20, 60, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(220, 20, 60, 0.3);
}

.feature-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, #dc143c 0%, #dc143c 50%, #dc143c 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.3));
    position: relative;
}

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

.feature-item:hover i {
    animation: iconFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(220, 20, 60, 0.6));
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    transition: all 0.5s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-item h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc143c, #dc143c, #dc143c);
    border-radius: 2px;
    transition: all 0.5s ease;
}

.feature-item:hover h3::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.8);
}

.feature-item p {
    color: #ffcccc;
    line-height: 1.7;
    opacity: 0.9;
    transition: all 0.5s ease;
    position: relative;
}

.feature-item:hover p {
    opacity: 1;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #8b0000 0%, #2c0808 50%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    animation: statsPulse 10s ease-in-out infinite;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    position: relative;
    padding: 30px 20px;
    background: linear-gradient(145deg, rgba(139, 0, 0, 0.2) 0%, rgba(44, 8, 8, 0.2) 100%);
    border-radius: 20px;
    border: 1px solid rgba(220, 20, 60, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

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

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(220, 20, 60, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(220, 20, 60, 0.5);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #dc143c 50%, #dc143c 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: statNumberGlow 3s ease infinite;
    position: relative;
}

@keyframes statNumberGlow {
    0%, 100% { background-position: 0% 50%; filter: brightness(1); }
    50% { background-position: 100% 50%; filter: brightness(1.2); }
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffcccc;
    position: relative;
    transition: all 0.3s ease;
}

.stat-item:hover p {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Add animated underline for stat numbers */
.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc143c, #dc143c);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.stat-item:hover .stat-number::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.6);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    align-items: center !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 10px !important;
    text-align: center !important;
}

.about-text h2 {
    text-align: left;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    margin-bottom: 20px;
    color: #ffcccc;
    line-height: 1.6;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.highlight-item i {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.pricing-card {
    background: linear-gradient(135deg, #2c0808 0%, #1a0000 100%);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #dc143c;
    transition: all 0.3s ease;
    position: relative;
    color: white;
}

.pricing-card.featured {
    border-color: #dc143c;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: #ffcccc;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-card li {
    padding: 8px 0;
    color: #ffcccc;
    border-bottom: 1px solid #8b0000;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-card a {
    display: block;
    margin-top: 20px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
    color: white;
}

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

.contact-info {
    padding: 30px;
    background: linear-gradient(135deg, #2c0808 0%, #1a0000 100%);
    border-radius: 20px;
    border: 2px solid #dc143c;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
    border: 1px solid #8b0000;
}

.contact-item i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 20px;
    width: 30px;
}

.contact-item h4 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.contact-item p {
    color: #ffcccc;
    margin: 0;
}

.contact-form {
    padding: 30px;
    background: linear-gradient(135deg, #2c0808 0%, #1a0000 100%);
    border-radius: 20px;
    border: 2px solid #dc143c;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #8b0000;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #000000;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc143c;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
    color: #ffcccc;
    padding: 50px 0 30px;
    border-top: 3px solid #dc143c;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 1.5rem;
    margin-right: 10px;
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ffcccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dc143c;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c0808 0%, #1a0000 100%);
    color: #dc143c;
    border: 2px solid #8b0000;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #dc143c 0%, #8b0000 100%);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Universal mobile reset */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
}

/* EMERGENCY MOBILE FIXES - FORCE FIT */
@media (max-width: 768px) {
    body, html {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        font-size: 14px !important;
    }
    
    * {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    }


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

    .about-text h2 {
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }
}

/* Testimonials Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 15px;
        left: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.8rem;
    }
}

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

    .nav-container {
        padding: 0 10px;
        height: 60px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .about-highlights {
        gap: 10px;
        margin-top: 15px;
    }

    .highlight-item i {
        font-size: 1.2rem;
    }

    .highlight-item span {
        font-size: 12px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 10px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-menu li {
        padding: 0 8px;
        font-size: 14px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .feature-item {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form validation styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #27ae60;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

.success-message {
    color: #27ae60;
    font-size: 12px;
    margin-top: 5px;
}

/* Success notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1001;
}

.notification.show {
    transform: translateX(0);
}

/* EMERGENCY MOBILE OVERRIDE */
@media (max-width: 768px) {
    body, html {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }
    
    * {
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 5px !important;
    }
    
    .about-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 5px !important;
        gap: 20px !important;
    }
    
    .nav-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 5px !important;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .hero-buttons,
    .social-links,
    .contact-form {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}

/* Enhanced visual effects - Dazzling Animations */
@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Glowing text effects */
.glow-text {
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.8),
                 0 0 20px rgba(220, 20, 60, 0.6),
                 0 0 30px rgba(220, 20, 60, 0.4);
}

/* Enhanced hover effects */
.hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
}

/* Additional dazzling effects */
.pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(220, 20, 60, 0.6);
    }
}
/* Mobile nav-link specific styles */
@media (max-width: 768px) {
    .nav-link {
        display: block !important;
        margin: 15px 0 !important; /* Increased margin for better spacing */
        padding: 12px 24px !important; /* Larger touch target */
        transition: none !important; /* No transitions on mobile */
        background: rgba(255, 255, 255, 0.1) !important;
        min-height: 44px !important; /* Accessibility standard */
        line-height: 1.4 !important;
        border-radius: 8px !important;
        text-decoration: none !important;
    }
    
    /* Remove hover effects on mobile */
    .nav-link:hover, .nav-link:focus {
        background: rgba(255, 255, 255, 0.15) !important;
        transform: none !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    }
}

/* Desktop nav-link specific styles */
@media (min-width: 769px) {
    .nav-link {
        display: inline-block !important;
        margin: 0 !important; /* Remove margin on desktop */
        padding: 8px 16px !important;
        transition: all 0.3s ease !important;
        background: transparent !important;
    }
    
    .nav-link:hover, .nav-link:focus {
        background: rgba(220, 20, 60, 0.3) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4) !important;
    }
}

/* Mobile nav-link specific styles */
@media (max-width: 768px) {
    .nav-link {
        display: block !important;
        margin: 15px 0 !important; /* Increased margin for better spacing */
        padding: 12px 24px !important; /* Larger touch target */
        transition: none !important; /* No transitions on mobile */
        background: rgba(255, 255, 255, 0.1) !important;
        min-height: 44px !important; /* Accessibility standard */
        line-height: 1.4 !important;
        border-radius: 8px !important;
        text-decoration: none !important;
    }
    
    /* Remove hover effects on mobile */
    .nav-link:hover, .nav-link:focus {
        background: rgba(255, 255, 255, 0.15) !important;
        transform: none !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    }
}


