@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Premium Palette (Slate & Blue) */
    --primary: #FBBF24;
    /* Blue 600 */
    --primary-dark: #D97706;
    /* Blue 700 */
    --secondary: #0a0a0a;
    /* Slate 900 */
    --text-main: #e2e8f0;
    /* Light text for dark bg */
    --text-muted: #94a3b8;
    /* Muted text */
    --bg-color: #050505;
    /* Dark */
    --card-bg: #111111;
    --border: #222222;
    /* Slate 200 */
    --accent: #f59e0b;
    /* Amber 500 */

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius: 0.75rem;
}

body.dark-mode {
    --bg-color: #050505;
    /* Slate 900 */
    --card-bg: #111111;
    /* Slate 800 */
    --text-main: #f1f5f9;
    /* Slate 100 */
    --text-muted: #94a3b8;
    /* Slate 400 */
    --border: #222222;
    /* Slate 700 */
    --secondary: #FBBF24;
    /* White for secondary text in dark mode */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    background-color: #050505;
}

body {
    background-color: #050505 !important;
    color: var(--text-main);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
}

/* Force ALL sections to stay dark */
section, main, article, aside {
    background-color: transparent;
}

/* Override any leftover light section backgrounds */
.steps-section,
.testimonials-section,
.features,
.faq-section,
.newsletter-section {
    background-color: #050505 !important;
}

/* Card and surface overrides */
.feature-card,
.testimonial-card,
.faq-item,
.step-card {
    background: #111111 !important;
    border-color: #222222 !important;
    color: #e2e8f0 !important;
}

/* --- Navigation --- */
header {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

body.dark-mode header {
    background-color: rgba(10, 10, 10, 0.95);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.5px;
    transition: transform 0.2s;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo strong {
    font-weight: 800;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Logo Image Styles */
.site-logo {
    max-height: 50px;
    max-width: 200px;
    object-fit: contain;
    vertical-align: middle;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    z-index: 1200;
    position: relative;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #050505;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: transform 0.3s ease-in-out;
        z-index: 1100;
        transform: translateX(100%);
        left: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.25rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(251, 191, 36, 0.1);
        transform: translateX(5px);
    }
}

.theme-btn {
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: all 0.2s;
}

.theme-btn:hover {
    background: #050505;
    border-color: var(--primary);
    color: var(--primary);
}

/* --- Hero Section --- */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

/* Background Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 20s ease-out forwards;
}

/* Smooth zoom effect */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(251, 191, 36, 0.75) 100%);
    z-index: 1;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: #050505;
    width: 28px;
    border-radius: 5px;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #FCD34D;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: #fbbf24;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Features Pills */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(251, 191, 36, 0.3);
    border-color: rgba(251, 191, 36, 0.5);
    transform: translateY(-2px);
}

.feature-pill i {
    color: #FCD34D;
}

/* --- Tracking Box --- */
.tracking-box {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border-radius: 1rem;
    display: flex;
    box-shadow: var(--shadow-lg);
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s;
}

body.dark-mode .tracking-box {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
}

.tracking-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tracking-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    outline: none;
    background: transparent;
    color: var(--text-main);
}

.tracking-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tracking-btn:hover {
    background: var(--primary-dark);
}

