/* =========================================
   CSS Variables & Global Styles - YPCE Dark Theme
   ========================================= */
:root {
    /* Premium Dark Mode Color Palette */
    --bg-dark-primary: #030712;    /* Obsidian black */
    --bg-dark-secondary: #0b1329;  /* Deep space navy */
    --bg-dark-tertiary: #111827;   /* Slate slate-900 */
    --bg-glass: rgba(17, 24, 39, 0.7); /* Translucent plate */
    
    --primary-color: #3b82f6;      /* Electric Tech Blue */
    --primary-light: #60a5fa;      /* Vibrant Sky Blue */
    --secondary-color: #06b6d4;    /* Glowing Cyan */
    --accent-color: #22d3ee;       /* Soft Cyan Accent */
    
    --text-color: #e5e7eb;         /* Cool light gray */
    --text-light: #9ca3af;         /* Soft muted gray */
    --text-muted: #6b7280;         /* Darker gray */
    
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(6, 182, 212, 0.3);
    
    --font-family: 'Rubik', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Advanced shadows & glows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.7);
    --glow-cyan: 0 0 25px rgba(6, 182, 212, 0.15);
    --glow-blue: 0 0 25px rgba(59, 130, 246, 0.15);
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.65;
    background-color: var(--bg-dark-primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-dark-secondary);
}

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.25;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 30%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.section-title p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   Buttons
   ========================================= */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5), var(--glow-cyan);
    filter: brightness(1.1);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--bg-dark-primary);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary.small {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* =========================================
   Header & Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(3, 7, 18, 0.7); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.navbar.shrunk {
    height: 80px;
    background: rgba(3, 7, 18, 0.9);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(6, 182, 212, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
    order: 1;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.2));
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 6px 20px rgba(6, 182, 212, 0.45));
}

.navbar.shrunk .logo img {
    height: 55px;
}

/* High-tech Contact Button in Navbar */
.btn-contact {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    text-align: center;
    cursor: pointer;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
    transition: var(--transition);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(6, 182, 212, 0.45), var(--glow-cyan);
    filter: brightness(1.1);
    color: #ffffff;
}

/* Nav Links desktop styling with diagonal cut (slant) */
@media (min-width: 769px) {
    .nav-links {
        display: flex;
        align-items: center;
        gap: 35px;
        height: 100%;
        background: linear-gradient(135deg, var(--bg-dark-secondary) 0%, rgba(3, 7, 18, 0.95) 100%);
        margin-right: -100vw;
        padding-right: 100vw;
        padding-left: 80px; 
        clip-path: polygon(45px 0%, 100% 0, 100% 100%, 0% 100%);
        border-left: 1px solid rgba(6, 182, 212, 0.15);
    }
}

.nav-links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-only-contact {
    display: none;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.6rem;
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--secondary-color);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 650px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    margin-top: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(3, 7, 18, 0.97) 0%, rgba(11, 19, 41, 0.88) 60%, rgba(3, 7, 18, 0.6) 100%),
        linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    z-index: 1;
}

/* Floating Glowing Neon Blobs for Background */
.hero-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.glow-blob {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.28;
    mix-blend-mode: screen;
}

.blob-1 {
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    top: 15%;
    left: 10%;
    animation: floatBlob1 22s infinite alternate ease-in-out;
}

.blob-2 {
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    bottom: 10%;
    right: 15%;
    animation: floatBlob2 28s infinite alternate ease-in-out;
}

.blob-3 {
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 45%;
    left: 45%;
    animation: floatBlob3 20s infinite alternate ease-in-out;
}

@keyframes floatBlob1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(80px, 60px) scale(1.2) rotate(120deg);
    }
    100% {
        transform: translate(-40px, 120px) scale(0.95) rotate(240deg);
    }
}

@keyframes floatBlob2 {
    0% {
        transform: translate(0, 0) scale(1.1) rotate(0deg);
    }
    50% {
        transform: translate(-100px, -70px) scale(0.85) rotate(-120deg);
    }
    100% {
        transform: translate(60px, -120px) scale(1.15) rotate(-240deg);
    }
}

