/* ==========================================================================
   CSS VARIABLES & GLOBAL (Light Theme ONLY)
   ========================================================================== */
:root {
    --primary: #182B6B;
    --accent: #E53945;
    --bg-main: #FFFFFF;
    --bg-secondary: #F8F9FB;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow-soft: 0 15px 35px rgba(24, 43, 107, 0.05);
    --shadow-hover: 0 25px 50px rgba(24, 43, 107, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    
    --radius: 16px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: initial; } 
body { font-family: var(--font-body); color: var(--text-dark); background: var(--bg-main); line-height: 1.6; overflow-x: hidden; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; }

/* Utilities */
.container { width: 90%; max-width: 1320px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.bg-secondary { background: var(--bg-secondary); }
.bg-primary { background: var(--primary); }
.bg-accent { background: var(--accent); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: #fff; }
.text-warning { color: #FFB800; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-muted-light { color: #A0AABF; }
.w-100 { width: 100%; }
.m-0 { margin: 0 !important; }
.mb-1 { margin-bottom: 0.25rem; } .mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 1rem; } .mb-4 { margin-bottom: 1.5rem; } .mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 1rem; } .mt-4 { margin-top: 1.5rem; } .mt-5 { margin-top: 3rem; }
.ms-2 { margin-left: 0.5rem; } .ms-auto { margin-left: auto; } .me-2 { margin-right: 0.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; } .px-3 { padding-left: 1rem; padding-right: 1rem; } .px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; } .py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.d-flex { display: flex; } .d-inline-flex { display: inline-flex; } .d-inline-block { display: inline-block; }
.flex-column { flex-direction: column; }
.justify-content-between { justify-content: space-between; } .justify-content-center { justify-content: center; }
.align-items-center { align-items: center; } .align-items-start { align-items: flex-start; } .align-items-baseline { align-items: baseline; }
.flex-wrap { flex-wrap: wrap; } .gap-1 { gap: 0.25rem; } .gap-2 { gap: 0.5rem; } .gap-3 { gap: 1rem; } .gap-4 { gap: 1.5rem; }
.fs-2 { font-size: 2rem; } .fs-3 { font-size: 1.5rem; } .fs-4 { font-size: 1.25rem; } .fs-5 { font-size: 1.1rem; }
.fw-bold { font-weight: 700; } .font-weight-bold { font-weight: 600; } .small { font-size: 0.85rem; }
.shadow-premium { box-shadow: var(--shadow-soft); } .shadow-sm { box-shadow: 0 .125rem .25rem rgba(0,0,0,.075); }
.rounded { border-radius: .25rem; }
.border-top { border-top: 1px solid rgba(255,255,255,0.1); } .border-0 { border: 0 !important; }

.section-label { color: var(--accent); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block; font-weight: 600; }
.section-title { font-size: 3rem; margin-bottom: 20px; }

/* Buttons */
.btn { display: inline-flex; justify-content: center; align-items: center; padding: 16px 36px; border-radius: 50px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; transition: var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 20px rgba(24, 43, 107, 0.2); }
.btn-primary:hover { background: #122154; transform: translateY(-3px); box-shadow: 0 15px 25px rgba(24, 43, 107, 0.3); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-glass { background: rgba(255,255,255,0.8); color: var(--primary); border: 1px solid rgba(255,255,255,1); backdrop-filter: blur(10px); }
.btn-glass:hover { background: #fff; color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.btn-glow { box-shadow: 0 0 20px rgba(24, 43, 107, 0.4); }
.btn-glow:hover { box-shadow: 0 0 30px rgba(24, 43, 107, 0.6); }
.btn-text { color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.btn-text:hover { gap: 12px; }

/* Cards & Hover */
.glass-card { background: var(--glass-bg); backdrop-filter: blur(20px); border: var(--glass-border); border-radius: var(--radius); }
.luxury-card { background: var(--bg-main); border-radius: var(--radius); box-shadow: var(--shadow-soft); transition: var(--transition); overflow: hidden; border: 1px solid rgba(0,0,0,0.03); }
.glass-hover:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: rgba(24, 43, 107, 0.1); }

/* Progress & Floats */
.scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 4px; background: var(--accent); z-index: 10001; }
.floating-btn { position: fixed; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; color: white; z-index: 999; transition: var(--transition); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.floating-btn:hover { transform: scale(1.1); }
.float-wa { bottom: 30px; right: 30px; background: #25D366; }
.float-call { bottom: 105px; right: 30px; background: var(--primary); }
.pulse-anim { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); } 70% { box-shadow: 0 0 0 20px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header { position: fixed; top: 0; left: 0; width: 100%; padding: 25px 0; z-index: 1000; transition: var(--transition); }
.header.scrolled { padding: 15px 0; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); box-shadow: var(--shadow-soft); border-bottom: 1px solid rgba(255,255,255,0.5); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand-logo img { height: 70px; transition: var(--transition); }
.header.scrolled .brand-logo img { height: 55px; }
.nav-menu ul { display: flex; gap: 35px; }
.nav-link { font-size: 1rem; font-weight: 500; color: var(--text-dark); position: relative; transition: color 0.3s; padding-bottom: 5px; }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px; background: var(--primary); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 20px; }
.action-icon { 
    font-size: 22px; 
    color: var(--primary); 
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    transition: var(--transition);
    transform: none !important;
}
.action-icon i { transform: none !important; }
.action-icon:hover { color: var(--accent); transform: scale(1.1) !important; }
.nav-btn { padding: 12px 28px; }
.hamburger { display: none; background: none; border: none; font-size: 1.6rem; color: var(--text-dark); cursor: pointer; }

/* ==========================================================================
   HERO VIDEO (UPDATED LAYERING)
   ========================================================================== */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 80px; }
.hero-video-wrapper { position: absolute; inset: 0; z-index: 0; }
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1) contrast(1.05) saturate(1.1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent; 
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }

.hero-title { font-size: 4.8rem; margin-bottom: 25px; line-height: 1.1; text-shadow: 0px 0px 15px rgba(255,255,255, 1); }
.hero-subtitle { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 45px; font-weight: 500; text-shadow: 0px 0px 15px rgba(255,255,255, 1); }

.hero-buttons { display: flex; justify-content: center; gap: 20px; margin-bottom: 50px; }
.trust-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
.glass-badge { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 12px 25px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; box-shadow: var(--shadow-soft); border: 1px solid #fff; display: flex; align-items: center; gap: 10px; }

/* ==========================================================================
   BRANDS SLIDER
   ========================================================================== */
.brand-logo-item { opacity: 0.4; filter: grayscale(100%); transition: var(--transition); text-align: center; }
.brand-logo-item h3 { font-size: 1.8rem; font-family: var(--font-heading); font-weight: 700; margin:0; }
.brand-logo-item:hover { opacity: 1; filter: grayscale(0%); color: var(--primary); transform: scale(1.1); }

/* ==========================================================================
   SERVICES (IMAGES FIXED HERE)
   ========================================================================== */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 50px; }
.service-card { display: flex; flex-direction: column; height: 100%; }
.card-img { width: 100%; overflow: hidden; position: relative; background: #000; } /* Fixed height removed */
.card-img img { width: 100%; height: auto; object-fit: contain; transition: transform 0.8s ease; display: block; } /* Auto height and contain to fix cropping */
.service-card:hover .card-img img { transform: scale(1.05); } /* Slightly reduced scale for better view */

.card-body { padding: 35px 30px; flex-grow: 1; display: flex; flex-direction: column; align-items: flex-start; background: var(--bg-main); border-top: 1px solid rgba(0,0,0,0.03); }
.card-icon { font-size: 2.2rem; margin-bottom: 15px; display: block; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.card-body h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card-body p { color: var(--text-muted); margin-bottom: 25px; font-size: 0.95rem; }

/* ==========================================================================
   HOW IT WORKS TIMELINE
   ========================================================================== */
.premium-timeline { display: flex; justify-content: space-between; position: relative; margin-top: 60px; }
.premium-timeline::before { content: ''; position: absolute; top: 35px; left: 0; width: 100%; height: 3px; background: rgba(24, 43, 107, 0.1); z-index: 0; }
.tl-step { position: relative; z-index: 1; text-align: center; width: 16%; }
.tl-icon { width: 70px; height: 70px; background: var(--bg-main); border: 3px solid var(--primary); border-radius: 50%; margin: 0 auto 20px; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; font-weight: 700; color: var(--primary); box-shadow: var(--shadow-soft); transition: var(--transition); }
.tl-step:hover .tl-icon { background: var(--primary); color: #fff; transform: scale(1.1); box-shadow: 0 0 20px rgba(24, 43, 107, 0.3); }
.tl-step h4 { font-size: 1.1rem; margin-bottom: 8px; }
.tl-step p { font-size: 0.85rem; color: var(--text-muted); }

/* ==========================================================================
   VIDEO & STUDIO SECTIONS
   ========================================================================== */
.glass-video-player { max-width: 900px; margin: 40px auto 0; position: relative; border-radius: var(--radius); overflow: hidden; padding: 15px; background: var(--glass-bg); backdrop-filter: blur(20px); border: var(--glass-border); box-shadow: var(--shadow-hover); }
.glass-video-player video { width: 100%; border-radius: var(--radius); display: block; object-fit: cover; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2rem; color: var(--primary); box-shadow: 0 0 30px rgba(0,0,0,0.15); cursor: pointer; transition: var(--transition); }
.play-btn:hover { transform: translate(-50%, -50%) scale(1.1); background: #fff; color: var(--accent); }

.studio-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.reverse-row { direction: rtl; }
.reverse-row .studio-content { direction: ltr; }
.studio-img img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius); }
.studio-content h3 { font-size: 2.2rem; margin-bottom: 20px; }
.studio-content p { color: var(--text-muted); font-size: 1.1rem; }
.check-list { padding: 0; }
.check-list li { margin-bottom: 12px; font-weight: 500; display: flex; align-items: center; gap: 10px; font-size: 1rem; }

/* ==========================================================================
   STATISTICS
   ========================================================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-card { padding: 45px 25px; background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: 0.4s ease; }
.stat-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 25px 45px rgba(0,0,0,.18); }
.stat-number { display: flex; align-items: baseline; justify-content: center; gap: 5px; }

/* ==========================================================================
   GOOGLE REVIEWS
   ========================================================================== */
.reviewer-img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; margin-right: 15px; }
.review-card { padding: 40px; border: 1px solid rgba(0,0,0,0.05); }
.review-text { font-size: 1.1rem; font-style: italic; color: var(--text-dark); margin-top: 15px; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container { max-width: 850px; margin: 40px auto 0; }
.acc-item { background: var(--bg-main); border-radius: var(--radius); margin-bottom: 15px; box-shadow: var(--shadow-soft); overflow: hidden; border: 1px solid rgba(0,0,0,0.03); }
.acc-header { width: 100%; padding: 22px 30px; background: none; border: none; text-align: left; font-size: 1.1rem; font-family: var(--font-heading); font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); color: var(--text-dark); }
.acc-header:hover, .acc-header.active { color: var(--primary); }
.acc-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-content p { padding: 0 30px 22px; color: var(--text-muted); margin: 0; }

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.split-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.icon-circle { width: 55px; height: 55px; background: rgba(24, 43, 107, 0.05); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.3rem; color: var(--primary); flex-shrink: 0; transition: var(--transition); }
.ci-item:hover .icon-circle { background: var(--primary); color: #fff; transform: scale(1.1); box-shadow: 0 5px 15px rgba(24,43,107,0.2); }

/* Booking Form */
.booking-wrapper { padding: 50px; border-radius: 25px; }
.form-floating { position: relative; }
.form-input { width: 100%; padding: 22px 20px 12px; height: 65px; border: 1px solid rgba(0,0,0,0.1); border-radius: var(--radius); font-family: var(--font-body); font-size: 1rem; background: var(--bg-main); transition: var(--transition); outline: none; appearance: none; -webkit-appearance: none; }
.form-floating label { position: absolute; top: 20px; left: 20px; color: var(--text-muted); transition: var(--transition); pointer-events: none; font-size: 1rem; margin: 0; }
.form-input:focus, .form-input:not(:placeholder-shown) { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(24, 43, 107, 0.05); }
.form-input:focus ~ label, .form-input:not(:placeholder-shown) ~ label { top: 8px; font-size: 0.75rem; color: var(--primary); font-weight: 500; }
select.form-input { padding-top: 18px; padding-bottom: 12px; cursor: pointer; }
.select-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; font-size: 0.9rem; }
select.form-input:focus ~ .select-icon { color: var(--primary); }

/* ==========================================================================
   FULL WIDTH MAP
   ========================================================================== */
.full-width-map-container { width: 100%; padding: 0 5%; max-width: 1600px; margin: 0 auto; }
.full-width-map-container iframe { width: 100%; border-radius: 25px; box-shadow: var(--shadow-hover); border: 1px solid rgba(0,0,0,0.05); display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #0A1128;
    color: #fff;
    padding: 80px 0 30px;
}
.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-bottom: none !important;
    padding-bottom: 50px;
}
.footer-logo {
    width: 170px;
    height: auto;
    object-fit: contain;
    display: block;
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #A0AABF;
    transition: var(--transition);
    display: inline-block;
}
.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #A0AABF;
}
.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
    color: #fff;
}
.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}
.footer-credit-divider {
    margin: 0 10px;
    opacity: 0.4;
}
.footer-bottom strong {
    color: #fff;
    font-weight: 600;
}
.payment-icons { gap: 10px; }
.payment-icons i { transition: var(--transition); }
.payment-icons i:hover { color: #fff; transform: translateY(-2px); }

/* ==========================================================================
   RESPONSIVENESS (MOBILE FIXES APPLIED HERE)
   ========================================================================== */
@media (min-width: 769px) { .mobile-only { display: none !important; } }

@media (max-width: 1024px) {
    .hero-title { font-size: 3.8rem; }
    .split-layout, .studio-row { grid-template-columns: 1fr; gap: 50px; }
    .reverse-row { direction: ltr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .premium-timeline { flex-wrap: wrap; justify-content: center; gap: 30px; }
    .premium-timeline::before { display: none; }
    .tl-step { width: 45%; }
}

@media (max-width: 768px) {
    .nav-actions, .nav-menu { display: none; }
    .hamburger { display: block; z-index: 1002; }
    
    .nav-menu.active { display: flex; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--bg-main); flex-direction: column; justify-content: center; align-items: center; z-index: 1001; }
    .nav-menu.active ul { flex-direction: column; text-align: center; gap: 25px; }
    .nav-menu.active a.nav-link { font-size: 1.5rem; }

    .hero-title { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; padding: 0 20px; }
    .hero-buttons .btn { width: 100%; }
    
    .tl-step { width: 100%; text-align: left; display: flex; align-items: center; gap: 20px; }
    .tl-icon { margin: 0; flex-shrink: 0; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .social-links { justify-content: center; }
    .footer-contact-list li { justify-content: center; text-align: left; }
    .payment-icons { justify-content: center; }
    .trust-col .google-badge { align-items: center !important; margin: 0 auto; }
    
    .booking-wrapper { padding: 40px 20px; }
    .full-width-map-container { padding: 0 15px; }
    .full-width-map-container iframe { height: 350px; }

    /* --- MOBILE FIXES --- */
    
    /* Footer Logo Center */
    .footer-logo { margin: 0 auto 15px auto !important; }

    /* Contact Info Buttons Center */
    .contact-info-block .d-flex.flex-wrap { justify-content: center; }
    
    /* Google Reviews Button Center */
    .review-header { flex-direction: column; text-align: center; align-items: center !important; }
    .review-header h2.section-title { justify-content: center; }
    
    /* Brands Slider Text Size Adjustment for Mobile */
    .brand-logo-item h3 { font-size: 1.3rem; }

    /* NEW FIX: "Visit Our Studio" Section Title Center */
    .contact-info-block .section-label,
    .contact-info-block .section-title {
        text-align: center;
    }
}

/* ==========================================================================
   PREMIUM LUXURY PRELOADER
   ========================================================================== */
.no-scroll { overflow: hidden !important; height: 100vh !important; }

#premium-preloader {
    z-index: 999999;
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.preloader-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0;
    animation: preloaderLogoAnim 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes preloaderLogoAnim {
    0% { opacity: 0; transform: scale(0.8) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); filter: drop-shadow(0 10px 30px rgba(24, 43, 107, 0.15)); }
}

.preloader-welcome {
    margin-top: 35px;
    text-align: center;
    opacity: 0;
    animation: preloaderTextAnim 1s ease forwards 0.6s;
}

.preloader-welcome .small-text {
    display: block;
    font-size: 1.3rem;
    letter-spacing: 6px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}

.preloader-welcome .large-text {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

@keyframes preloaderTextAnim {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.preloader-bar-container {
    width: 260px;
    height: 4px;
    background: var(--bg-secondary);
    border-radius: 10px;
    margin-top: 45px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    animation: preloaderFadeIn 0.5s ease forwards 1.2s;
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    box-shadow: 0 0 15px var(--accent);
    animation: preloaderFill 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards 1.2s;
}

@keyframes preloaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.preloader-text {
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: preloaderFadeIn 0.5s ease forwards 1.2s;
}

.preloader-text .dots::after {
    content: '';
    animation: loadingDots 1.5s infinite steps(4, end);
}

@keyframes loadingDots {
    0% { content: ''; }
    25% { content: '.'; }
    50% { content: '..'; }
    75% { content: '...'; }
    100% { content: ''; }
}

@keyframes preloaderFadeIn {
    to { opacity: 1; }
}