/* ========================================
   CRYPTOVAULT - COMPLETE PLATFORM STYLES
   With Hero Background Slideshow & Notifications
======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0f0c29;
    --secondary-dark: #302b63;
    --tertiary-dark: #24243e;
    --accent-cyan: #00d4ff;
    --accent-purple: #a445ed;
    --accent-green: #26de81;
    --accent-red: #ff4757;
    --accent-orange: #ffa502;
    --text-white: #ffffff;
    --text-gray: #b8b8b8;
    --text-dark: #1a1a1a;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --card-bg: rgba(48, 43, 99, 0.3);
    --card-border: rgba(0, 212, 255, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   TICKER WRAPPER
======================================== */
.ticker-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(15, 12, 41, 0.95);
    border-bottom: 1px solid var(--card-border);
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-cyan);
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-cyan);
}

.login-btn {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    color: white !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-cyan);
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION WITH BACKGROUND SLIDESHOW
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 100px;
}

/* Hero Background Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Loading Spinner */
.hero-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 212, 255, 0.2);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.hero-loader.hidden {
    display: none;
}

/* Slideshow Indicators (Dots) */
.slideshow-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--accent-cyan);
    width: 40px;
    border-radius: 6px;
    border-color: var(--accent-cyan);
}

.indicator:hover {
    background: rgba(0, 212, 255, 0.6);
}

/* Animated Ripple Effect (Lower opacity to not interfere with slideshow) */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.animated-bg::before,
.animated-bg::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    animation: ripple 12s ease-in-out infinite;
}

.animated-bg::after {
    background: radial-gradient(circle, rgba(164, 69, 237, 0.05) 0%, transparent 50%);
    animation: ripple 15s ease-in-out infinite reverse;
    animation-delay: -7.5s;
}

@keyframes ripple {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(30%, -20%) scale(1.2);
        opacity: 0.6;
    }
    66% {
        transform: translate(-20%, 30%) scale(0.9);
        opacity: 0.7;
    }
}

/* Floating Coins */
.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    pointer-events: none;
}

.coin {
    position: absolute;
    font-size: 3rem;
    opacity: 0.12;
    color: var(--accent-cyan);
    animation: float 20s infinite ease-in-out;
}

.coin-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.coin-2 {
    top: 20%;
    right: 15%;
    animation-delay: -4s;
}

.coin-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -8s;
}

.coin-4 {
    bottom: 30%;
    right: 25%;
    animation-delay: -12s;
}

.coin-5 {
    top: 50%;
    left: 50%;
    animation-delay: -16s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, -80px) rotate(180deg);
    }
    75% {
        transform: translate(-40px, -40px) rotate(270deg);
    }
}

/* Dark Overlay for Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(15, 12, 41, 0.8) 100%);
    z-index: 3;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--accent-cyan);
}

.cta-button.secondary:hover {
    background: var(--accent-cyan);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat p {
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* ========================================
   SERVICES SECTION
======================================== */
.services-section {
    padding: 5rem 0;
    background: var(--secondary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.services-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.services-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    padding: 1rem 0;
}

.service-card {
    min-width: 350px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.service-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.service-image i {
    position: relative;
    z-index: 2;
}

.forex-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mining-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.copy-bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.ai-bg {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.staking-bg {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.portfolio-bg {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--accent-green);
}

.service-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent-cyan);
    color: white;
}

.slider-btn.prev {
    left: -25px;
}

.slider-btn.next {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active { 
    background: var(--accent-cyan);
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   GLOBAL ACCESS SECTION
======================================== */
.global-access-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.scroll-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0c29 0%, #0f0c29 100%);
    transition: background 0.6s ease;
    z-index: 1;
}

.scroll-gradient-bg.scrolled {
    background: linear-gradient(135deg, #0f0c29 0%, #00d4ff 100%);
}

.global-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.global-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.access-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.access-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.access-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.access-card i {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.access-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.world-map {
    text-align: center;
    margin-top: 3rem;
}

.world-map i {
    font-size: 5rem;
    color: var(--accent-cyan);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.map-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.map-stat h4 {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

/* ========================================
   PRICING SECTION
======================================== */
.pricing-section {
    padding: 5rem 0;
    background: var(--primary-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent-cyan);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-purple);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.featured-badge {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.amount {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--accent-cyan);
    margin: 0 0.3rem;
}

.period {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.plan-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-white);
}

.plan-features li.disabled {
    color: var(--text-gray);
    opacity: 0.5;
}

.plan-features i.fa-check {
    color: var(--accent-green);
}

.plan-features i.fa-times {
    color: var(--accent-red);
}

.plan-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.featured-button {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
}

/* ========================================
   WHY CHOOSE US & CTA SECTIONS
======================================== */
.why-choose-section {
    padding: 5rem 0;
    background: var(--secondary-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.cta-button-large {
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4);
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.6);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-cyan);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-cyan);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-gray);
}

/* ========================================
   LIVE NOTIFICATION POPUP SYSTEM
======================================== */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.live-notification {
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--notification-color, #00d4ff);
    border-left: 4px solid var(--notification-color, #00d4ff);
    border-radius: 12px;
    padding: 14px 16px;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(0, 212, 255, 0.2);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
    position: relative;
}

.live-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.live-notification.hide {
    transform: translateX(-120%);
    opacity: 0;
}

.notification-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(164, 69, 237, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid var(--notification-color, #00d4ff);
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-message {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 4px;
    word-wrap: break-word;
}

.notification-time {
    color: var(--notification-color, #00d4ff);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.live-notification:hover {
    transform: translateX(0) translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(0, 212, 255, 0.3);
}

@keyframes notificationPulse {
    0%, 100% {
        border-left-color: var(--notification-color, #00d4ff);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                    0 0 20px rgba(0, 212, 255, 0.2);
    }
    50% {
        border-left-color: rgba(0, 212, 255, 0.6);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5),
                    0 0 30px rgba(0, 212, 255, 0.4);
    }
}

.live-notification.show {
    animation: notificationPulse 2s ease-in-out infinite;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 140px;
        flex-direction: column;
        background: rgba(15, 12, 41, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-slider {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .slider-btn {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .slideshow-indicators {
        bottom: 20px;
    }

    /* Notifications on mobile */
    .notification-container {
        left: 50%;
        transform: translateX(-50%);
        bottom: 80px;
        width: calc(100% - 40px);
        max-width: 380px;
    }
    
    .live-notification {
        min-width: 100%;
        max-width: 100%;
        transform: translateY(120%);
    }
    
    .live-notification.show {
        transform: translateY(0);
    }
    
    .live-notification.hide {
        transform: translateY(120%);
    }
    
    .notification-icon {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
    
    .notification-message {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .notification-container {
        bottom: 60px;
    }
    
    .live-notification {
        padding: 12px 14px;
    }
    
    .notification-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    
    .notification-message {
        font-size: 0.85rem;
    }
}

