:root {
    --bg-dark: #050510;
    --bg-card: rgba(255, 255, 255, 0.05);
    --primary-neon: #00f3ff;
    --secondary-neon: #bc13fe;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Orbitron', 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    background-color: var(--bg-dark);
}

body {
    background-color: transparent;
    /* Allows canvas at z-index -1 to show */
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #050510 0%, #0a0a20 50%, #050510 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatOrb 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-neon) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-neon) 0%, transparent 70%);
    bottom: -200px;
    left: -150px;
    animation-delay: -7s;
    animation-duration: 25s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #4a00e0 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -13s;
    animation-duration: 30s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 50px) scale(0.9);
    }

    75% {
        transform: translate(-50px, -20px) scale(1.05);
    }
}

/* Floating Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particles span {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    background: var(--primary-neon);
    border-radius: 50%;
    animation: rise 15s infinite linear;
    box-shadow: 0 0 10px var(--primary-neon), 0 0 20px var(--primary-neon);
}

.particles span:nth-child(odd) {
    background: var(--secondary-neon);
    box-shadow: 0 0 10px var(--secondary-neon), 0 0 20px var(--secondary-neon);
}

.particles span:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particles span:nth-child(2) {
    left: 15%;
    animation-delay: -2s;
    animation-duration: 14s;
    width: 3px;
    height: 3px;
}

.particles span:nth-child(3) {
    left: 25%;
    animation-delay: -4s;
    animation-duration: 11s;
}

.particles span:nth-child(4) {
    left: 35%;
    animation-delay: -6s;
    animation-duration: 16s;
    width: 5px;
    height: 5px;
}

.particles span:nth-child(5) {
    left: 45%;
    animation-delay: -8s;
    animation-duration: 13s;
}

.particles span:nth-child(6) {
    left: 55%;
    animation-delay: -10s;
    animation-duration: 15s;
    width: 3px;
    height: 3px;
}

.particles span:nth-child(7) {
    left: 65%;
    animation-delay: -1s;
    animation-duration: 12s;
}

.particles span:nth-child(8) {
    left: 75%;
    animation-delay: -3s;
    animation-duration: 17s;
    width: 6px;
    height: 6px;
}

.particles span:nth-child(9) {
    left: 85%;
    animation-delay: -5s;
    animation-duration: 14s;
}

.particles span:nth-child(10) {
    left: 95%;
    animation-delay: -7s;
    animation-duration: 11s;
    width: 4px;
    height: 4px;
}

.particles span:nth-child(11) {
    left: 10%;
    animation-delay: -9s;
    animation-duration: 18s;
}

.particles span:nth-child(12) {
    left: 20%;
    animation-delay: -11s;
    animation-duration: 13s;
    width: 3px;
    height: 3px;
}

.particles span:nth-child(13) {
    left: 30%;
    animation-delay: -1.5s;
    animation-duration: 16s;
}

.particles span:nth-child(14) {
    left: 40%;
    animation-delay: -4.5s;
    animation-duration: 12s;
    width: 5px;
    height: 5px;
}

.particles span:nth-child(15) {
    left: 50%;
    animation-delay: -7.5s;
    animation-duration: 15s;
}

.particles span:nth-child(16) {
    left: 60%;
    animation-delay: -2.5s;
    animation-duration: 14s;
    width: 4px;
    height: 4px;
}

.particles span:nth-child(17) {
    left: 70%;
    animation-delay: -5.5s;
    animation-duration: 17s;
}

.particles span:nth-child(18) {
    left: 80%;
    animation-delay: -8.5s;
    animation-duration: 11s;
    width: 3px;
    height: 3px;
}

.particles span:nth-child(19) {
    left: 90%;
    animation-delay: -3.5s;
    animation-duration: 13s;
}

.particles span:nth-child(20) {
    left: 3%;
    animation-delay: -6.5s;
    animation-duration: 16s;
    width: 5px;
    height: 5px;
}

@keyframes rise {
    0% {
        bottom: -10%;
        opacity: 0;
        transform: translateX(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        bottom: 110%;
        opacity: 0;
        transform: translateX(50px);
    }
}

/* Ensure content is above background */
nav,
header,
section,
footer {
    position: relative;
    z-index: 2;
}



/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight {
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Navbar */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 5, 16, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-neon);
}

.cta-btn-small {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-neon);
    border-radius: 50px;
    color: var(--primary-neon) !important;
    transition: all 0.3s;
}

.cta-btn-small:hover {
    background: var(--primary-neon);
    color: #000 !important;
    box-shadow: 0 0 15px var(--primary-neon);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    padding-top: 80px;
    /* Account for fixed nav */
}

.hero-content {
    flex: 1;
    z-index: 10;
    max-width: 600px;
    /* Prevent text from overlapping form */
}