@keyframes floatBlob3 {
    0% {
        transform: translate(0, 0) scale(0.95) rotate(0deg);
    }
    50% {
        transform: translate(70px, -40px) scale(1.15) rotate(180deg);
    }
    100% {
        transform: translate(-80px, 50px) scale(0.95) rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 750px;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 3.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 45px;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

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

/* =========================================
   Services Grid (Premium Glassmorphism)
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 50px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--glow-cyan);
    border-bottom-color: var(--secondary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(6, 182, 212, 0.08);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 24px;
    transition: var(--transition);
    border: 1px solid rgba(6, 182, 212, 0.15);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: #ffffff;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* =========================================
   Why Us / Features Grid
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: var(--shadow-md), var(--glow-blue);
}

.feature-icon {
    font-size: 2.8rem;
    color: var(--primary-light);
    margin-bottom: 24px;
    transition: var(--transition);
    display: inline-block;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15);
    color: var(--secondary-color);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* =========================================
   About Section
   ========================================= */
.about-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 40%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.15rem;
    line-height: 1.75;
}

/* =========================================
   Footer & Contact (Dark Premium Redesign)
   ========================================= */
.footer {
    background-color: #02050d;
    color: var(--text-color);
    padding: 100px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 150px;
    width: 150px;
    object-fit: contain;
    margin-bottom: 24px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), var(--glow-cyan);
    transition: var(--transition);
}

.footer-logo:hover {
    transform: scale(1.05) rotate(-3deg);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.2), var(--glow-cyan);
}

.footer-desc {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    color: var(--text-light);
}

.contact-list li i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.contact-list a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

.footer-links h3, .footer-form h3 {
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 1.4rem;
    position: relative;
}

.footer-links h3::after, .footer-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-light);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-right: 8px;
}

/* Glassmorphic Cyber Form */
.footer-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    font-family: var(--font-family);
    transition: var(--transition);
}

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

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.15), var(--glow-cyan);
}

.submit-btn {
    width: 100%;
    border-radius: var(--border-radius-sm);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 40px;
    }
    
    .footer-form {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .navbar, .navbar.shrunk {
        height: 80px !important;
        overflow: visible !important;
    }

    .logo img {
        height: 55px;
    }

    .btn-contact, .btn-ticket {
        display: none; 
    }

    .hero {
        margin-top: 0;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .mobile-menu-btn {
        display: block;
        position: relative;
        z-index: 1010;
        cursor: pointer;
    }

    /* Mobile Drawer Glass Style */
    .nav-links {
        display: flex;
        position: absolute;
        top: 80px;
        right: -100%;
        width: 100%;
        z-index: 1005;
        background-color: rgba(3, 7, 18, 0.98); 
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 40px 24px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.6);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        gap: 24px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        text-align: right;
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: #ffffff;
    }
    
    .nav-links a::after {
        display: none; /* Disable underline effect on mobile menu list */
    }

    .mobile-only-contact {
        display: block;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: #ffffff !important;
        text-align: center;
        padding: 14px !important;
        border-radius: 50px;
        margin-top: 15px;
        font-weight: 600;
        border-bottom: none !important;
        box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
    }

    .mobile-only-contact:hover {
        box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-form {
        grid-column: span 1;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }

    /* Prevent auto zoom on iOS Safari */
    .form-group input, 
    .form-group textarea,
    .form-group-modal input, 
    .form-group-modal select, 
    .form-group-modal textarea {
        font-size: 16px !important;
    }
}

/* =========================================
   Service Ticket & Modal Styles
   ========================================= */
.btn-ticket {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.92rem;
    text-align: center;
    cursor: pointer;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
    transition: var(--transition);
}

.btn-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(6, 182, 212, 0.45), var(--glow-cyan);
    filter: brightness(1.1);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 7, 18, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--bg-dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 650px;
    padding: 40px;
    box-shadow: var(--shadow-lg), var(--glow-blue);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    max-height: calc(var(--vh, 1vh) * 90);
    overflow-y: auto;
    direction: rtl; /* Force RTL direction inside modal */
}

.modal.open .modal-content {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    left: 25px; /* RTL close button position */
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ffffff 40%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: right;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: right;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-modal {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: right;
}

.form-group-modal label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group-modal input,
.form-group-modal select,
.form-group-modal textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    font-family: var(--font-family);
    font-size: 0.95rem;
    transition: var(--transition);
}

/* Custom styling for select dropdown dropdown arrow */
.form-group-modal select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: left 12px center; /* Position on the left in RTL */
    padding-left: 40px;
}

.form-group-modal select option {
    background-color: var(--bg-dark-secondary);
    color: #ffffff;
}

