/* ============================================
   CSS RESET & VARIABLES
   ============================================ */

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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #0F2847;
    --accent-color: #00D4FF;
    --text-dark: #0a0e27;
    --text-light: #666666;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --bg-dark: #0a0e27;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-white);
    overflow-x: hidden;
    text-transform: none;
    letter-spacing: 0.5px;
    font-size: 1rem;
    font-weight: 400;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

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

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(15, 40, 71, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar.scrolled .logo,
.navbar.scrolled .logo-text,
.navbar.scrolled .nav-menu a {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-svg {
    height: 50px;
    width: auto;
    flex-shrink: 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.6)) drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.logo-svg:hover .truck-moving {
    animation-play-state: paused;
}

/* Truck moving animation - runs continuously */
.truck-moving {
    animation: truckDrive 5s linear infinite;
}

@keyframes truckDrive {
    0% {
        transform: translateX(-150px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(150px);
        opacity: 0;
    }
}

/* Spotlight effect animation */
.spotlight {
    animation: spotlightMove 5s ease-in-out infinite;
}

@keyframes spotlightMove {
    0%, 10% {
        cx: -30;
        opacity: 0.2;
    }
    50% {
        cx: 60;
        opacity: 0.8;
    }
    100% {
        cx: 140;
        opacity: 0.2;
    }
}

/* Glow animations for truck parts */
.cabin-glow {
    animation: cabinGlow 1.5s ease-in-out infinite;
}

@keyframes cabinGlow {
    0%, 100% {
        filter: drop-shadow(0 0 3px rgba(255, 107, 53, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.8));
    }
}

.window-glow {
    animation: windowGlow 2s ease-in-out infinite;
}

@keyframes windowGlow {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(0, 212, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(0, 212, 255, 1));
    }
}

.hub-glow {
    animation: hubGlow 1.2s ease-in-out infinite;
}

@keyframes hubGlow {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(255, 107, 53, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 6px rgba(255, 107, 53, 0.8));
    }
}

.speed-line-glow {
    animation: speedLineGlowMove 0.8s ease-in-out infinite;
}

@keyframes speedLineGlowMove {
    0% {
        opacity: 0;
        transform: translateX(-15px);
        filter: drop-shadow(0 0 4px rgba(255, 107, 53, 0.8));
    }
    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 8px rgba(255, 107, 53, 1));
    }
    100% {
        opacity: 0;
        transform: translateX(25px);
        filter: drop-shadow(0 0 4px rgba(255, 107, 53, 0.8));
    }
}

.headlight {
    animation: headlightFlash 0.5s ease-in-out infinite;
}

@keyframes headlightFlash {
    0%, 100% {
        opacity: 0.6;
        filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 1));
    }
}

.logo-svg:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.8)) drop-shadow(0 0 25px rgba(0, 212, 255, 0.5));
}

.navbar.scrolled .logo-svg {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 20px rgba(255, 107, 53, 0.2));
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
    text-transform: uppercase;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    animation: spinLogo 3s linear infinite;
}

.navbar.scrolled .logo-text {
    color: white;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.logo:hover i {
    transform: rotate(20deg) scale(1.1);
}

@keyframes spinLogo {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: rotateY(360deg);
        opacity: 1;
    }
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background-color: white;
}

/* ============================================
   LANGUAGE SELECTOR
   ============================================ */

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-toggle {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-toggle:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    transform: scale(1.1);
}

.navbar.scrolled .lang-toggle {
    color: white;
}

.navbar.scrolled .lang-toggle:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 12px 8px;
    margin-top: 8px;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 120px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    animation: slideDown 0.3s ease;
}

.language-dropdown.active {
    display: flex;
}

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

.lang-flag {
    padding: 10px 12px;
    text-decoration: none;
    color: var(--text-dark);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border: 2px solid transparent;
    gap: 8px;
}