.glitch-text {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Animated Subtitle - Gradient Text Animation */
.animated-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(90deg,
            var(--primary-neon) 0%,
            #fff 25%,
            var(--secondary-neon) 50%,
            #fff 75%,
            var(--primary-neon) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s linear infinite, subtitleGlow 2s ease-in-out infinite;
    position: relative;
}

.animated-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-neon), var(--secondary-neon), var(--primary-neon), transparent);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes subtitleGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(0, 243, 255, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.8)) drop-shadow(0 0 40px rgba(188, 19, 254, 0.5));
    }
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.hero-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(188, 19, 254, 0.3);
    border-radius: 12px;
    position: relative;
    flex: 1;
    animation: statFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.8s;
}


.stat-item:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--secondary-neon);
    box-shadow: 0 10px 30px rgba(188, 19, 254, 0.3);
}

@keyframes statFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    50%,
    100% {
        left: 100%;
    }
}

.stat-item .count {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-neon);
    animation: countGlow 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes countGlow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(188, 19, 254, 0.5);
    }

    50% {
        text-shadow: 0 0 25px rgba(188, 19, 254, 0.9), 0 0 50px rgba(188, 19, 254, 0.5);
    }
}

@keyframes countPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(188, 19, 254, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(188, 19, 254, 0.8)) drop-shadow(0 0 25px rgba(255, 0, 255, 0.4));
    }
}

.stat-item .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.cta-btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.primary-glow {
    background: linear-gradient(45deg, var(--primary-neon), #00a8ff);
    color: #050510;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.primary-glow:hover {
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.6);
    transform: translateY(-2px);
}

.secondary-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    backdrop-filter: blur(5px);
}

.secondary-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Align form to right */
    align-items: center;
    z-index: 10;
}

.hologram-circle {
    width: 500px;
    height: 500px;
    border: 2px solid rgba(0, 243, 255, 0.2);
    border-radius: 50%;
    position: absolute;
    animation: rotateCircle 20s linear infinite;
}

.hologram-circle::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-neon);
    border-bottom: 2px solid var(--secondary-neon);
    border-radius: 50%;
    animation: rotateCircle 10s linear infinite reverse;
}

@keyframes rotateCircle {
    to {
        transform: rotate(360deg);
    }
}

.hero-img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.3));
    z-index: 5;
    position: relative;
}

/* Services */
.services-section {
    padding: 3.5rem 10%;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.glass-panel:hover {
    transform: translateY(-10px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.glass-panel:hover::before {
    opacity: 1;
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: var(--text-muted);
}

/* Process Timeline - Animated */
.process-section {
    padding: 3.5rem 10%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    overflow: hidden;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

/* Animated connecting line */
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-neon), var(--secondary-neon));
    opacity: 0.2;
}

/* Animated progress line overlay */
.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary-neon), var(--secondary-neon));
    animation: progressLine 3s ease-out forwards;
    box-shadow: 0 0 15px var(--primary-neon);
}

@keyframes progressLine {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.5s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.8s;
}

.timeline-item:nth-child(4) {
    animation-delay: 1.1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-item:nth-child(odd) .content {
    margin-right: 50%;
    padding-right: 3rem;
    text-align: right;
    transform-origin: right center;
}

.timeline-item:nth-child(even) .content {
    margin-left: 50%;
    padding-left: 3rem;
    text-align: left;
    transform-origin: left center;
}

/* Interactive content cards */
.timeline-item .content {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.timeline-item .content:hover {
    background: rgba(0, 243, 255, 0.05);
    border-color: rgba(0, 243, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.15);
}

/* Animated number circles */
.timeline-item .number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 3px solid var(--primary-neon);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-neon);
    z-index: 5;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(1) .number {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(2) .number {
    animation-delay: 0.6s;
}

.timeline-item:nth-child(3) .number {
    animation-delay: 0.9s;
}

.timeline-item:nth-child(4) .number {
    animation-delay: 1.2s;
}

@keyframes popIn {
    0% {
        transform: translateX(-50%) scale(0) rotate(-180deg);
    }

    100% {
        transform: translateX(-50%) scale(1) rotate(0deg);
    }
}

/* Hover effect on number */
.timeline-item:hover .number {
    transform: translateX(-50%) scale(1.2);
    background: var(--primary-neon);
    color: var(--bg-dark);
    box-shadow: 0 0 30px var(--primary-neon), 0 0 60px rgba(0, 243, 255, 0.3);
}

/* Pulse animation for numbers */
.timeline-item .number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-neon);
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.timeline-item h3 {
    color: var(--primary-neon);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    transition: text-shadow 0.3s;
}

.timeline-item:hover h3 {
    text-shadow: 0 0 20px var(--primary-neon);
}

.timeline-item p {
    color: var(--text-muted);
    transition: color 0.3s;
}

.timeline-item:hover p {
    color: #fff;
}

/* Mobile responsive */
@media (max-width: 768px) {

    .timeline::before,
    .timeline::after {
        left: 20px;
    }

    .timeline-item .number {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .timeline-item:nth-child(odd) .content,
    .timeline-item:nth-child(even) .content {
        margin: 0 0 0 60px;
        padding: 1rem;
        text-align: left;
    }
}

/* Contact Form */
.contact-section {
    padding: 3.5rem 10%;
    display: flex;
    justify-content: center;
}

.contact-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.contact-container h2 {
    margin-bottom: 3rem;
}

#bookingForm {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-group {
    position: relative;
    text-align: left;
}

input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    color: #fff;
    font-size: 1.1rem;
    outline: none;
    font-family: var(--font-body);
}