/* --- Features Section --- */
/* --- Features Section --- */
.features {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: #111111;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Lift and Glow */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

/* Subtle gradient overlay on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(251, 191, 36, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    background: rgba(251, 191, 36, 0.08);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* Icon scale effect */
.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px -5px rgba(251, 191, 36, 0.4);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

/* --- Footer --- */
footer {
    background-color: #0a0a0a;
    /* Always dark footer */
    color: #94a3b8;
    padding: 5rem 2rem 2rem;
    position: relative;
    /* Optional: verify if dark mode override is needed, but usually footer stays dark */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.85rem;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Keyframes --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Why Choose Us */
.why-us-section {
    background: var(--secondary);
    color: white;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.why-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
}

.why-us-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.why-us-item {
    display: flex;
    gap: 1.5rem;
}

.why-us-icon {
    font-size: 2rem;
    color: var(--accent);
    min-width: 50px;
}

.why-us-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.why-us-text p {
    color: #cbd5e1;
    line-height: 1.6;
}

.contact-section {
    scroll-margin-top: 2rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* How It Works (Steps) */
.steps-section {
    padding: 6rem 2rem;
    background: #050505;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.step-card {
    position: relative;
    padding: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 8px rgba(251, 191, 36, 0.1);
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.step-card p {
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 2rem;
    background: #050505;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.testimonial-card {
    background: #050505;
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: left;
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--accent);
    margin-bottom: 1rem;
}

/* --- Design 2.0: Premium Tracking Enhancements --- */

/* 1. Visual Progress Bar (Horizontal) */
.track-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 3rem;
    padding: 0 1rem;
    /* Force horizontal on all screens */
    flex-direction: row !important;
}

.track-progress::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: #222222;
    z-index: 0;
    border-radius: 4px;
}

.progress-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 44px;
    height: 44px;
    background: #050505;
    border: 2px solid #222222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.progress-step.active .step-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
    transform: scale(1.1);
}

.progress-step.completed .step-icon {
    background: #10b981;
    /* Green */
    border-color: #10b981;
    color: white;
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 700;
}

/* 2. Glassmorphism & Modern Cards */
.result-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 10, 0.95);
    border-radius: 1.5rem;
    /* More rounded */
}

/* Remove old borders, use subtle separation */
.details-section,
.timeline-section {
    border: none !important;
}

.details-section {
    background: linear-gradient(to bottom right, rgba(20,20,20,0.9), rgba(10,10,10,0.9));
}

.timeline-section {
    background: rgba(241, 245, 249, 0.5);
    /* Very subtle grey */
    border-left: 1px solid rgba(226, 232, 240, 0.6) !important;
}

/* 3. Pulse Animation */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(251, 191, 36, 0);
    }

    100% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

.status-live-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse-ring 2s infinite;
}

/* 4. Refined Typography */
.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 0.35rem;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .track-progress {
        padding: 0;
        margin-bottom: 2rem;
    }

    .track-progress::before {
        left: 20px;
        right: 20px;
    }

    .step-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.7rem;
    }
}


.quote {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

.author-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #cbd5e1;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: #050505;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #050505;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
}

.faq-question:hover {
    background: #111111;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Newsletter */
.newsletter-section {
    padding: 5rem 2rem;
    background: var(--primary);
    color: white;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border-radius: 0.5rem;
    border: none;
    outline: none;
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
}

.newsletter-btn:hover {
    background: #0a0a0a;
}

body.dark-mode .testimonial-card,
body.dark-mode .faq-item,
body.dark-mode .testimonials-section {
    background-color: #111111;
    border-color: var(--border);
}

body.dark-mode .steps-section,
body.dark-mode .faq-section {
    background-color: #050505;
}

body.dark-mode .faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .tracking-box {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .tracking-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Mobile Responsive Utility Classes */
    .split-layout,
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* responsive utility classes */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

/* Privacy Policy Page */
.policy-content {
    background: #050505;
    padding: 4rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    line-height: 1.8;
    color: var(--text-main);
}

.policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 1.5rem;
}

.policy-content p,
.policy-content ul {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.policy-content ul {
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 2rem;
    }
}/ *   - - -   N E W   P R E M I U M   H O M E P A G E   S T Y L E S   - - -   * /  
 

/* --- NEW PREMIUM HOMEPAGE STYLES --- */
:root {
    --premium-black: #050505;
    --premium-black-light: #111111;
    --premium-yellow: #FBBF24;
    --premium-yellow-glow: rgba(251, 191, 36, 0.5);
    --premium-border: rgba(255, 255, 255, 0.08);
}

body.dark-theme {
    background-color: var(--premium-black);
    color: #f1f5f9;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* Glass Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.glass-header.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--premium-border);
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.glass-header nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.glass-header .nav-links a {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 1rem;
    margin: 0 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
}

.glass-header .nav-links a:hover, .glass-header .nav-links a.active {
    color: var(--premium-yellow);
}

.btn-nav {
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
}

/* Cinematic Hero */
.hero-premium {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.hero-bg-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: slowPan 30s infinite alternate linear;
}

@keyframes slowPan {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, -2%); }
}

