/* ============================================
   NEVER BUSY CALL QUEUE - CLOUD 10
   Ultra-Modern Tech Design
   ============================================ */

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

:root {
    /* Cloud 10 Brand Colors */
    --primary: #0ea5e9;
    --primary-dark: #0369a1;
    --primary-light: #38bdf8;
    --accent: #00d4aa;
    --accent-glow: rgba(0, 212, 170, 0.5);
    --neon-blue: #00f5ff;
    --neon-purple: #a855f7;
    --orange: #ff6b35;
    
    /* Dark Theme */
    --bg-dark: #0a0f1c;
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.1);
    
    /* Text */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Effects */
    --glow-primary: 0 0 40px rgba(14, 165, 233, 0.3);
    --glow-accent: 0 0 40px rgba(0, 212, 170, 0.3);
    --glow-neon: 0 0 60px rgba(0, 245, 255, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Grid Pattern Overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.company-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-phone {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.top-phone:hover {
    background: var(--accent);
    color: var(--bg-dark);
    box-shadow: var(--glow-accent);
    transform: scale(1.05);
}

/* ============================================
   HEADER - Hero Section
   ============================================ */
.header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

/* Animated Gradient Orbs */
.header::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.header::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: float 10s ease-in-out infinite reverse;
}

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

.header-content {
    position: relative;
    z-index: 2;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.cloud10-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.5));
    animation: logoFloat 4s ease-in-out infinite, logoPulse 2s ease-in-out infinite;
}

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

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.5)); }
    50% { filter: drop-shadow(0 0 50px rgba(14, 165, 233, 0.8)); }
}

.logo-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1.1;
    animation: titleReveal 1s ease-out;
}

@keyframes titleReveal {
    from { 
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 10px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 40px;
    padding: 20px 50px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 1s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
}

.subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

/* Cloud Decorations - Enhanced */
.cloud-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    pointer-events: none;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    border-radius: 100px;
    filter: blur(2px);
}

.cloud::before,
.cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: inherit;
}

.cloud-1 {
    width: 300px;
    height: 60px;
    bottom: -30px;
    left: 5%;
    animation: cloudDrift 15s ease-in-out infinite;
}

.cloud-2 {
    width: 200px;
    height: 40px;
    bottom: -20px;
    left: 45%;
    animation: cloudDrift 12s ease-in-out infinite reverse;
}

.cloud-3 {
    width: 250px;
    height: 50px;
    bottom: -25px;
    right: 5%;
    animation: cloudDrift 18s ease-in-out infinite;
}

@keyframes cloudDrift {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(50px); opacity: 0.8; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 120px 20px;
    position: relative;
}

/* Hero Carousel */
.hero-carousel {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.03) 0%, transparent 100%);
}

.carousel-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-slide .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: var(--glow-accent);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.indicator:hover {
    background: rgba(14, 165, 233, 0.3);
}

.indicator.active {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-slide .section-title {
        font-size: 2rem;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 20px auto 0;
    border-radius: 2px;
    box-shadow: var(--glow-accent);
}

.hero-text {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-text strong {
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.section {
    padding: 100px 20px;
    position: relative;
}

.section-alt {
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.03) 0%, transparent 100%);
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.section-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-secondary);
    max-width: 1000px;
    margin: 40px auto 0;
    text-align: center;
}

/* Content with Image Layout */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.content-text {
    text-align: left;
}

.content-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-text .highlight-text {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.25rem;
}

.content-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--glow-primary);
}

.content-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(0, 212, 170, 0.2));
    z-index: 1;
    pointer-events: none;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.content-image:hover img {
    transform: scale(1.05);
}

.content-with-image.content-reversed {
    direction: rtl;
}

.content-with-image.content-reversed > * {
    direction: ltr;
}

@media (max-width: 768px) {
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-text {
        text-align: center;
    }
    
    .content-with-image.content-reversed {
        direction: ltr;
    }
}

/* ============================================
   FEATURES SECTION - Glassmorphism Cards
   ============================================ */
.features-section {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 60%);
    top: -400px;
    right: -400px;
    animation: float 12s ease-in-out infinite;
}