.flag-icon {
    display: inline-block;
    width: 24px;
    height: 16px;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Vietnam Flag - Red with yellow star */
.vietnam-flag {
    background: linear-gradient(135deg, #CE1126 0%, #CE1126 100%);
    position: relative;
}

.vietnam-flag::after {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFDE00;
    font-size: 12px;
    font-weight: bold;
}

/* UK Flag - Blue with red cross and white diagonal */
.uk-flag {
    background: linear-gradient(90deg, #002868 0%, #002868 33%, white 33%, white 66%, #B22235 66%, #B22235 100%);
    position: relative;
}

.uk-flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 45%, #B22235 45%, #B22235 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, #B22235 45%, #B22235 55%, transparent 55%);
    pointer-events: none;
}

/* China Flag - Red with stars */
.china-flag {
    background: #DE2910;
    position: relative;
}

.china-flag::after {
    content: '★ ★\A★ ★\A  ★';
    position: absolute;
    top: 2px;
    right: 4px;
    color: #FFDE00;
    font-size: 6px;
    line-height: 3px;
    font-weight: bold;
    white-space: pre;
}

.lang-flag:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(4px);
}

.lang-flag.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.lang-flag.active:hover {
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.6);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 120px 20px;
    color: var(--bg-white);
    min-height: 650px;
    position: relative;
    overflow: hidden;
}

/* Hero Carousel - Background Images (Fix for iOS & Android) */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 4s ease-in-out;
    -webkit-user-select: none;
    user-select: none;
}

.hero-carousel-img.active {
    opacity: 1;
}

/* Carousel Animation - Cycle through 3 images */
@keyframes carouselCycle {
    0% {
        z-index: 3;
        opacity: 1;
    }
    32% {
        opacity: 1;
    }
    33% {
        opacity: 0;
        z-index: 1;
    }
    100% {
        opacity: 0;
        z-index: 1;
    }
}

.hero-carousel-img:nth-child(1) {
    animation: carouselCycle 12s infinite;
    z-index: 3;
}

.hero-carousel-img:nth-child(2) {
    animation: carouselCycle 12s 4s infinite;
    z-index: 2;
}

.hero-carousel-img:nth-child(3) {
    animation: carouselCycle 12s 8s infinite;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-slow-reverse 10s ease-in-out infinite;
}

/* Particle Animation */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation: float-particle1 15s infinite ease-in-out;
    opacity: 0.6;
}

.particle-2 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 10%;
    animation: float-particle2 12s infinite ease-in-out;
    opacity: 0.5;
}

.particle-3 {
    width: 40px;
    height: 40px;
    bottom: 15%;
    left: 15%;
    animation: float-particle3 18s infinite ease-in-out;
    opacity: 0.4;
}

.particle-4 {
    width: 50px;
    height: 50px;
    top: 50%;
    right: 5%;
    animation: float-particle4 14s infinite ease-in-out;
    opacity: 0.5;
}

.particle-5 {
    width: 70px;
    height: 70px;
    bottom: 10%;
    right: 20%;
    animation: float-particle5 16s infinite ease-in-out;
    opacity: 0.4;
}

@keyframes float-particle1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-50px) translateX(30px) rotate(90deg);
    }
    50% {
        transform: translateY(-100px) translateX(0px) rotate(180deg);
    }
    75% {
        transform: translateY(-50px) translateX(-30px) rotate(270deg);
    }
}

@keyframes float-particle2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-80px) rotate(180deg);
    }
}

@keyframes float-particle3 {
    0%, 100% {
        transform: translateX(0px) rotate(0deg);
    }
    50% {
        transform: translateX(60px) rotate(180deg);
    }
}

@keyframes float-particle4 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-40px) translateX(40px);
    }
    66% {
        transform: translateY(-80px) translateX(-40px);
    }
}

@keyframes float-particle5 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.3) rotate(180deg) translateY(-30px);
    }
}

.hero-content {
    flex: 1;
    max-width: 700px;
    z-index: 2;
    animation: slideInDown 0.8s ease-out;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    color: white;
    animation: slideInLeft 0.8s ease-out 0s forwards, neonGlowWave 4s ease infinite;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px #00D4FF,
        0 0 20px #FF6B35,
        0 0 30px #00D4FF,
        0 0 40px #FF6B35;
}