.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.95) 100%);
}

.hero-glow {
    position: absolute;
    top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, var(--premium-yellow-glow) 0%, transparent 60%);
    opacity: 0.15;
    pointer-events: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin-top: 5rem;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--premium-border);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #fff;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: var(--premium-yellow);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--premium-yellow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, var(--premium-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.tracking-glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--premium-border);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.tracking-form-premium {
    display: flex;
    gap: 1rem;
}

.input-icon-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i {
    position: absolute;
    left: 1.5rem;
    color: #64748b;
    font-size: 1.2rem;
}

.tracking-input-modern {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--premium-border);
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    border-radius: 1rem;
    color: white;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: all 0.3s;
}

.tracking-input-modern:focus {
    border-color: var(--premium-yellow);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.btn-large {
    padding: 0 2.5rem;
    font-size: 1.1rem;
    border-radius: 1rem;
}

.btn-glow {
    box-shadow: 0 10px 20px -5px rgba(251, 191, 36, 0.4);
    transition: all 0.3s;
}

.btn-glow:hover {
    box-shadow: 0 15px 25px -5px rgba(251, 191, 36, 0.6);
    transform: translateY(-2px);
}

/* Stats Overlap */
.stats-overlap {
    margin-top: -80px;
    position: relative;
    z-index: 20;
    padding: 0 2rem;
}

.stats-bento {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-box {
    background: var(--premium-black-light);
    border: 1px solid var(--premium-border);
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.3);
}

.stat-icon {
    width: 60px; height: 60px;
    background: rgba(251, 191, 36, 0.1);
    color: var(--premium-yellow);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-info p {
    color: #94a3b8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Bento Grid */
.services-premium {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading-modern {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    color: var(--premium-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 350px;
    gap: 1.5rem;
}

.bento-item {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background: var(--premium-black-light);
    border: 1px solid var(--premium-border);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s;
}

.bento-item:hover {
    border-color: rgba(251, 191, 36, 0.4);
    transform: translateY(-5px);
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; }

.bento-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.7s;
}

.bento-item:hover .bento-bg { transform: scale(1.05); }

.bento-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.9) 100%);
}

.bento-content { position: relative; z-index: 10; }

.bento-icon {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: #fff;
    margin-bottom: 1.5rem;
}

.bento-dark .bento-icon {
    background: rgba(251, 191, 36, 0.1);
    color: var(--premium-yellow);
}

.bento-content h3 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
.bento-content p { color: #cbd5e1; line-height: 1.6; margin-bottom: 1.5rem; }

.bento-link {
    color: var(--premium-yellow);
    text-decoration: none; font-weight: 700;
    display: inline-flex; align-items: center; gap: 0.5rem;
}

/* Process Section */
.process-section {
    background: var(--premium-black-light);
    padding: 8rem 2rem;
}

.process-container {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center;
}

.process-text p { color: #94a3b8; font-size: 1.2rem; margin: 2rem 0; line-height: 1.7; }

.btn-outline-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--premium-yellow);
    color: var(--premium-yellow);
    border-radius: 2rem; font-weight: 700; text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-primary:hover { background: var(--premium-yellow); color: #000; }

.process-steps { display: flex; flex-direction: column; gap: 2rem; }

.process-step {
    display: flex; gap: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--premium-border);
    padding: 2rem; border-radius: 1.5rem;
    transition: transform 0.3s;
}

.process-step:hover { transform: translateX(-10px); border-color: rgba(251, 191, 36, 0.2); }

.step-number {
    font-size: 3rem; font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
}

.step-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.step-content p { color: #94a3b8; }

/* Premium Footer */
.footer-premium { padding: 6rem 2rem 2rem; border-top: 1px solid var(--premium-border); }

.footer-grid {
    max-width: 1400px; margin: 0 auto 4rem;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem;
}

.brand-desc { color: #94a3b8; margin: 1.5rem 0; line-height: 1.7; }

.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 40px; height: 40px;
    background: var(--premium-black-light); border: 1px solid var(--premium-border);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; transition: all 0.3s;
}
.social-links a:hover { background: var(--premium-yellow); color: #000; }

.footer-links h4, .footer-contact h4 { font-size: 1.2rem; margin-bottom: 2rem; }
.footer-links ul { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 1rem; }
.footer-links a { color: #94a3b8; text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--premium-yellow); }

.contact-card {
    display: flex; gap: 1rem; align-items: center;
    background: var(--premium-black-light); padding: 1.5rem;
    border-radius: 1rem; margin-bottom: 1rem;
}
.contact-card i { font-size: 1.5rem; color: var(--premium-yellow); }
.contact-card span { display: block; color: #94a3b8; font-size: 0.9rem; }
.contact-card strong { font-size: 1.2rem; }

.email-link { color: var(--premium-yellow); text-decoration: none; font-weight: 600; }

.footer-bottom {
    max-width: 1400px; margin: 0 auto;
    padding-top: 2rem; border-top: 1px solid var(--premium-border);
    display: flex; justify-content: space-between; align-items: center;
    color: #64748b; font-size: 0.9rem;
}

.system-status { display: flex; align-items: center; gap: 0.5rem; }
.pulse-dot-small { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; box-shadow: 0 0 8px #22c55e; }


/* =============================================
   COMPREHENSIVE MOBILE-FIRST RESPONSIVE STYLES
   Breakpoints: 1200 | 1024 | 768 | 480 | 360
   ============================================= */

/* --- Tablet Large (max 1200px) --- */
@media (max-width: 1200px) {
    nav { padding: 0 1.5rem; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .stats-bento { grid-template-columns: repeat(2, 1fr); }
    .process-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-title { font-size: 4rem; }
    .section-title { font-size: 2.5rem; }
}

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {
    /* Nav */
    .glass-header nav { padding: 0 1.5rem; }
    .nav-actions { display: none; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: #0a0a0a;
        border-left: 1px solid rgba(255,255,255,0.08);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 3rem 2rem;
        gap: 0.5rem;
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        z-index: 1100;
        display: flex;
    }
    .nav-links a { font-size: 1.2rem; padding: 0.75rem 1rem; width: 100%; border-radius: 0.75rem; margin: 0; }
    .nav-links.active { right: 0; }
    .mobile-menu-btn { display: flex !important; }

    /* Hero */
    .hero-premium { min-height: 700px; }
    .hero-title { font-size: 3.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .tracking-glass-panel { max-width: 100%; }

    /* Stats */
    .stats-bento { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

    /* Bento */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 300px;
    }
    .bento-large { grid-column: span 2; grid-row: span 1; }
    .bento-wide { grid-column: span 2; }

    /* Process */
    .process-container { grid-template-columns: 1fr; }
    .process-text { text-align: center; }
    .process-text .section-title { font-size: 2.5rem; }

    /* Footer */
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
    /* Global spacing */
    section { padding: 4rem 1.25rem !important; }

    /* Typography */
    .section-title { font-size: 2rem !important; letter-spacing: -0.5px; }
    .section-subtitle { font-size: 0.8rem; }
    h2 { font-size: 1.75rem !important; }
    p { font-size: 0.95rem; }

    /* Hero */
    .hero-premium { height: auto; min-height: 100svh; padding: 7rem 1.25rem 4rem; }
    .hero-content-wrapper { margin-top: 2rem; }
    .hero-title { font-size: 2.6rem; letter-spacing: -1px; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .tracking-form-premium { flex-direction: column; gap: 0.75rem; }
    .tracking-input-modern { padding: 1rem 1rem 1rem 3rem; font-size: 1rem; }
    .btn-large { padding: 1rem; font-size: 1rem; width: 100%; justify-content: center; }
    .tracking-glass-panel { padding: 0.75rem; border-radius: 1.25rem; }

    /* Stats */
    .stats-overlap { margin-top: 0; padding: 0 1.25rem; }
    .stats-bento { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 2rem; }
    .stat-box { padding: 1.25rem; gap: 1rem; border-radius: 1rem; }
    .stat-icon { width: 45px; height: 45px; font-size: 1.3rem; border-radius: 0.75rem; }
    .stat-info h3 { font-size: 1.6rem; }
    .stat-info p { font-size: 0.8rem; }

    /* Services Bento */
    .services-premium { padding: 4rem 1.25rem; }
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
        gap: 1rem;
    }
    .bento-large, .bento-wide { grid-column: span 1; grid-row: span 1; }
    .bento-item { border-radius: 1.5rem; padding: 2rem 1.5rem; }
    .bento-content h3 { font-size: 1.4rem; }
    .bento-content p { font-size: 0.9rem; }

    /* Process */
    .process-section { padding: 4rem 1.25rem; }
    .process-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .process-text { text-align: center; }
    .process-text p { font-size: 1rem; }
    .process-step { padding: 1.5rem; gap: 1.25rem; border-radius: 1rem; }
    .step-number { font-size: 2rem; }
    .step-content h3 { font-size: 1.2rem; }

    /* Navigation */
    .glass-header nav { padding: 0 1.25rem; }
    .glass-header { padding: 1rem 0; }
    .logo { font-size: 1.25rem; }
    .logo i { font-size: 1.2rem; }
    .mobile-menu-btn { display: flex !important; width: 42px; height: 42px; font-size: 1.2rem; }
    .nav-links { width: 100%; right: -100%; }

    /* Old nav (non-premium pages) */
    .nav-links.active { right: 0; transform: none; }
    header nav { padding: 0.75rem 1.25rem; }

    /* Footer */
    .footer-premium { padding: 4rem 1.25rem 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-brand .brand-desc { font-size: 0.9rem; }
    .social-links { justify-content: flex-start; }

    /* Old footer */
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }

    /* Features grid (old pages) */
    .features-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
    .feature-card { padding: 2rem 1.5rem; }
    .feature-icon { width: 65px; height: 65px; font-size: 2rem; }

    /* Steps grid */
    .steps-grid { grid-template-columns: 1fr !important; gap: 2rem; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
    .testimonial-card { padding: 2rem; }

    /* FAQ */
    .faq-section { padding: 4rem 1.25rem; }
    .faq-container { max-width: 100%; }
    .faq-question { font-size: 0.95rem; padding: 1.25rem 1rem; }
    .faq-answer { padding: 0 1rem 1.25rem; font-size: 0.9rem; }

    /* Newsletter */
    .newsletter-section { padding: 4rem 1.25rem; }
    .newsletter-form { flex-direction: column; gap: 0.75rem; max-width: 100%; }
    .newsletter-input { width: 100%; border-radius: 0.75rem; }
    .newsletter-btn { width: 100%; border-radius: 0.75rem; }

    /* Track page */
    .tracking-page-hero { padding: 7rem 1.25rem 4rem; }
    .tracking-hero-content h1 { font-size: 2rem; }
    .shipment-card { padding: 1.5rem; }
    .shipment-header { flex-direction: column; gap: 1rem; }
    .tracking-timeline { padding: 1.5rem; }
    .timeline-item { gap: 1rem; }
    .timeline-content { padding: 1rem; }

    /* Contact/About pages */
    .contact-section { padding: 4rem 1.25rem; }
    .contact-grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .page-hero { padding: 7rem 1.25rem 4rem; }
    .page-hero h1 { font-size: 2.2rem; }
    .about-grid { grid-template-columns: 1fr !important; }

    /* Why us section */
    .why-us-grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .why-us-section { padding: 4rem 1.25rem; }
    .why-us-item { flex-direction: row; }
    .why-us-icon { font-size: 1.5rem; min-width: 40px; }

    /* Stats section (old) */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-item h3 { font-size: 2.2rem; }

    /* Admin pages */
    .admin-container { padding: 1rem; }
    .admin-grid { grid-template-columns: 1fr !important; }

    /* Buttons */
    .btn-primary, .btn-outline-primary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* --- Small Mobile (max 480px) --- */
@media (max-width: 480px) {
    .hero-title { font-size: 2rem; letter-spacing: -0.5px; }
    .hero-badge-modern { font-size: 0.75rem; padding: 0.4rem 1rem; }
    .hero-subtitle { font-size: 0.9rem; }

    .stats-bento { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .stat-box { padding: 1rem; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .stat-info h3 { font-size: 1.4rem; }

    .bento-grid { grid-auto-rows: 240px; }
    .bento-content h3 { font-size: 1.2rem; }

    .section-title { font-size: 1.75rem !important; }
    .section-subtitle { font-size: 0.75rem; }

    .tracking-glass-panel { padding: 0.5rem; }
    .input-icon-wrapper i { left: 1rem; font-size: 1rem; }
    .tracking-input-modern { padding: 0.9rem 0.9rem 0.9rem 2.75rem; font-size: 0.95rem; }

    .process-step { flex-direction: column; gap: 0.75rem; }
    .step-number { font-size: 1.75rem; }

    .footer-grid { gap: 2rem; }
    .footer-links h4, .footer-contact h4 { font-size: 1rem; }

    /* Hero feature pills (old pages) */
    .hero-features { flex-direction: column; align-items: center; gap: 0.75rem; }
    .feature-pill { width: 100%; justify-content: center; }

    /* About/Team/Contact cards */
    .team-grid { grid-template-columns: 1fr !important; }
    .values-grid { grid-template-columns: 1fr !important; }
}

/* --- Extra Small (max 360px) --- */
@media (max-width: 360px) {
    .hero-title { font-size: 1.75rem; }
    .stats-bento { grid-template-columns: 1fr; }
    .bento-grid { grid-auto-rows: 220px; }
    .nav-links { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- Fix mobile nav overlay backdrop --- */
@media (max-width: 1024px) {
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0; left: 0;
        width: 100vw; height: 100vh;
        background: rgba(0,0,0,0.6);
        z-index: -1;
        backdrop-filter: blur(4px);
    }
}

/* --- Ensure images don't overflow on mobile --- */
img, video { max-width: 100%; height: auto; }

/* --- Touch-friendly tap targets --- */
@media (max-width: 768px) {
    button, a, input[type="submit"] { min-height: 44px; }
    input, select, textarea { font-size: 16px !important; } /* Prevents iOS zoom on focus */
}





/* --- PRO ENHANCEMENTS --- */
.live-ticker-container {
    background: #000000; border-bottom: 1px solid rgba(251, 191, 36, 0.3);
    border-top: 1px solid rgba(251, 191, 36, 0.3);
    padding: 0.8rem 0; overflow: hidden; white-space: nowrap;
    position: relative; z-index: 900;
    margin-top: 95px; /* Safely clear the fixed header */
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.ticker-content {
    display: inline-block; animation: tickerScroll 30s linear infinite;
}
.ticker-item {
    color: #ffffff; font-size: 1.1rem; font-weight: 600; margin-right: 4rem; letter-spacing: 0.5px;
}
.text-green { color: #22c55e; } .text-yellow { color: var(--premium-yellow); }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.partners-section { padding: 4rem 0; background: #050505; border-bottom: 1px solid var(--premium-border); overflow: hidden; }
.partners-title { text-align: center; color: #64748b; font-size: 0.85rem; letter-spacing: 2px; font-weight: 700; margin-bottom: 2rem; }
.partners-carousel { white-space: nowrap; position: relative; }
.partners-carousel::before, .partners-carousel::after {
    content: ""; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2;
}
.partners-carousel::before { left: 0; background: linear-gradient(to right, #050505, transparent); }
.partners-carousel::after { right: 0; background: linear-gradient(to left, #050505, transparent); }
.partners-track { display: inline-block; animation: tickerScroll 20s linear infinite; }
.partner-logo {
    display: inline-block; font-size: 3rem; color: #334155; margin: 0 4rem; transition: color 0.3s;
}
.partner-logo:hover { color: var(--premium-yellow); }

.coverage-map-section { padding: 8rem 2rem; background: #050505; }
.map-container { max-width: 1200px; margin: 0 auto; position: relative; height: 500px; }
.stylized-map {
    width: 100%; height: 100%;
    border-radius: 2rem; border: 1px solid var(--premium-border);
    position: relative; overflow: hidden;
}
.stylized-map::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg');
    background-size: contain; background-position: center; background-repeat: no-repeat;
    filter: invert(1) brightness(0.2) sepia(1) hue-rotate(180deg) saturate(0);
    opacity: 0.8;
    z-index: 0;
}
.map-node { position: absolute; width: 12px; height: 12px; background: var(--premium-yellow); border-radius: 50%; box-shadow: 0 0 15px var(--premium-yellow); z-index: 10; }
.pulse-ring {
    position: absolute; top: -14px; left: -14px; width: 40px; height: 40px;
    border: 2px solid var(--premium-yellow); border-radius: 50%;
    animation: mapPulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1); opacity: 0;
}
@keyframes mapPulse { 0% { transform: scale(0.5); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }
.node-ny { top: 30%; left: 25%; } .node-lon { top: 25%; left: 48%; }
.node-tok { top: 35%; left: 85%; } .node-syd { top: 75%; left: 88%; } .node-dxb { top: 45%; left: 60%; }

.premium-testimonials { padding: 8rem 2rem; background: #111111; }
.testimonials-glass-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-glass-card {
    background: rgba(255,255,255,0.02); border: 1px solid var(--premium-border);
    padding: 3rem; border-radius: 1.5rem; position: relative; transition: transform 0.3s;
}
.testimonial-glass-card:hover { transform: translateY(-10px); border-color: rgba(251, 191, 36, 0.3); }
.quote-icon { font-size: 2rem; color: rgba(251, 191, 36, 0.2); margin-bottom: 1.5rem; }
.testimonial-glass-card p { font-size: 1.1rem; line-height: 1.8; color: #e2e8f0; margin-bottom: 2rem; font-style: italic; }
.client-info strong { display: block; font-size: 1.2rem; color: var(--premium-yellow); }
.client-info span { color: #64748b; font-size: 0.9rem; }

.final-cta-section { padding: 8rem 2rem; background: #050505; }
.cta-glass-box {
    max-width: 1000px; margin: 0 auto; text-align: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(5,5,5,1) 100%);
    border: 1px solid rgba(251, 191, 36, 0.2); border-radius: 2rem; padding: 5rem 2rem;
}
.cta-glass-box h2 { font-size: 3rem; margin-bottom: 1rem; }
.cta-glass-box p { font-size: 1.2rem; color: #94a3b8; margin-bottom: 3rem; }
.cta-actions { display: flex; justify-content: center; gap: 1.5rem; }

@media (max-width: 1024px) { .testimonials-glass-grid { grid-template-columns: 1fr; } .cta-actions { flex-direction: column; } }