.form-group-modal input:focus,
.form-group-modal select:focus,
.form-group-modal textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.15), var(--glow-cyan);
}

/* Urgency custom styling */
.urgency-options {
    display: flex;
    gap: 15px;
}

.urgency-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    background-color: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.urgency-label input[type="radio"] {
    display: none; /* Hide default radio */
}

.urgency-label span {
    font-size: 0.92rem;
    color: var(--text-light);
    transition: var(--transition);
}

.urgency-label:has(input:checked) {
    border-color: var(--primary-color);
    background-color: rgba(59, 130, 246, 0.08);
    box-shadow: var(--glow-blue);
}

.urgency-label:has(input:checked) span {
    color: #ffffff;
}

.urgency-label.urgent:has(input:checked) {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.08);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.urgency-label.urgent:has(input:checked) span {
    color: #f87171;
}

.submit-btn-modal {
    width: 100%;
    margin-top: 10px;
    font-size: 1.05rem;
    padding: 14px;
}

/* Responsive modal */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .urgency-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-content h2 {
        font-size: 1.8rem;
    }
}

/* =========================================
   Partners Logos Infinite Slider
   ========================================= */
.logos-section {
    padding: 60px 0;
    background-color: var(--bg-dark-primary);
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.logos-title {
    text-align: center;
    margin-bottom: 35px;
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.logos-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    direction: ltr; /* Force left-to-right to ensure identical animation behavior */
}

/* Linear-gradient side blurs for premium overlay fade */
.logos-slider::before,
.logos-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark-primary), transparent);
}

.logos-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark-primary), transparent);
}

.logos-track {
    display: flex;
    width: max-content;
    animation: infiniteScroll 30s linear infinite;
}

.logos-group {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 30px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    border-radius: var(--border-radius-sm);
    padding: 8px 16px;
    height: 64px;
    width: 140px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    overflow: hidden;
}

.logo-item:hover {
    transform: translateY(-4px) scale(1.03);
    background-color: #ffffff;
}

.logo-item svg,
.logo-item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

/* Original Brand Colors for SVGs */
.logo-item svg {
    fill: currentColor;
    opacity: 1;
}

.logo-item img {
    opacity: 1;
    filter: none;
}

/* Custom Colored Borders & Hover Glows for Each Card */
.logo-item.eilat {
    border: 2px solid #007dbd;
}
.logo-item.eilat:hover {
    box-shadow: 0 8px 25px rgba(0, 125, 189, 0.4), 0 0 15px rgba(0, 125, 189, 0.2);
}

.logo-item.strauss {
    border: 2px solid #e1251b;
}
.logo-item.strauss:hover {
    box-shadow: 0 8px 25px rgba(225, 37, 27, 0.4), 0 0 15px rgba(225, 37, 27, 0.2);
}

.logo-item.dan {
    border: 2px solid #b58d3d;
}
.logo-item.dan:hover {
    box-shadow: 0 8px 25px rgba(181, 141, 61, 0.4), 0 0 15px rgba(181, 141, 61, 0.2);
}

.logo-item.sport-eilat {
    border: 2px solid #00a4ef;
}
.logo-item.sport-eilat:hover {
    box-shadow: 0 8px 25px rgba(0, 164, 239, 0.4), 0 0 15px rgba(0, 164, 239, 0.2);
}

.logo-item.aroma {
    border: 2px solid #111827;
}
.logo-item.aroma:hover {
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4), 0 0 15px rgba(239, 68, 68, 0.2);
}

.logo-item.isrotel {
    border: 2px solid #003c71;
}
.logo-item.isrotel:hover {
    box-shadow: 0 8px 25px rgba(0, 60, 113, 0.4), 0 0 15px rgba(0, 60, 113, 0.2);
}

/* =========================================
   Selected Projects Section
   ========================================= */