input:focus~.border-glow {
    transform: scaleX(1);
}

input:focus~label,
input:valid~label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--primary-neon);
}

label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s ease;
}

.border-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-neon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px var(--primary-neon);
}

/* Footer */
footer {
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 5rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(5, 5, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.5rem;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(0, 243, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        z-index: 999;
        animation: slideDown 0.3s ease-out;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links .cta-btn {
        margin-top: 0.5rem;
        justify-content: center;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
    }

    .mobile-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-neon);
        border-radius: 3px;
        transition: all 0.3s;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
        height: auto;
        /* Allow auto height for content */
        padding-bottom: 4rem;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .glitch-text {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-visual {
        width: 100%;
        justify-content: center;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .cta-group {
        justify-content: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 20px;
    }

    .timeline-item:nth-child(odd) .content,
    .timeline-item:nth-child(even) .content {
        margin: 0;
        padding-left: 2rem;
        text-align: left;
    }

    .timeline-item .number {
        left: 0;
        transform: none;
    }
}

/* Logo Image Styles */
/* Logo Animations */
.logo-container {
    position: relative;
    width: 250px;
    /* Adjust based on aspect ratio */
    height: 60px;
    display: block;
    cursor: pointer;
}

.logo-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}

.logo-text {
    background-image: url('assets/logo_text.png');
    z-index: 10;
    filter: drop-shadow(0 0 5px rgba(0, 0, 255, 0.3));
    animation: textShine 5s infinite linear;
}

.logo-kangaroo {
    background-image: url('assets/logo_kangaroo.png');
    z-index: 11;
    filter: drop-shadow(0 0 5px rgba(255, 255, 0, 0.3));
    animation: kangarooPulse 3s infinite ease-in-out;
    transform-origin: center bottom;
}

.logo-container:hover .logo-kangaroo {
    animation: kangarooHop 0.5s ease infinite alternate;
    filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.8));
}

.logo-container:hover .logo-text {
    filter: drop-shadow(0 0 15px rgba(0, 243, 255, 0.6));
}

@keyframes kangarooPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    }
}

@keyframes kangarooHop {
    0% {
        transform: translateY(0) scale(1.05);
    }

    100% {
        transform: translateY(-3px) scale(1.05);
    }
}

@keyframes textShine {
    0% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(0, 0, 255, 0.3));
    }

    50% {
        filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 0, 255, 0.5));
    }

    100% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(0, 0, 255, 0.3));
    }
}

.nav-links {
    margin-left: 2rem;
    /* Add spacing if logo grows */
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.8), 0 0 60px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    width: 35px;
    height: 35px;
}

/* Pulse Animation */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: pulse-green 2s infinite;
}

.whatsapp-btn:hover {
    animation: none;
}

/* WhatsApp Hero CTA */
.whatsapp-cta {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #fff;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-cta:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #128C7E, #25D366);
}

/* Pricing Card Styles */
/* Pricing Card Styles */
.pricing-card {
    position: relative;
    padding: 3.5rem 2rem 2rem 2rem;
    /* Adjusted padding */
    display: flex;
    flex-direction: column;
    min-height: 550px;
    /* Ensure uniform height */
    justify-content: space-between;
}

.best-price-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--primary-neon);
    color: #000;
    padding: 0.5rem 3.5rem;
    font-weight: 700;
    font-size: 0.8rem;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 5;
}

