/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Color Variables */
:root {
    --brand-cyan: hsl(187, 100%, 42%);
    --brand-purple: hsl(285, 27%, 46%);
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* ==================== */
/* INTRO SPLASH SCREEN  */
/* ==================== */
.intro-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1000;
    background: #eff7ff;
}

/* Video Background */
.intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background: linear-gradient(135deg, #1a365d 0%, #2d5a87 50%, #1e4a6d 100%);
}

/* Text container - fallback for accessibility */
.intro-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    pointer-events: none;
    opacity: 0;
}

.intro-text-wrapper {
    text-align: center;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
}

.intro-main-text {
    font-family: 'Inter', Arial Black, Impact, sans-serif;
    font-weight: 900;
    font-size: clamp(60px, 14vw, 220px);
    letter-spacing: 0.08em;
    line-height: 1;
    margin: 0;
    color: transparent;
}

.intro-sub-text {
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(14px, 2.5vw, 36px);
    letter-spacing: 0.4em;
    margin: 1rem 0 0 0;
    color: transparent;
}

/* Light overlay with text cutout - video shows through text shape */
.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #eff7ff;
    z-index: 10;
    transition: opacity 0.2s ease-out;
}

/* Canvas for text mask */
#intro-mask-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* Mobile-specific intro styles */
@media (max-width: 768px) {
    .intro-splash {
        touch-action: pan-y;
    }
    
    #intro-mask-canvas {
        image-rendering: -webkit-optimize-contrast;
    }
    
    .scroll-indicator {
        bottom: 80px;
    }
    
    .scroll-indicator span {
        font-size: 12px;
    }
    
    .intro-contact-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .intro-main-text {
        letter-spacing: 0.04em;
    }
    .intro-sub-text {
        letter-spacing: 0.2em;
    }
}

/* Contact button bottom right */
.intro-contact-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    background: var(--brand-cyan);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 1.5s forwards;
    opacity: 0;
}

.intro-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);
    background: hsl(187, 100%, 38%);
}

.intro-contact-btn svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .intro-contact-btn {
        bottom: 30px;
        right: 20px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    z-index: 20;
    animation: fadeIn 1s ease-out 1s forwards, bounceDown 2s ease-in-out 2s infinite;
    opacity: 0;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-arrow {
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Hidden state after scrolling past */
.intro-splash.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* Navbar hidden on intro */
.navbar.intro-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

/* Body padding for fixed intro */
body.intro-active {
    padding-top: 100vh;
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 30px;
        font-size: 0.75rem;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 50;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

@media (min-width: 1024px) {
    .nav-content {
        height: 6rem;
    }
}

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

.logo-img {
    height: auto;
    width: auto;
    max-height: 45px;
    min-width: 120px;
    max-width: 200px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .logo-img {
        max-height: 50px;
        min-width: 150px;
        max-width: 220px;
    }
}

@media (min-width: 1024px) {
    .nav-logo .logo-img {
        max-height: 55px;
        min-width: 180px;
        max-width: 250px;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-cyan);
}

.nav-cta {
    display: none;
}

@media (min-width: 1024px) {
    .nav-cta {
        display: block;
    }
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background-color: var(--gray-100);
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background-color: var(--gray-600);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid var(--gray-200);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--brand-cyan);
}

.mobile-cta {
    margin-top: 1rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, var(--brand-cyan), var(--brand-purple));
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-outline {
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
    padding: 0.625rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--brand-cyan);
    color: var(--brand-cyan);
}

.btn-large {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: 6rem;
    }
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        padding: 5rem 0;
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.text-gradient-brand {
    background: linear-gradient(to right, var(--brand-cyan), var(--brand-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-number.cyan {
    color: var(--brand-cyan);
}

.stat-number.purple {
    color: var(--brand-purple);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.hero-image {
    position: relative;
}

.hero-main-img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.card-1 {
    top: -1.5rem;
    left: -1.5rem;
}

.card-2 {
    bottom: -1.5rem;
    right: -1.5rem;
    animation-delay: 1s;
}

.status-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.status-indicator.green {
    background-color: #10b981;
}

.truck-icon {
    font-size: 1rem;
}

/* Modern Transport Animation Container */
.transport-animation-container {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-radius: 24px;
    overflow: hidden;
}

/* Location Points */
.location-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
}

.location-start {
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
}

.location-end {
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
}

.location-pin {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff 0%, #9333ea 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    animation: pinFloat 3s ease-in-out infinite;
}

.location-pin.destination {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    animation-delay: 1.5s;
}

.pin-icon {
    font-size: 1.5rem;
}

.pin-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0;
    animation: pinPulse 2s ease-out infinite;
}

@keyframes pinFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pinPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.8); opacity: 0; }
}