@keyframes neonGlowWave {
    0% {
        text-shadow: 
            0 0 10px #00D4FF,
            0 0 20px #FF6B35,
            0 0 30px #00D4FF,
            0 0 40px #FF6B35;
    }
    25% {
        text-shadow: 
            0 0 20px #FF6B35,
            0 0 30px #00D4FF,
            0 0 40px #FF6B35,
            0 0 50px #00D4FF;
    }
    50% {
        text-shadow: 
            0 0 30px #00D4FF,
            0 0 40px #FF6B35,
            0 0 50px #00D4FF,
            0 0 60px #FF6B35;
    }
    75% {
        text-shadow: 
            0 0 20px #FF6B35,
            0 0 30px #00D4FF,
            0 0 40px #FF6B35,
            0 0 50px #00D4FF;
    }
    100% {
        text-shadow: 
            0 0 10px #00D4FF,
            0 0 20px #FF6B35,
            0 0 30px #00D4FF,
            0 0 40px #FF6B35;
    }
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    animation: scaleIn 1s ease-out 0.3s forwards, neonLineGlow 4s ease infinite 0.5s;
    box-shadow: 
        0 0 10px #FF6B35,
        0 0 20px #00D4FF,
        0 0 30px #FF6B35;
}

@keyframes neonLineGlow {
    0% {
        box-shadow: 
            0 0 10px #FF6B35,
            0 0 20px #00D4FF,
            0 0 30px #FF6B35;
    }
    50% {
        box-shadow: 
            0 0 20px #00D4FF,
            0 0 30px #FF6B35,
            0 0 40px #00D4FF;
    }
    100% {
        box-shadow: 
            0 0 10px #FF6B35,
            0 0 20px #00D4FF,
            0 0 30px #FF6B35;
    }
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.8;
    animation: slideInDown 0.8s ease-out 0.2s backwards, textGlow 3s ease-in-out 0.5s infinite;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    text-transform: none;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.2), 0 0 20px rgba(255, 107, 53, 0.1);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 30px rgba(255, 107, 53, 0.3);
    }
}

.hero-content .btn {
    animation: slideInDown 0.8s ease-out 0.4s backwards, buttonPulse 2s ease-in-out 1s infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3), 0 0 20px rgba(0, 212, 255, 0.1);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.6), 0 0 30px rgba(0, 212, 255, 0.3);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: translateX(-50%) scaleX(0);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
}

.hero-image {
    flex: 1;
    text-align: center;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
    object-fit: contain;
}

.hero-icon {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.15);
    animation: float-slow 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes float-slow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-40px);
    }
}

@keyframes float-slow-reverse {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(40px);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3), 0 0 20px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6), 0 0 30px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #ff8c42 0%, var(--primary-color) 100%);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2.5px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a4d6d 100%);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float-slow 10s ease-in-out infinite;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    animation: float-slow-reverse 12s ease-in-out infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Roboto', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    font-weight: 500;
    text-transform: none;
}

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

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.services > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-transform: none;
}

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

.service-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    text-transform: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 120px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text {
    width: 100%;
    animation: slideInLeft 0.8s ease-out;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-align: center;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
    text-transform: none;
}

.about-list {
    list-style: none;
    margin-top: 2rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
    animation: slideInLeft 0.8s ease-out;
    text-transform: none;
}

.about-list i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.about-image {
    display: none;
}

.logistics-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.logistics-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
    width: 100%;
}

/* Truck animation */
.truck-animate {
    animation: truckMove 6s ease-in-out infinite;
}

@keyframes truckMove {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(150px);
        opacity: 0;
    }
}

/* Ship animation */
.ship-animate {
    animation: shipFloat 4s ease-in-out infinite;
}

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

/* Plane animation */
.plane-animate {
    animation: planeFly 5s ease-in-out infinite;
}

@keyframes planeFly {
    0% {
        transform: translateX(-80px) translateY(20px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(500px) translateY(-20px);
        opacity: 0;
    }
}

/* Crane animation */
.crane-arm {
    animation: craneRotate 4s ease-in-out infinite;
    transform-origin: 74px 87px;
}

@keyframes craneRotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-30deg);
    }
}