.service-subtitle {
    color: var(--primary-neon);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.price-header {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-main {
    display: block;
    font-size: 1.4rem;
    /* Slightly smaller to prevent wrap */
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 0.3rem;
}

.price-distance {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pricing-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.item-name {
    color: var(--text-muted);
}

.item-price {
    color: var(--secondary-neon);
    font-weight: 600;
}

.full-width-btn {
    width: 100%;
    text-align: center;
    display: block;
    margin-top: auto;
    white-space: nowrap;
    /* Prevent wrapping */
    padding: 1rem 1rem;
    /* Adjust padding */
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.price-footer {
    text-align: center;
    font-size: 0.75rem !important;
    margin-top: 1rem;
    opacity: 0.6;
    font-style: italic;
    margin-bottom: 0;
}

/* Futuristic Icons */
.f-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Home Icon */
.home-icon .walls {
    width: 40px;
    height: 30px;
    border: 2px solid var(--primary-neon);
    position: absolute;
    bottom: 2px;
    box-shadow: 0 0 10px var(--primary-neon), inset 0 0 10px var(--primary-neon);
}

.home-icon .roof {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 25px solid var(--secondary-neon);
    position: absolute;
    top: 2px;
    filter: drop-shadow(0 -5px 10px var(--secondary-neon));
    animation: neonPulse 2s infinite alternate;
}

.home-icon .door {
    width: 12px;
    height: 18px;
    border: 1px solid var(--text-muted);
    position: absolute;
    bottom: 2px;
    background: rgba(255, 255, 255, 0.1);
}

/* Car Icon */
.car-icon .car-body {
    width: 50px;
    height: 20px;
    border: 2px solid var(--primary-neon);
    border-radius: 10px 10px 0 0;
    position: absolute;
    bottom: 12px;
    box-shadow: 0 0 10px var(--primary-neon);
    background: linear-gradient(to right, transparent, rgba(0, 243, 255, 0.2));
}

/* Contact Form in Hero */
.contact-container {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.contact-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: var(--font-heading);
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    border-radius: 4px 4px 0 0;
    outline: none;
    transition: all 0.3s;
}

.input-group input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-neon);
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.3s;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label {
    top: -10px;
    left: 0;
    font-size: 0.75rem;
    color: var(--primary-neon);
}

.border-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-neon);
    transition: width 0.3s;
}

.input-group input:focus~.border-glow {
    width: 100%;
}

.car-icon .car-body::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 10px;
    width: 30px;
    height: 10px;
    border: 2px solid var(--primary-neon);
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

.car-icon .wheel {
    width: 12px;
    height: 12px;
    border: 2px solid var(--secondary-neon);
    border-radius: 50%;
    position: absolute;
    bottom: 2px;
    animation: spinWheel 1s linear infinite;
    border-top-color: transparent;
}

.car-icon .wheel.front {
    right: 5px;
}

.car-icon .wheel.back {
    left: 5px;
}

.car-icon .speed-lines {
    position: absolute;
    right: -10px;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--text-muted);
    box-shadow: 0 5px 0 var(--text-muted), 0 -5px 0 var(--text-muted);
    opacity: 0;
    animation: speedLines 1s linear infinite;
}

/* Bike Icon */
.bike-icon .bike-body {
    width: 40px;
    height: 10px;
    border: 2px solid var(--primary-neon);
    position: absolute;
    bottom: 15px;
    transform: rotate(-10deg);
}

.bike-icon .handle {
    width: 15px;
    height: 2px;
    background: var(--secondary-neon);
    position: absolute;
    top: 15px;
    right: 15px;
    transform: rotate(-45deg);
}

.bike-icon .wheel {
    width: 16px;
    height: 16px;
    border: 2px solid var(--secondary-neon);
    border-radius: 50%;
    position: absolute;
    bottom: 2px;
    animation: spinWheel 0.5s linear infinite;
    border-bottom-color: transparent;
}

.bike-icon .wheel.front {
    right: 0;
}

.bike-icon .wheel.back {
    left: 0;
}

/* Animations */
@keyframes neonPulse {
    from {
        opacity: 0.8;
        filter: drop-shadow(0 0 5px var(--secondary-neon));
    }

    to {
        opacity: 1;
        filter: drop-shadow(0 0 15px var(--secondary-neon));
    }
}

@keyframes spinWheel {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes speedLines {
    0% {
        transform: translateX(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(-10px);
        opacity: 0;
    }
}

/* Commercial Clients Section */
.clients-section {
    padding: 3.5rem 10%;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.05), transparent 70%);
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.client-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    min-width: 150px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.client-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.client-item:hover {
    color: #fff;
    border-color: var(--secondary-neon);
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.3);
    transform: translateY(-5px);
    text-shadow: 0 0 8px var(--secondary-neon);
}

.client-item:hover::before {
    left: 100%;
}


/* Testimonials Section */
.testimonials-section {
    padding: 3.5rem 0;
    /* Full width scroll requires 0 side padding initially */
    background: radial-gradient(circle at center, rgba(188, 19, 254, 0.05), transparent 70%);
}

.testimonial-category {
    margin-bottom: 4rem;
}

.category-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-neon);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #000, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #000, transparent);
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.marquee-track.move-left {
    animation: scrollLeft 40s linear infinite;
}

.marquee-track.move-right {
    animation: scrollRight 40s linear infinite;
}

/* Pause animation on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.user-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-neon), var(--primary-neon));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #000;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.review-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.review-content .route {
    font-size: 0.8rem;
    color: var(--primary-neon);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-content .comment {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assumes duplication makes width 200% of visible */
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 1.5rem;
    }
}

/* ===============================
   SEO CONTENT SECTIONS
   =============================== */

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Us Section - Animated */
.why-us-section {
    padding: 3.5rem 5%;
    background: radial-gradient(ellipse at center, rgba(0, 243, 255, 0.03) 0%, transparent 70%);
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
    cursor: pointer;
}