.projects-section {
    background-color: var(--bg-dark-primary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.project-card {
    position: relative;
    height: 320px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.project-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
    z-index: 0;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 7, 18, 0.45);
    z-index: 1;
    transition: var(--transition);
}

/* Hover effects & Brand-specific glows */
.project-card:hover {
    transform: translateY(-8px);
}

.project-card:hover .project-bg {
    transform: scale(1.08);
}

.project-card:hover .project-overlay {
    background: rgba(3, 7, 18, 0);
}

/* Dan Hotels (Gold) */
.project-card.dan-project {
    border-color: rgba(181, 141, 61, 0.2);
}
.project-card.dan-project:hover {
    border-color: #b58d3d;
    box-shadow: 0 8px 30px rgba(181, 141, 61, 0.35);
}

/* Sport Complex (Blue) */
.project-card.sport-project {
    border-color: rgba(0, 164, 239, 0.2);
}
.project-card.sport-project:hover {
    border-color: #00a4ef;
    box-shadow: 0 8px 30px rgba(0, 164, 239, 0.35);
}

/* Aroma (Red) */
.project-card.aroma-project {
    border-color: rgba(239, 68, 68, 0.2);
}
.project-card.aroma-project:hover {
    border-color: #ef4444;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.35);
}

/* =========================================
   Quick Support Hub Modal
   ========================================= */
.support-modal-content {
    max-width: 900px !important;
}

.projects-modal-content {
    max-width: 1000px !important;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.support-card {
    background-color: var(--bg-dark-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    opacity: 0.8;
}

.support-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.15);
}

.support-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--secondary-color);
    box-shadow: var(--glow-cyan);
}

.support-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.support-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
}

.download-buttons,
.support-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

/* AnyDesk (Red) */
.anydesk-btn {
    background-color: #ef4444;
    color: #ffffff;
}
.anydesk-btn:hover {
    background-color: #dc2626;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

/* TeamViewer (Blue) */
.teamviewer-btn {
    background-color: #005fbc;
    color: #ffffff;
}
.teamviewer-btn:hover {
    background-color: #004b96;
    box-shadow: 0 0 20px rgba(0, 95, 188, 0.4);
}

/* Ticket (Cyan Gradient) */
.ticket-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
}
.ticket-btn:hover {
    opacity: 0.9;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

/* WhatsApp (Green) */
.whatsapp-btn {
    background-color: #22c55e;
    color: #ffffff;
}
.whatsapp-btn:hover {
    background-color: #16a34a;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}



@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%); /* Loop back seamlessly after moving exactly 1 group width (25% of 4 groups) */
    }
}

/* Responsive adjustments for logos */
@media (max-width: 768px) {
    .logos-section {
        padding: 40px 0;
    }
    .logos-title {
        font-size: 1.1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    .logos-group {
        gap: 20px;
        padding-right: 20px;
    }
    .logo-item {
        height: 48px;
        width: 110px;
        padding: 3px 8px;
        border-width: 1.5px; /* Thinner border on mobile looks cleaner! */
    }
    .logo-item svg,
    .logo-item img {
        height: 100%;
        width: 100%;
    }
    .logos-slider::before,
    .logos-slider::after {
        width: 60px; /* Thinner blurs on small screens */
    }
    .support-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .support-card {
        padding: 30px 20px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .project-card {
        height: 350px;
    }
}

/* =========================================
   Tablet & Ultra-Mobile Responsiveness
   ========================================= */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-links {
        gap: 18px;
        padding-left: 45px;
    }
    .header-left {
        gap: 15px;
    }
    .btn-contact, .btn-ticket {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }
    .modal-content {
        padding: 25px 15px;
    }
    .modal-content h2 {
        font-size: 1.6rem;
    }
}

/* =========================================
   Disclaimer and Checkbox Styling
   ========================================= */
.disclaimer-container {
    margin-bottom: 25px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-md);
    text-align: right;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.disclaimer-container:hover {
    border-color: rgba(6, 182, 212, 0.2);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.05);
}

.disclaimer-checkbox-label {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    cursor: pointer;
    text-align: right;
    user-select: none;
}

.disclaimer-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Custom Styled Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
    margin-top: 3px;
    transition: var(--transition);
}

.custom-checkbox i {
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
    color: var(--secondary-color);
}

/* Checkbox States */
.disclaimer-checkbox-label:hover .custom-checkbox {
    border-color: var(--secondary-color);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.2);
}

.disclaimer-checkbox-label input[type="checkbox"]:checked ~ .custom-checkbox {
    border-color: var(--secondary-color);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: var(--glow-cyan);
}

.disclaimer-checkbox-label input[type="checkbox"]:checked ~ .custom-checkbox i {
    opacity: 1;
    transform: scale(1);
}

.disclaimer-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Disabled Download Buttons State */
.support-btn.disabled {
    opacity: 0.3;
    pointer-events: none;
    filter: grayscale(0.8);
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    color: var(--text-muted) !important;
    box-shadow: none !important;
    transform: none !important;
}