.location-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Modern Road */
.modern-road {
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 50px;
    transform: translateY(-50%);
    z-index: 5;
}

.road-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, 
        #4a5568 0%, 
        #2d3748 30%, 
        #1a202c 50%, 
        #2d3748 70%, 
        #4a5568 100%);
    border-radius: 25px;
    box-shadow: 
        inset 0 3px 10px rgba(0,0,0,0.4),
        0 4px 20px rgba(0,0,0,0.2);
}

.road-lanes {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    transform: translateY(-50%);
    overflow: hidden;
}

.lane-marking {
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(
        to right,
        #fbbf24 0px,
        #fbbf24 30px,
        transparent 30px,
        transparent 60px
    );
    animation: laneMove 1.5s linear infinite;
}

@keyframes laneMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-60px); }
}

.road-glow {
    position: absolute;
    top: -10px;
    left: 10%;
    right: 10%;
    height: 70px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Modern Truck */
.modern-truck {
    position: absolute;
    top: 50%;
    left: -120px;
    width: 100px;
    height: 50px;
    transform: translateY(-50%);
    animation: truckDriveModern 5s ease-in-out infinite;
    z-index: 10;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.3));
}

.truck-svg {
    width: 100%;
    height: 100%;
}

@keyframes truckDriveModern {
    0% { 
        left: -120px;
        transform: translateY(-50%) scale(1);
    }
    10% {
        transform: translateY(-50%) scale(1.02);
    }
    50% { 
        left: calc(50% - 50px);
        transform: translateY(-52%) scale(1.05);
    }
    90% {
        transform: translateY(-50%) scale(1.02);
    }
    100% { 
        left: calc(100% + 20px);
        transform: translateY(-50%) scale(1);
    }
}

/* Wheel Animation */
.wheel-group {
    animation: wheelSpin 0.3s linear infinite;
    transform-origin: center;
}

.wheel-rear { transform-origin: 22px 42px; }
.wheel-middle { transform-origin: 48px 42px; }
.wheel-front { transform-origin: 78px 42px; }

@keyframes wheelSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smoke Animation */
.exhaust-smoke .smoke-1,
.exhaust-smoke .smoke-2,
.exhaust-smoke .smoke-3 {
    animation: smokeFloat 1.5s ease-out infinite;
}

.exhaust-smoke .smoke-2 {
    animation-delay: 0.5s;
}

.exhaust-smoke .smoke-3 {
    animation-delay: 1s;
}

@keyframes smokeFloat {
    0% { 
        opacity: 0.4;
        transform: translate(0, 0) scale(1);
    }
    100% { 
        opacity: 0;
        transform: translate(-20px, -15px) scale(2);
    }
}

/* Headlight Glow */
.headlight-glow {
    animation: headlightPulse 1s ease-in-out infinite;
}

@keyframes headlightPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Delivery Progress */
.delivery-progress {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.progress-track {
    width: 200px;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00d4ff 0%, #9333ea 50%, #10b981 100%);
    border-radius: 10px;
    animation: progressMove 5s ease-in-out infinite;
    transform-origin: left;
}

@keyframes progressMove {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(0.5); }
    100% { transform: scaleX(1); }
}