.trust-card:nth-child(1) {
    animation-delay: 0.1s;
}

.trust-card:nth-child(2) {
    animation-delay: 0.2s;
}

.trust-card:nth-child(3) {
    animation-delay: 0.3s;
}

.trust-card:nth-child(4) {
    animation-delay: 0.4s;
}

.trust-card:nth-child(5) {
    animation-delay: 0.5s;
}

.trust-card:nth-child(6) {
    animation-delay: 0.6s;
}

.trust-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.15);
    border-color: rgba(0, 243, 255, 0.3);
}

/* Icon Container */
.trust-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-icon {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.trust-card:hover .animated-icon {
    transform: scale(1.15);
}

/* IBA Checkmark Icon */
.iba-icon {
    border: 3px solid var(--primary-neon);
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    animation: pulseGlow 2s infinite;
}

.iba-icon .checkmark {
    width: 25px;
    height: 15px;
    border-left: 4px solid var(--primary-neon);
    border-bottom: 4px solid var(--primary-neon);
    transform: rotate(-45deg) translate(2px, -2px);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 35px rgba(0, 243, 255, 0.6);
    }
}

/* Shield Icon */
.shield-icon {
    position: relative;
}

.shield-icon .shield-body {
    width: 40px;
    height: 50px;
    background: linear-gradient(180deg, var(--primary-neon) 0%, var(--secondary-neon) 100%);
    clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
    opacity: 0.8;
    animation: shieldPulse 2s infinite;
}

.shield-icon .shield-check {
    position: absolute;
    width: 15px;
    height: 10px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -5px;
}

@keyframes shieldPulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

/* GPS Pin Icon */
.gps-icon {
    position: relative;
}

.gps-icon .gps-pin {
    width: 30px;
    height: 40px;
    background: var(--secondary-neon);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: bounce 1.5s infinite;
}

.gps-icon .gps-pin::after {
    content: '';
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.gps-icon .gps-pulse {
    position: absolute;
    bottom: -5px;
    width: 40px;
    height: 10px;
    background: rgba(188, 19, 254, 0.3);
    border-radius: 50%;
    animation: gpsPulse 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes gpsPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

/* Star Icon */
.star-icon {
    position: relative;
}

.star-icon .star {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #FFD700;
    position: relative;
    animation: starSpin 4s linear infinite;
}

.star-icon .star::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 35px solid #FFD700;
    position: absolute;
    top: 12px;
    left: -20px;
}

.star-icon .star-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s infinite;
}

@keyframes starSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Trophy Icon */
.trophy-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trophy-icon .trophy-cup {
    width: 35px;
    height: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 0 0 50% 50%;
    position: relative;
    animation: trophyShine 2s infinite;
}

.trophy-icon .trophy-cup::before,
.trophy-icon .trophy-cup::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 15px;
    border: 3px solid #FFD700;
    border-radius: 50%;
    top: 5px;
}

.trophy-icon .trophy-cup::before {
    left: -15px;
}

.trophy-icon .trophy-cup::after {
    right: -15px;
}

.trophy-icon .trophy-base {
    width: 25px;
    height: 8px;
    background: #FFD700;
    margin-top: 5px;
    border-radius: 2px;
}

@keyframes trophyShine {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.4);
    }
}

/* Rupee/Price Icon */
.price-icon {
    border: 3px solid var(--secondary-neon);
    border-radius: 50%;
    background: rgba(188, 19, 254, 0.1);
    position: relative;
}

.price-icon .rupee-symbol {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-neon);
    font-family: var(--font-heading);
}

.price-icon .price-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary-neon);
    border-radius: 50%;
    animation: ringExpand 2s infinite;
    opacity: 0;
}

@keyframes ringExpand {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.trust-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-neon);
    transition: text-shadow 0.3s;
}

.trust-card:hover h3 {
    text-shadow: 0 0 15px var(--primary-neon);
}

.trust-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.trust-card:hover p {
    color: #fff;
}

/* Service Areas Section - Animated */
.service-areas-section {
    padding: 3.5rem 5%;
    overflow: hidden;
}

.area-region {
    max-width: 1200px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.area-region:nth-child(2) {
    animation-delay: 0.1s;
}

.area-region:nth-child(3) {
    animation-delay: 0.2s;
}

.area-region:nth-child(4) {
    animation-delay: 0.3s;
}

.area-region:nth-child(5) {
    animation-delay: 0.4s;
}

.region-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--secondary-neon);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(188, 19, 254, 0.3);
    position: relative;
    display: block;
    text-align: center;
}