.features-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 60%);
    bottom: -300px;
    left: -300px;
    animation: float 15s ease-in-out infinite reverse;
}

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

.feature-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--neon-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: var(--glow-primary);
}

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

.feature-card:hover::after {
    opacity: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.feature-card h3::before {
    content: '';
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary);
}

.feature-card:nth-child(1) h3::after { content: ''; position: absolute; left: 13px; font-size: 1.5rem; }
.feature-card:nth-child(2) h3::after { content: ''; position: absolute; left: 13px; font-size: 1.5rem; }
.feature-card:nth-child(3) h3::after { content: ''; position: absolute; left: 13px; font-size: 1.5rem; }

.feature-card ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.feature-card li {
    padding: 14px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-secondary);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-fast);
}

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

.feature-card li:hover {
    color: var(--text-primary);
    padding-left: 40px;
}

.feature-card li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    transition: var(--transition-fast);
}

.feature-card li:hover::before {
    content: '';
    color: var(--accent);
}

/* ============================================
   RESTAURANTS SECTION
   ============================================ */
.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.restaurant-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.05rem;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.restaurant-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition-smooth);
}

.restaurant-link span {
    position: relative;
    z-index: 1;
}

.restaurant-link:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
}

.restaurant-link:hover::before {
    opacity: 1;
}

/* ============================================
   CTA SECTION - Neon Glow Effect
   ============================================ */
.cta-section {
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 107, 53, 0.05) 50%, var(--bg-dark) 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
    animation: pulse 4s ease-in-out infinite;
}

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

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--orange), #ff4757, var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.6)); }
}

.cta-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.cta-contact {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 30px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 24px 50px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bg-dark);
    background: linear-gradient(135deg, var(--orange), #ff4757);
    border: none;
    border-radius: 100px;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.4);
}

.phone-link::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: 0.5s;
}

.phone-link:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 107, 53, 0.6);
}

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

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-icon svg {
    width: 28px;
    height: 28px;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: var(--glow-primary);
}

.social-icon:hover svg {
    transform: scale(1.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 20px 40px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-glass);
}

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

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.4));
}

.footer-brand-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.footer-info {
    text-align: center;
}

.footer-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 8px;
}

.footer-tagline-small {
    font-size: 1rem;
    color: var(--text-muted);
}

.footer-driven {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-driven span {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wildix-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.wildix-link:hover {
    background: transparent;
    border-color: var(--primary);
    box-shadow: var(--glow-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 10px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-phone {
    font-size: 1rem !important;
    color: var(--text-secondary) !important;
}

.footer-phone a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-phone a:hover {
    color: var(--primary-light);
    text-shadow: 0 0 20px var(--accent-glow);
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.scroll-indicator a:hover {
    color: var(--accent);
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 20px;
    position: relative;
    transition: var(--transition-smooth);
}

.scroll-indicator a:hover .mouse {
    border-color: var(--accent);
}

.scroll-indicator .wheel {
    width: 4px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 30px; }
}

/* ============================================
   ANIMATIONS & REVEALS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }

/* ============================================
   PARTICLE CANVAS
   ============================================ */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .logo-text h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        justify-content: center;
        text-align: center;
    }
    
    .header {
        min-height: auto;
        padding: 80px 20px;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .cloud10-logo {
        width: 100px;
        height: 100px;
    }
    
    .logo-text h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 4px;
    }
    
    .subtitle {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-text,
    .section-text {
        font-size: 1.05rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurants-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .phone-link {
        font-size: 1.4rem;
        padding: 20px 35px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-driven {
        align-items: center;
        text-align: center;
    }
    
    .cloud-decoration {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .phone-link {
        font-size: 1.2rem;
        padding: 18px 28px;
    }
    
    .feature-card {
        padding: 30px 25px;
    }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--accent));
}

/* ============================================
   SELECTION STYLES
   ============================================ */
::selection {
    background: var(--primary);
    color: var(--text-primary);
}

::-moz-selection {
    background: var(--primary);
    color: var(--text-primary);
}
