/* Base & Variables - Fiery Theme */
:root {
    --bg-dark: #0a0000;
    --bg-card: #140505;
    --bg-card-hover: #220808;
    --text-main: #fcfcfc;
    --text-muted: #bda8a8;
    --fire-main: #ff4500; /* Red-Orange */
    --fire-light: #ff8c00; /* Dark Orange */
    --fire-yellow: #ffd700; /* Gold/Yellow */
    --whatsapp-color: #25D366;
    --radius: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .badge {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Fire Background Effect */
.fire-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 50% 120%, rgba(255, 69, 0, 0.15) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Typography & Fire Effects */
.fire-text {
    background: linear-gradient(0deg, var(--fire-main) 0%, var(--fire-light) 50%, var(--fire-yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.highlight-fire {
    background: linear-gradient(90deg, var(--fire-main), var(--fire-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.15rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
header {
    background-color: rgba(10, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
    box-shadow: 0 4px 30px rgba(255, 69, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.header-call {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--text-main);
    border: 1px solid rgba(255, 69, 0, 0.5);
    background: rgba(255, 69, 0, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    transition: var(--transition);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--fire-main);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--fire-main);
    animation: pulse-dot-anim 1.5s infinite;
}

@keyframes pulse-dot-anim {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 69, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

.header-call:hover {
    background: linear-gradient(90deg, var(--fire-main), var(--fire-light));
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 200px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.fire-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: rgba(255, 69, 0, 0.15);
    color: #ffb4a2;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 69, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.1);
}

.main-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-fire {
    background: linear-gradient(45deg, #d90429, var(--fire-main), var(--fire-light));
    background-size: 200% auto;
    color: white;
    box-shadow: 0 10px 30px -5px rgba(255, 69, 0, 0.6);
    border: none;
    animation: gradient-shift 3s ease infinite;
}

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

.btn-fire:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(255, 69, 0, 0.8);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
    box-shadow: 0 10px 30px -5px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(37, 211, 102, 0.6);
}

.btn-large {
    font-size: 1.5rem;
    padding: 20px 50px;
}

/* Pulse Animation for Call Buttons */
.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 69, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 69, 0, 0); }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-item .stars {
    color: var(--fire-yellow);
    letter-spacing: 2px;
    font-size: 1.2rem;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255, 69, 0, 0.1);
    border-bottom: 1px solid rgba(255, 69, 0, 0.1);
}

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

.step-card {
    background: var(--bg-dark);
    padding: 50px 30px 40px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(255, 69, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--fire-main), var(--fire-light));
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
    font-family: 'Outfit', sans-serif;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

/* Features Section */
.features {
    padding: 120px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: rgba(20, 5, 5, 0.6);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 69, 0, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: var(--bg-card-hover);
    border-color: rgba(255, 69, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 69, 0, 0.1);
}

.icon-fire {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.5));
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

/* Service Areas */
.regions {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.region-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px 20px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    color: white;
}

.region-item small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 8px;
}

.region-item:hover {
    background: rgba(255, 69, 0, 0.1);
    border-color: var(--fire-main);
    color: var(--fire-light);
    transform: scale(1.02);
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
}

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

.testimonial-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.testimonial-card .stars {
    color: var(--fire-yellow);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.reviewer {
    color: var(--fire-light);
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-dark);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    color: var(--fire-light);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--fire-main);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 255, 255, 0.02);
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust if content is very long */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-question {
    color: var(--fire-light);
}

/* Footer CTA */
.footer-cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CjxwYXRoIGQ9Ik0wIDBoNDB2NDBIMHoiIGZpbGw9IiMwYTAwMDAiLz4KPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSsyNTUsNjksMCwwLjIpIi8+Cjwvc3ZnPg==');
    border-top: 1px solid rgba(255, 69, 0, 0.2);
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 100%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.footer-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-cta p {
    color: var(--text-muted);
    font-size: 1.3rem;
    margin-bottom: 40px;
}

/* Footer */
footer {
    background-color: #050000;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.footer-contact strong {
    color: white;
}

.footer-contact a:hover {
    color: var(--fire-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.float-whatsapp {
    background-color: var(--whatsapp-color);
}

.float-call {
    background: linear-gradient(135deg, var(--fire-main), #d90429);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .header-call { display: flex; padding: 6px 12px; font-size: 0.85rem; }
    .hero {
        padding: 140px 0 80px;
        min-height: auto;
    }
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .float-btn {
        width: 55px;
        height: 55px;
    }
}

/* Footer Links */
.footer-links h4 { color: white; margin-bottom: 15px; font-size: 1.2rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--fire-light); padding-left: 5px; }

/* Internal Pages */
.page-header { padding: 150px 0 60px; text-align: center; background: radial-gradient(circle at top, rgba(255, 69, 0, 0.1) 0%, transparent 70%); border-bottom: 1px solid rgba(255,69,0,0.1); }
.page-title { font-size: 3rem; margin-bottom: 20px; }
.page-content { padding: 80px 0; max-width: 800px; margin: 0 auto; }
.page-content h2, .page-content h3 { color: white; margin: 30px 0 15px; }
.page-content p { margin-bottom: 20px; color: var(--text-muted); line-height: 1.8; }
.page-content ul { padding-left: 20px; color: var(--text-muted); margin-bottom: 20px; }
.page-content li { margin-bottom: 10px; }

/* Navigation Menu */
.desktop-nav { display: none; }
.desktop-nav ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.desktop-nav a { font-weight: 600; color: var(--text-main); transition: var(--transition); }
.desktop-nav a:hover { color: var(--fire-light); }

.header-right { display: flex; align-items: center; gap: 15px; }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; justify-content: space-between; width: 30px; height: 21px; background: transparent; border: none; cursor: pointer; z-index: 1001; }
.hamburger span { width: 100%; height: 3px; background-color: var(--text-main); border-radius: 3px; transition: var(--transition); transform-origin: left center; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg); }

/* Mobile Menu */
.mobile-nav { position: fixed; top: 0; right: -100%; width: 250px; height: 100vh; background-color: rgba(10, 0, 0, 0.95); backdrop-filter: blur(15px); border-left: 1px solid rgba(255, 69, 0, 0.2); padding-top: 100px; transition: var(--transition); z-index: 999; box-shadow: -10px 0 30px rgba(0,0,0,0.5); }
.mobile-nav.active { right: 0; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.mobile-nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.mobile-nav a { display: block; padding: 20px 30px; font-size: 1.2rem; font-weight: 600; color: white; transition: var(--transition); }
.mobile-nav a:hover { color: var(--fire-light); padding-left: 40px; background: rgba(255,69,0,0.1); }

@media (min-width: 992px) {
    .hamburger { display: none; }
    .desktop-nav { display: block; }
    .mobile-nav { display: none; }
    .header-call { padding: 10px 24px; font-size: 1rem; }
}/* Fleet Section */
.fleet-section { padding: 100px 0; background-color: var(--bg-card); }
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.fleet-card { background: var(--bg-dark); padding: 40px 30px; border-radius: var(--radius); text-align: center; border: 1px solid rgba(255, 69, 0, 0.1); transition: var(--transition); }
.fleet-card:hover { transform: translateY(-10px); border-color: rgba(255, 69, 0, 0.5); box-shadow: 0 15px 30px rgba(0,0,0,0.5); }
.fleet-icon { font-size: 4rem; margin-bottom: 20px; filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.3)); }
.fleet-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: white; }

/* Stats Section */
.stats-section { padding: 80px 0; background: linear-gradient(90deg, #1a0505, var(--bg-dark)); border-bottom: 1px solid rgba(255, 69, 0, 0.1); }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stat-number { font-size: 3.5rem; font-weight: 900; color: var(--fire-main); font-family: 'Outfit', sans-serif; text-shadow: 0 0 20px rgba(255, 69, 0, 0.4); margin-bottom: 10px; }
.stat-label { font-size: 1.1rem; color: white; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* App Banner */
.app-banner { padding: 80px 0; }
.banner-container { background: linear-gradient(135deg, rgba(20,5,5,0.9), rgba(40,10,10,0.9)); border: 1px solid rgba(255,69,0,0.3); border-radius: 20px; padding: 60px 40px; text-align: center; position: relative; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.banner-container::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,69,0,0.1) 0%, transparent 50%); pointer-events: none; }
.banner-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.banner-content h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.3; }
.banner-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; }

/* === ADVANCED GLASSMORPHISM & ANIMATIONS === */

/* Animated Background Orbs */
.orb-container {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #110000 0%, #030000 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: floatOrb 20s infinite ease-in-out alternate;
    pointer-events: none;
}

.orb-1 { width: 50vw; height: 50vw; background: #ff3300; top: -10vh; left: -10vw; animation-delay: 0s; }
.orb-2 { width: 40vw; height: 40vw; background: #ff7700; bottom: -10vh; right: -10vw; animation-delay: -5s; opacity: 0.3;}
.orb-3 { width: 30vw; height: 30vw; background: #ffaa00; top: 40vh; left: 40vw; animation-delay: -10s; opacity: 0.2; }

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(15, 5, 5, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 69, 0, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 69, 0, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 40px rgba(255, 51, 0, 0.2);
}

/* Moving Gradient Text */
.gradient-text-anim {
    background: linear-gradient(90deg, #ff3300, #ffaa00, #ff3300);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 3s linear infinite;
    display: inline-block;
}

@keyframes shineText {
    to { background-position: 200% center; }
}

/* Reveal Animations on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Advanced Button (Rotating Border Glow) */
.btn-advanced {
    position: relative;
    background: transparent;
    border: none;
    color: white;
    padding: 18px 45px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.btn-advanced::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: conic-gradient(from 0deg, transparent, var(--fire-main), var(--fire-light), transparent);
    z-index: -2;
    animation: spinGlow 3s linear infinite;
    border-radius: 50px;
}
.btn-advanced::after {
    content: '';
    position: absolute;
    top: 2px; left: 2px; right: 2px; bottom: 2px;
    background: #110000;
    z-index: -1;
    border-radius: 50px;
    transition: all 0.3s;
}
.btn-advanced:hover::after {
    background: rgba(255, 51, 0, 0.1);
}
@keyframes spinGlow { 100% { transform: rotate(360deg); } }

/* Fixes to existing components to merge with new glass style */
.feature-card, .step-card, .fleet-card, .region-item, .testimonial-card, .faq-item {
    border-radius: 20px;
}
body { background-color: transparent; } /* Let orb container show through */
.fire-bg { display: none; } /* Disable old bg */

/* === GOD-TIER EFFECTS === */

/* Cinematic Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Glowing Cursor */
@media (min-width: 1024px) {
    body, a, button, .glass-card, .faq-question {
        cursor: none !important;
    }

    .custom-cursor {
        position: fixed;
        width: 6px; height: 6px;
        background: #fff;
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 10px #fff, 0 0 20px var(--fire-main);
        transition: width 0.2s, height 0.2s, background 0.2s;
    }

    .cursor-follower {
        position: fixed;
        width: 36px; height: 36px;
        border: 1px solid rgba(255, 69, 0, 0.4);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275), width 0.3s, height 0.3s, background 0.3s;
    }

    /* Cursor Hover State */
    .custom-cursor.hover {
        width: 0; height: 0;
        background: transparent;
        box-shadow: none;
    }
    .cursor-follower.hover {
        width: 60px; height: 60px;
        background: rgba(255, 51, 0, 0.1);
        border-color: var(--fire-main);
        backdrop-filter: blur(2px);
        transform: translate(-50%, -50%) scale(1.1);
    }

    /* 3D Tilt Setup for Glass Cards */
    .glass-card {
        transform-style: preserve-3d;
        perspective: 1000px;
        will-change: transform;
    }
    .glass-card > * {
        transform: translateZ(20px); /* 3D pop out effect */
        transition: transform 0.3s;
    }
    .glass-card:hover > * {
        transform: translateZ(40px); /* Pops out more on hover */
    }
}