.region-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-neon);
    animation: expandLine 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes expandLine {
    to {
        width: 100%;
    }
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.area-card {
    padding: 0.7rem 1.3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.4s ease-out forwards;
    position: relative;
    overflow: hidden;
}

/* Stagger animation for area cards */
.areas-grid .area-card:nth-child(1) {
    animation-delay: 0.05s;
}

.areas-grid .area-card:nth-child(2) {
    animation-delay: 0.1s;
}

.areas-grid .area-card:nth-child(3) {
    animation-delay: 0.15s;
}

.areas-grid .area-card:nth-child(4) {
    animation-delay: 0.2s;
}

.areas-grid .area-card:nth-child(5) {
    animation-delay: 0.25s;
}

.areas-grid .area-card:nth-child(6) {
    animation-delay: 0.3s;
}

.areas-grid .area-card:nth-child(7) {
    animation-delay: 0.35s;
}

.areas-grid .area-card:nth-child(8) {
    animation-delay: 0.4s;
}

.areas-grid .area-card:nth-child(9) {
    animation-delay: 0.45s;
}

.areas-grid .area-card:nth-child(10) {
    animation-delay: 0.5s;
}

.areas-grid .area-card:nth-child(11) {
    animation-delay: 0.55s;
}

.areas-grid .area-card:nth-child(12) {
    animation-delay: 0.6s;
}

.areas-grid .area-card:nth-child(13) {
    animation-delay: 0.65s;
}

.areas-grid .area-card:nth-child(14) {
    animation-delay: 0.7s;
}

.areas-grid .area-card:nth-child(15) {
    animation-delay: 0.75s;
}

.areas-grid .area-card:nth-child(16) {
    animation-delay: 0.8s;
}

.areas-grid .area-card:nth-child(17) {
    animation-delay: 0.85s;
}

.areas-grid .area-card:nth-child(18) {
    animation-delay: 0.9s;
}

/* Shimmer effect on hover */
.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 243, 255, 0.2), transparent);
    transition: left 0.5s;
}

.area-card:hover::before {
    left: 100%;
}

.area-card:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--primary-neon);
    color: var(--primary-neon);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 243, 255, 0.2);
}

/* Route Pricing Section */
.route-pricing-section {
    padding: 3.5rem 5%;
    background: radial-gradient(ellipse at bottom, rgba(188, 19, 254, 0.05) 0%, transparent 70%);
}

.pricing-table-container {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table th {
    background: rgba(0, 243, 255, 0.1);
    color: var(--primary-neon);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #fff;
}

.pricing-table td {
    color: var(--text-muted);
}

.pricing-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.pricing-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-note a {
    color: var(--primary-neon);
    text-decoration: none;
}

.pricing-note a:hover {
    text-decoration: underline;
}

/* What We Move Section */
.what-we-move-section {
    padding: 3.5rem 5%;
    background: radial-gradient(ellipse at center, rgba(188, 19, 254, 0.03) 0%, transparent 70%);
}

.move-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.move-card {
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.move-card:nth-child(1) {
    animation-delay: 0.1s;
}

.move-card:nth-child(2) {
    animation-delay: 0.2s;
}

.move-card:nth-child(3) {
    animation-delay: 0.3s;
}

.move-card:nth-child(4) {
    animation-delay: 0.4s;
}

.move-card:nth-child(5) {
    animation-delay: 0.5s;
}

.move-card:nth-child(6) {
    animation-delay: 0.6s;
}

.move-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 243, 255, 0.15);
    border-color: rgba(0, 243, 255, 0.3);
}

/* Move Icon Container */
.move-icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-move-icon {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.move-card:hover .animated-move-icon {
    transform: scale(1.15);
}

/* Household Icon - House with Glow */
.household-icon {
    position: relative;
}

.household-icon .house-roof {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 20px solid var(--primary-neon);
    filter: drop-shadow(0 0 8px var(--primary-neon));
}

.household-icon .house-body {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 25px;
    background: linear-gradient(180deg, var(--primary-neon), rgba(0, 243, 255, 0.5));
    border-radius: 2px;
}

.household-icon .house-door {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 15px;
    background: var(--bg-dark);
    border-radius: 2px 2px 0 0;
}

/* Electronics Icon - Screen with Scan Lines */
.electronics-icon {
    position: relative;
}

.electronics-icon .screen {
    width: 45px;
    height: 35px;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    border: 2px solid var(--primary-neon);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4), inset 0 0 10px rgba(0, 243, 255, 0.1);
}

.electronics-icon .screen-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.2) 0%, transparent 70%);
    animation: screenPulse 2s infinite;
}

.electronics-icon .screen-lines {
    position: absolute;
    width: 35px;
    height: 2px;
    background: var(--primary-neon);
    opacity: 0.8;
    animation: scanLine 1.5s infinite;
}

@keyframes screenPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes scanLine {
    0% {
        transform: translateY(-15px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Fragile Icon - Diamond with Sparkles */
.fragile-icon {
    position: relative;
}

.fragile-icon .diamond {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--secondary-neon), rgba(188, 19, 254, 0.6));
    transform: rotate(45deg);
    box-shadow: 0 0 20px var(--secondary-neon);
    animation: diamondGlow 2s infinite;
}

.diamond-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: sparkle 1.5s infinite;
}