/* =========================================
   Ultra-Mobile Screen Optimizations (<= 480px)
   ========================================= */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.1rem !important;
        margin-bottom: 18px;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 1.8rem !important;
    }
    
    .logo img {
        height: 48px;
    }
    
    .navbar, .navbar.shrunk {
        height: 70px !important;
    }
    
    .nav-links {
        top: 70px;
    }
    
    .disclaimer-container {
        padding: 12px;
        margin-bottom: 18px;
    }
    
    .disclaimer-text {
        font-size: 0.8rem;
    }
    
    .custom-checkbox {
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }
    
    .custom-checkbox i {
        font-size: 0.65rem;
    }
}

/* =========================================
   Mobile Quick Action Bar (PWA Bottom Bar)
   ========================================= */
.mobile-action-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-action-bar {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 480px;
        height: 65px;
        background: rgba(11, 19, 41, 0.82);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), var(--glow-cyan);
        z-index: 1999;
        justify-content: space-around;
        align-items: center;
        padding: 0 10px;
        direction: rtl;
    }

    .action-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.75rem;
        font-weight: 500;
        text-align: center;
        flex: 1;
        height: 100%;
        transition: var(--transition);
        gap: 4px;
        cursor: pointer;
    }

    .action-item i {
        font-size: 1.25rem;
        color: var(--text-color);
        transition: var(--transition);
    }

    .action-item:hover,
    .action-item:active {
        color: var(--secondary-color);
    }

    .action-item:hover i,
    .action-item:active i {
        color: var(--secondary-color);
        transform: scale(1.1);
    }

    /* Central FAB for Service Ticket */
    .action-item.primary-action {
        position: relative;
        top: -15px;
        height: auto;
        color: #ffffff;
        font-weight: 600;
    }

    .fab-icon-wrapper {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(6, 182, 212, 0.45), var(--glow-cyan);
        border: 3px solid var(--bg-dark-primary);
        transition: var(--transition);
    }

    .action-item.primary-action i {
        font-size: 1.5rem;
        color: #ffffff;
    }

    .action-item.primary-action:hover .fab-icon-wrapper,
    .action-item.primary-action:active .fab-icon-wrapper {
        transform: scale(1.08);
        box-shadow: 0 10px 25px rgba(6, 182, 212, 0.6), var(--glow-cyan);
        filter: brightness(1.15);
    }

    body {
        padding-bottom: 100px;
    }
}

/* =========================================
   PWA Install Banner & iOS Modal
   ========================================= */
.pwa-banner {
    position: fixed;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 480px;
    background: rgba(11, 19, 41, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 16px;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(6, 182, 212, 0.25);
    z-index: 1998;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    direction: rtl;
}

.pwa-banner.show {
    bottom: 95px; /* Floats exactly above the quick action bar */
}

.pwa-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pwa-banner-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.pwa-banner-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    text-align: right;
}

.pwa-banner-text p {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.3;
    text-align: right;
}

.pwa-banner-actions {
    display: flex;
    gap: 10px;
}

.btn-pwa-install,
.btn-pwa-dismiss {
    flex: 1;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-pwa-install {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #ffffff;
}

.btn-pwa-install:hover {
    filter: brightness(1.1);
}

.btn-pwa-dismiss {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-pwa-dismiss:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* iOS PWA Install Modal step styling */
.ios-install-content {
    max-width: 500px !important;
}

.ios-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.ios-step {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 12px 16px;
    text-align: right;
}

.step-num {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.ios-step p {
    font-size: 0.9rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

.ios-share-icon {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin: 0 4px;
    vertical-align: middle;
}

.ios-add-icon {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0 4px;
    vertical-align: middle;
}

/* =========================================
   PWA Splash Screen / Page Loader
   ========================================= */
.pwa-splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #030712;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1;
}

.pwa-splash-screen.fade-out {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.splash-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.4));
    animation: logoPulse 2s infinite ease-in-out;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 35px rgba(6, 182, 212, 0.6));
    }
}

.splash-loader {
    width: 180px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    box-shadow: 0 0 10px var(--secondary-color);
    border-radius: 10px;
    animation: fillProgress 1.4s cubic-bezier(0.1, 0.8, 0.25, 1) forwards;
}

@keyframes fillProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

.splash-text {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    font-weight: 400;
}