/* Wave animation */
.wave {
    animation: waveMove 3s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
}

/* Container animations */
.container-1 {
    animation: containerBounce1 3s ease-in-out infinite;
}

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

.container-2 {
    animation: containerBounce2 3.5s ease-in-out infinite;
}

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

/* Port crane animation */
.port-crane {
    animation: craneWork 5s ease-in-out infinite;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: 120px 20px;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.testimonials > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.1rem;
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.pricing h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.pricing > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-transform: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border: 2.5px solid var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(0, 212, 255, 0.02) 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    color: white;
    padding: 6px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-family: 'Roboto', sans-serif;
}

.features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-transform: none;
}

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

.features i {
    color: var(--primary-color);
    font-weight: 700;
}

.features .fa-times {
    color: #ccc;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c42 50%, var(--accent-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float-slow 12s ease-in-out infinite;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: slideInUp 0.8s ease-out;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
    text-transform: none;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a4d6d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    animation: slideInLeft 0.8s ease-out;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.info-item p {
    color: rgba(255, 255, 255, 0.85);
    text-transform: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideInRight 0.8s ease-out;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    text-transform: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0a2340 100%);
    color: white;
    padding: 60px 20px 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    text-transform: none;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    text-transform: none;
}

.footer-section a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section a:hover::before {
    width: 100%;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--accent-color);
    transform: translateY(-5px) rotate(10deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    text-transform: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        box-shadow: var(--shadow-lg);
        gap: 0;
        z-index: 99;
    }

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

    .nav-menu li {
        padding: 1rem 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .container-truck {
        width: 180px;
        height: 120px;
    }

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

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        max-width: 100%;
        margin-top: 0 !important;
        order: 2;
    }

    .about-text {
        order: 1;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services h2,
    .stats-grid,
    .pricing h2,
    .contact h2,
    .about-text h2,
    .testimonials h2,
    .cta-content h2 {
        font-size: 2rem;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: scale(1) translateY(-15px);
    }

    .hero::before,
    .hero::after,
    .about::before,
    .pricing::before,
    .contact::before,
    .stats::before,
    .stats::after,
    .cta::before {
        display: none;
    }

    .hero-particles {
        display: none;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 15px;
    }

    .services,
    .about,
    .pricing,
    .contact,
    .testimonials,
    .cta,
    .stats {
        padding: 70px 15px;
    }

    .nav-menu {
        gap: 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .services h2,
    .pricing h2,
    .contact h2,
    .about-text h2,
    .testimonials h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }

    .service-card,
    .pricing-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

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

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

/* ============================================
   THANK YOU MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    animation: popIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.modal-icon i {
    color: white;
    font-size: 45px;
}

.modal h2 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 25px;
    text-transform: none;
    letter-spacing: normal;
}

.modal-message {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.modal-message p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 10px;
}

.modal-message p:last-child {
    margin-bottom: 0;
}

.modal-message .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.modal-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.modal-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.modal-btn-secondary {
    background: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.modal-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 40px 25px;
    }

    .modal h2 {
        font-size: 1.5rem;
    }

    .modal-btn {
        width: 100%;
    }
}

/* Confetti animation */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
}

@keyframes confettiFall {
    to {
        transform: translateY(100vh) rotateZ(360deg);
        opacity: 0;
    }
}

/* ============================================
   MOBILE FIX - Hero Section
   ============================================ */

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        padding: 80px 15px;
    }

    .hero-carousel-img {
        /* Ensure images display properly on mobile */
        object-fit: cover;
        object-position: center;
    }

    /* Slower animation on mobile for better performance */
    .hero-carousel-img:nth-child(1) {
        animation: carouselCycle 14s infinite;
    }

    .hero-carousel-img:nth-child(2) {
        animation: carouselCycle 14s 5s infinite;
    }

    .hero-carousel-img:nth-child(3) {
        animation: carouselCycle 14s 10s infinite;
    }
}