.sparkle-1 {
    top: 0;
    right: 5px;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 10px;
    left: 0;
    animation-delay: 0.3s;
}

.sparkle-3 {
    bottom: 5px;
    right: 0;
    animation-delay: 0.6s;
}

@keyframes diamondGlow {

    0%,
    100% {
        box-shadow: 0 0 20px var(--secondary-neon);
    }

    50% {
        box-shadow: 0 0 35px var(--secondary-neon), 0 0 50px rgba(188, 19, 254, 0.5);
    }
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Office Icon - Building with Scan */
.office-icon {
    position: relative;
}

.office-icon .building {
    width: 35px;
    height: 45px;
    background: linear-gradient(180deg, var(--primary-neon), rgba(0, 243, 255, 0.3));
    border-radius: 3px 3px 0 0;
    position: relative;
}

.office-icon .building-windows {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 30px;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 5px,
            rgba(0, 0, 0, 0.5) 5px,
            rgba(0, 0, 0, 0.5) 8px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 7px,
            rgba(0, 0, 0, 0.5) 7px,
            rgba(0, 0, 0, 0.5) 10px);
}

.office-icon .building-scan {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-neon);
    box-shadow: 0 0 10px var(--primary-neon);
    animation: buildingScan 2s infinite;
}

@keyframes buildingScan {
    0% {
        bottom: 0;
        opacity: 1;
    }

    100% {
        bottom: 100%;
        opacity: 0;
    }
}

/* Vehicle Icon - Car with Speed Lines */
.vehicle-icon {
    position: relative;
    width: 60px;
    height: 40px;
}

.vehicle-icon .car-body {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 15px;
    background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
    border-radius: 5px 15px 3px 3px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.vehicle-icon .car-body::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 8px;
    width: 20px;
    height: 10px;
    background: inherit;
    border-radius: 3px 8px 0 0;
}

.vehicle-icon .car-wheel {
    position: absolute;
    bottom: 5px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid var(--primary-neon);
    animation: wheelSpin 0.5s linear infinite;
}

.vehicle-icon .wheel-front {
    left: 12px;
}

.vehicle-icon .wheel-back {
    right: 12px;
}

.vehicle-icon .car-speed-lines {
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-neon));
    opacity: 0;
    animation: speedLines 0.8s infinite;
}

.vehicle-icon .car-speed-lines::before,
.vehicle-icon .car-speed-lines::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: inherit;
}

.vehicle-icon .car-speed-lines::before {
    top: -6px;
    left: -3px;
}

.vehicle-icon .car-speed-lines::after {
    top: 6px;
    left: -3px;
}

@keyframes wheelSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes speedLines {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(0);
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0;
        transform: translateY(-50%) translateX(-10px);
    }
}

/* Plants Icon - Growing Plant */
.plants-icon {
    position: relative;
}

.plants-icon .pot {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 15px;
    background: linear-gradient(180deg, #8B4513, #5D3A1A);
    border-radius: 0 0 5px 5px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.plants-icon .plant-stem {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 25px;
    background: linear-gradient(180deg, #00ff00, #006600);
    border-radius: 2px;
}

.plants-icon .plant-leaf {
    position: absolute;
    width: 15px;
    height: 8px;
    background: linear-gradient(90deg, #00ff00, #00cc00);
    border-radius: 50% 50% 50% 50% / 80% 80% 20% 20%;
    animation: leafSway 2s ease-in-out infinite;
}

.plants-icon .leaf-1 {
    top: 10px;
    left: 18px;
    transform: rotate(-30deg);
}

.plants-icon .leaf-2 {
    top: 18px;
    right: 18px;
    transform: rotate(30deg) scaleX(-1);
    animation-delay: 0.5s;
}

.plants-icon .plant-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.2) 0%, transparent 70%);
    animation: plantGlow 2s infinite;
}

@keyframes leafSway {

    0%,
    100% {
        transform: rotate(-30deg);
    }

    50% {
        transform: rotate(-20deg);
    }
}

@keyframes plantGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

.move-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-neon);
    font-family: var(--font-heading);
}

.move-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.move-list li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.move-list li:last-child {
    border-bottom: none;
}

.move-card:hover .move-list li {
    color: #fff;
}

.move-list li::before {
    content: '✓ ';
    color: var(--secondary-neon);
    font-weight: bold;
}

/* Special Handling Note */
.special-handling-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(188, 19, 254, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.note-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.special-handling-note p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.special-handling-note strong {
    color: var(--primary-neon);
}

@media (max-width: 768px) {
    .move-categories-grid {
        grid-template-columns: 1fr;
    }

    .special-handling-note {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 3.5rem 5%;
    background: radial-gradient(ellipse at top, rgba(0, 243, 255, 0.03) 0%, transparent 70%);
}

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

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #fff;
    list-style: none;
    position: relative;
    transition: background 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-neon);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item summary:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-item p {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Enhancement */
.footer-keywords {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* SEO Footer Styles */
.minimal-footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, #0a0a0f 100%);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    padding: 2rem 5%;
    text-align: center;
}

.minimal-footer .footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.minimal-footer .footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-neon);
    margin-bottom: 0.3rem;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.minimal-footer .footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-contact-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--primary-neon);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-link:hover {
    color: var(--secondary-neon);
    text-shadow: 0 0 10px var(--secondary-neon);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-contact-row {
        gap: 1rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }
}