.progress-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-600);
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .transport-animation-container {
        height: 220px;
        padding: 1rem;
    }
    
    .location-pin {
        width: 45px;
        height: 45px;
    }
    
    .pin-icon {
        font-size: 1.2rem;
    }
    
    .location-label {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
    }
    
    .modern-road {
        height: 40px;
        left: 18%;
        right: 18%;
    }
    
    .modern-truck {
        width: 70px;
        height: 35px;
    }
    
    .progress-track {
        width: 150px;
    }
    
    .location-start {
        left: 3%;
    }
    
    .location-end {
        right: 3%;
    }
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slide-up {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce-subtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.animate-fade-in {
    animation: fade-in 0.5s ease-in-out;
}

.animate-slide-up {
    animation: slide-up 0.6s ease-out;
}

.animate-bounce-subtle {
    animation: bounce-subtle 2s infinite;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: cover;
}

.about-animation {
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    background: linear-gradient(to bottom, #87CEEB 0%, #98D8E8 100%);
}

@media (max-width: 768px) {
    .about-animation {
        height: 300px;
    }
}

.about-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.value-icon.cyan {
    background-color: var(--brand-cyan);
}

.value-icon.purple {
    background-color: var(--brand-purple);
}

.value-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.value-desc {
    color: var(--gray-600);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon.cyan-to-purple {
    background: linear-gradient(to right, var(--brand-cyan), var(--brand-purple));
}

.service-icon.purple-to-cyan {
    background: linear-gradient(to right, var(--brand-purple), var(--brand-cyan));
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.check {
    margin-right: 0.5rem;
    width: 1rem;
    height: 1rem;
}

.check.cyan {
    color: var(--brand-cyan);
}

.check.purple {
    color: var(--brand-purple);
}

/* Tracking Section */
.tracking-section {
    padding: 5rem 0;
    background: white;
}

.tracking-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .tracking-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.tracking-form-container {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.input-with-icon {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem;
    padding-right: 3rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.75rem;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 3px rgba(34, 197, 218, 0.1);
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    background: white;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-select:focus {
    outline: none;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 3px rgba(34, 197, 218, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    background: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    resize: none;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 3px rgba(34, 197, 218, 0.1);
}

.tracking-result {
    margin-top: 2rem;
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tracking-result.hidden {
    display: none;
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tracking-number {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.tracking-status {
    background: #dcfce7;
    color: #166534;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.tracking-events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tracking-event {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.event-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.event-indicator.current {
    background-color: #10b981;
}

.event-indicator.past {
    background-color: var(--gray-300);
}

.event-details {
    flex: 1;
}

.event-status {
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.event-time {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.tracking-info {
    padding: 1rem;
    background: #eff6ff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #1e40af;
}

.tracking-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tracking-img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.feature-icon.cyan {
    background-color: var(--brand-cyan);
}

.feature-icon.purple {
    background-color: var(--brand-purple);
}

.feature-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.feature-desc {
    color: var(--gray-600);
}

/* Quote Section */
.quote-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.quote-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .quote-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.quote-form-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-row-3 {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-section {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
}

.form-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--brand-cyan);
}

.checkbox-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.link {
    color: var(--brand-cyan);
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.date-input {
    color: var(--gray-700);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
}

.benefits-img {
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

.benefits-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.benefit-icon.green {
    background-color: #10b981;
}

.benefit-icon.blue {
    background-color: #3b82f6;
}

.benefit-icon.purple {
    background-color: var(--brand-purple);
}

.benefit-icon.cyan {
    background-color: var(--brand-cyan);
}

.benefit-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.benefit-desc {
    color: var(--gray-600);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.info-icon.cyan {
    background-color: var(--brand-cyan);
}

.info-icon.purple {
    background-color: var(--brand-purple);
}

.info-item-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.info-item-text {
    color: var(--gray-600);
    margin: 0;
}

.social-section {
    border-top: 1px solid var(--gray-200);
    padding-top: 2rem;
}

.social-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-link.facebook {
    background-color: #1877f2;
}

.social-link.facebook:hover {
    background-color: #166fe5;
}

.social-link.twitter {
    background-color: #1da1f2;
}

.social-link.twitter:hover {
    background-color: #1a94da;
}

.social-link.linkedin {
    background-color: #0077b5;
}

.social-link.linkedin:hover {
    background-color: #006ba1;
}

.social-link.youtube {
    background-color: #ff0000;
}

.social-link.youtube:hover {
    background-color: #e60000;
}

.contact-form-card {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 4rem 0;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    height: 2.5rem;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--brand-cyan);
    color: white;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--brand-cyan);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d1d5db;
}

.contact-icon {
    color: var(--brand-cyan);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: var(--brand-cyan);
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to right, var(--brand-cyan), var(--brand-purple));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 40;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toast {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--brand-cyan);
    max-width: 400px;
    animation: slide-in-right 0.3s ease;
}

.toast.error {
    border-left-color: #ef4444;
}

.toast-title {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.toast-description {
    color: var(--gray-600);
    font-size: 0.875rem;
}

@keyframes slide-in-right {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.icon {
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

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

    .tracking-grid,
    .quote-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}