/* Mobile Responsiveness for SEO Sections */
@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .trust-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .areas-grid {
        justify-content: center;
    }

    .faq-item summary {
        padding-right: 3rem;
    }

    .seo-footer {
        padding: 2rem 3% 1.5rem;
    }

    .seo-links {
        font-size: 0.75rem;
        line-height: 1.6;
    }

    .footer-brand h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ============================================ */

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {

    /* Base Typography */
    html {
        font-size: 14px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 80px 4% 3rem;
        min-height: auto;
    }

    .glitch-text {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 0.8rem;
    }

    .cta-group .cta-btn {
        width: 100%;
        justify-content: center;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 2.5rem 4%;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem 1.5rem;
        min-height: auto;
    }

    .price-main {
        font-size: 1.2rem;
    }

    .pricing-list li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }

    .full-width-btn {
        padding: 0.9rem;
        font-size: 0.85rem;
    }

    /* Process Timeline Mobile */
    .process-section {
        padding: 2.5rem 4%;
    }

    .timeline-item .content {
        padding: 1rem;
    }

    .timeline-item .content h4 {
        font-size: 1rem;
    }

    .timeline-item .content p {
        font-size: 0.85rem;
    }

    /* Contact Section Mobile */
    .contact-section {
        padding: 2.5rem 4%;
    }

    .contact-container {
        padding: 1.5rem 1rem;
    }

    .contact-container h2 {
        font-size: 1.4rem;
    }

    /* Clients Section Mobile */
    .clients-section {
        padding: 2.5rem 4%;
    }

    .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-card {
        padding: 0.8rem;
    }

    .client-card img {
        height: 30px;
    }

    /* Testimonials Mobile */
    .testimonials-section {
        padding: 2.5rem 0;
    }

    .testimonial-card {
        width: 280px;
        padding: 1.5rem;
    }

    .testimonial-card p {
        font-size: 0.9rem;
    }

    /* Why Choose Us Mobile */
    .why-us-section {
        padding: 2.5rem 4%;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-card {
        padding: 1.5rem;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
    }

    .trust-card h3 {
        font-size: 1rem;
    }

    .trust-card p {
        font-size: 0.85rem;
    }

    /* Service Areas Mobile */
    .service-areas-section {
        padding: 2.5rem 4%;
    }

    .areas-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .region-box {
        padding: 1.5rem;
    }

    .region-title {
        font-size: 1.1rem;
    }

    .area-card {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Route Pricing Mobile */
    .route-pricing-section {
        padding: 2.5rem 4%;
    }

    .pricing-table {
        font-size: 0.8rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem 0.4rem;
    }

    /* What We Move Mobile */
    .what-we-move-section {
        padding: 2.5rem 4%;
    }

    .move-categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .move-card {
        padding: 1.5rem;
    }

    .move-icon-container {
        width: 60px;
        height: 60px;
    }

    .animated-move-icon {
        width: 45px;
        height: 45px;
    }

    .move-card h3 {
        font-size: 1rem;
    }

    .move-list li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .special-handling-note {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.5rem;
    }

    .special-handling-note p {
        font-size: 0.85rem;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 2.5rem 4%;
    }

    .faq-container {
        gap: 0.8rem;
    }

    .faq-item summary {
        padding: 1rem;
        font-size: 0.9rem;
        padding-right: 2.5rem;
    }

    .faq-item p {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    /* Footer Mobile */
    .minimal-footer {
        padding: 1.5rem 4%;
    }

    .footer-brand h3 {
        font-size: 1.1rem;
    }

    .footer-brand p {
        font-size: 0.8rem;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    /* WhatsApp Button Mobile */
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
}

/* Touch-Friendly Improvements */
@media (hover: none) and (pointer: coarse) {

    /* Larger touch targets */
    .cta-btn {
        min-height: 48px;
        padding: 0.9rem 1.5rem;
    }

    .nav-links a {
        padding: 0.8rem 1rem;
    }

    .area-card {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .faq-item summary {
        min-height: 48px;
    }

    .footer-link {
        padding: 0.5rem;
        display: inline-block;
    }

    /* Remove hover effects that don't work well on touch */
    .service-card:hover,
    .trust-card:hover,
    .move-card:hover {
        transform: none;
    }

    /* Add active states for touch feedback */
    .cta-btn:active {
        transform: scale(0.98);
    }

    .glass-panel:active {
        transform: scale(0.99);
    }
}

/* Tablet Portrait (max-width: 900px) */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .move-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-visual {
        display: none;
    }
}