/* ===========================
   DRAGON DEFEND INC — Styles
   Navy Blue & Beige Palette
   Premium Typography
   =========================== */

/* --- CSS Variables --- */
:root {
    --navy-900: #0F1A2E;
    --navy-800: #1B2A4A;
    --navy-700: #243660;
    --navy-600: #2D4278;
    --navy-500: #3A5494;
    --navy-400: #5A7AB8;
    --beige-100: #FAF7F2;
    --beige-200: #F5EDE0;
    --beige-300: #E8D5B7;
    --beige-400: #D4BC95;
    --beige-500: #C4A875;
    --white: #F7F2EA;
    --milky: #F7F2EA;
    --milky-light: #FBF8F3;
    --text-dark: #1B2A4A;
    --text-body: #3d4f6a;
    --text-muted: #7a8599;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-base: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    --shadow-sm: 0 2px 8px rgba(15, 26, 46, 0.06);
    --shadow-md: 0 4px 24px rgba(15, 26, 46, 0.08);
    --shadow-lg: 0 8px 40px rgba(15, 26, 46, 0.12);
    --shadow-xl: 0 16px 64px rgba(15, 26, 46, 0.16);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--beige-100);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-dragon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-logo-img {
    width: 230px;
    height: 230px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    animation: pulse-glow 1.5s ease-in-out infinite;
}

.loader-text {
    font-family: var(--font-body);
    color: var(--beige-300);
    font-size: 0.85rem;
    letter-spacing: 8px;
    font-weight: 500;
    opacity: 0;
    animation: fade-up 0.6s ease 0.8s forwards;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

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

/* --- Container --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(15, 26, 46, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dragon Logo Image Styling */
.nav-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    transition: all var(--transition-base);
}

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

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--beige-200);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.logo-accent {
    color: var(--beige-400);
    font-weight: 300;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--beige-200);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--beige-400);
    transition: width var(--transition-base);
}

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

.nav-link:hover {
    color: var(--beige-300);
}

.nav-link-cta {
    background: var(--beige-300);
    color: var(--navy-800) !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all var(--transition-base);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background: var(--beige-200);
    color: var(--navy-900) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 213, 183, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--beige-200);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--navy-900);
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        radial-gradient(ellipse at 10% 70%, rgba(232, 213, 183, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 15%, rgba(232, 213, 183, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 85%, rgba(58, 84, 148, 0.08) 0%, transparent 40%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(160deg, rgba(15, 26, 46, 0.85) 0%, rgba(27, 42, 74, 0.6) 40%, rgba(15, 26, 46, 0.7) 100%);
}

/* Decorative grid lines */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.grid-line {
    position: absolute;
    background: rgba(232, 213, 183, 0.03);
}

.grid-line-v {
    width: 1px;
    height: 100%;
    left: 25%;
}

.grid-line-h {
    width: 100%;
    height: 1px;
    top: 70%;
}

.hero-dragon-watermark {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 650px;
    pointer-events: none;
    opacity: 0.12;
    transition: transform 0.15s ease-out;
}

.hero-watermark-img {
    width: 100%;
    height: auto;
    opacity: 0.6;
    mix-blend-mode: lighten;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    padding: 140px 0 100px;
}

.hero-content {
    position: relative;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-dragon-badge {
    position: relative;
}

.hero-dragon-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    opacity: 0.85;
    transition: all var(--transition-smooth);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.hero-dragon-badge:hover .hero-dragon-img {
    opacity: 1;
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

@keyframes slow-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-stats-card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 36px;
    background: rgba(232, 213, 183, 0.04);
    border: 1px solid rgba(232, 213, 183, 0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    font-size: 0.72rem;
    color: var(--beige-300);
    letter-spacing: 2px;
    opacity: 0.6;
    font-weight: 500;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--beige-400);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

/* Hero Brand Name — Large Display */
.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8.5rem);
    font-weight: 700;
    color: var(--beige-100);
    line-height: 0.92;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-brand-line {
    display: block;
}

.hero-brand-line:last-child {
    color: var(--beige-400);
    font-weight: 500;
    font-style: italic;
}

/* Thin Line + Tagline */
.hero-line-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-line {
    flex: 1;
    height: 1px;
    background: var(--beige-400);
    opacity: 0.35;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--beige-300);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0.7;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--beige-300);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 44px;
    font-weight: 300;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Hero Pill Buttons */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    text-decoration: none;
    white-space: nowrap;
}

.hero-pill svg {
    flex-shrink: 0;
}

/* Driver pill — filled gradient */
.hero-pill-driver {
    background: linear-gradient(135deg, #1B2A4A 0%, #2d4470 50%, #1B2A4A 100%);
    color: #ffffff;
    border: 1.5px solid rgba(45, 68, 112, 0.6);
    box-shadow: 0 4px 20px rgba(27, 42, 74, 0.4);
}

.hero-pill-driver:hover {
    background: linear-gradient(135deg, #243558 0%, #3a5488 50%, #243558 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 42, 74, 0.5);
}

/* Shipper pill — outlined blue */
.hero-pill-shipper {
    background: transparent;
    color: #d0daf0;
    border: 1.5px solid rgba(100, 140, 200, 0.45);
}

.hero-pill-shipper:hover {
    background: rgba(45, 68, 112, 0.15);
    border-color: rgba(100, 140, 200, 0.7);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Contact Manager pill — outlined green */
.hero-pill-contact {
    background: transparent;
    color: #4ade80;
    border: 1.5px solid rgba(74, 222, 128, 0.4);
}

.hero-pill-contact:hover {
    background: rgba(74, 222, 128, 0.08);
    border-color: rgba(74, 222, 128, 0.7);
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--beige-300);
    color: var(--navy-800);
}

.btn-primary:hover {
    background: var(--beige-200);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 213, 183, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--beige-200);
    border: 1.5px solid rgba(232, 213, 183, 0.25);
}

.btn-outline:hover {
    border-color: var(--beige-300);
    background: rgba(232, 213, 183, 0.06);
    transform: translateY(-2px);
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-stat-top {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--beige-200);
    line-height: 1;
}

.hero-stat-suffix {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--beige-400);
}

.hero-stat-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--beige-200);
    line-height: 1;
}

.hero-stat-icon {
    color: var(--beige-400);
    display: flex;
    align-items: center;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--beige-300);
    opacity: 0.5;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(232, 213, 183, 0.1);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--beige-300);
    opacity: 0.4;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    animation: float-down 2.5s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--beige-300), transparent);
    animation: scroll-pulse 2.5s ease-in-out infinite;
}

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

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.7; }
}

/* --- Section Shared Styles --- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--navy-500);
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 1px;
    background: var(--navy-500);
}

.section-tag-light {
    color: var(--beige-400);
}

.section-tag-light::before {
    background: var(--beige-400);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-title-light {
    color: var(--beige-100);
}

.text-accent {
    color: var(--navy-500);
    font-style: italic;
    font-weight: 500;
}

.text-accent-light {
    color: var(--beige-400);
    font-style: italic;
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
}

.section-subtitle-light {
    color: var(--beige-300);
    opacity: 0.6;
}

.section-text {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-bottom: 16px;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

/* --- About Section --- */
.about {
    padding: 140px 0;
    background: var(--milky);
    position: relative;
}

.section-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.about-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
}

.about-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--beige-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.about-detail:hover {
    background: var(--milky-light);
    border-color: var(--beige-300);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.about-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--navy-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige-300);
    flex-shrink: 0;
}

.about-detail div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-detail strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy-800);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-detail span {
    font-size: 0.9rem;
    color: var(--text-body);
    font-weight: 300;
}

/* About Image Showcase */
.about-image-showcase {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 28px;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.about-truck-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image-showcase:hover .about-truck-img {
    transform: scale(1.03);
}

.about-img-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 80px;
    height: 80px;
    background: var(--milky);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.about-badge-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* About Card */
.about-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card {
    background: var(--milky-light);
    border-radius: var(--radius-lg);
    padding: 3px;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
    width: 100%;
    transform: rotate(1.5deg);
    transition: transform var(--transition-smooth);
}

.about-card:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.about-card-inner {
    background: linear-gradient(145deg, var(--beige-100), var(--beige-200));
    border-radius: calc(var(--radius-lg) - 3px);
    padding: 48px 36px;
    text-align: center;
}

.about-card-icon {
    margin-bottom: 20px;
}

.about-card-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    opacity: 0.9;
    margin: 0 auto;
}

/* Dark About Card */
.about-card-dark {
    background: var(--navy-800);
    box-shadow: 0 12px 48px rgba(15, 26, 46, 0.3);
}

.about-card-dark .about-card-inner {
    background: linear-gradient(145deg, var(--navy-800), var(--navy-900));
}

.about-card-dark .about-card-title {
    color: var(--beige-100);
}

.about-card-dark .about-card-list li {
    color: var(--beige-200);
    font-weight: 400;
}

.about-card-dark:hover {
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.35);
}

.about-card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.about-card-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.about-card-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-card-list li svg {
    flex-shrink: 0;
}

/* --- Services Section --- */
.services {
    padding: 140px 0;
    background: var(--milky);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--beige-100);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-800), var(--beige-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27, 42, 74, 0.06);
    background: var(--milky-light);
}

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

.service-card-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--navy-800);
    opacity: 0.04;
    position: absolute;
    top: 16px;
    right: 28px;
    line-height: 1;
}

.service-icon {
    color: var(--navy-600);
    margin-bottom: 28px;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.75;
    font-weight: 300;
}

/* Dark Service Card Variant */
.service-card-dark {
    background: var(--navy-800);
    color: var(--milky);
    border-color: rgba(232, 213, 183, 0.06);
}

.service-card-dark .service-card-number {
    color: var(--beige-300);
    opacity: 0.06;
}

.service-card-dark .service-icon {
    color: var(--beige-400);
}

.service-card-dark .service-title {
    color: var(--beige-100);
}

.service-card-dark .service-desc {
    color: var(--beige-300);
    opacity: 0.7;
}

.service-card-dark::before {
    background: linear-gradient(90deg, var(--beige-400), var(--beige-300));
}

.service-card-dark:hover {
    background: var(--navy-700);
    border-color: rgba(232, 213, 183, 0.12);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}

/* --- Fleet Gallery Section --- */
.fleet-gallery {
    padding: 140px 0;
    background: var(--milky);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-large {
    grid-column: span 2;
}

.gallery-item-full {
    grid-column: span 3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 26, 46, 0.75) 0%, rgba(15, 26, 46, 0.1) 40%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--beige-200);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

/* --- Fleet Stats Section --- */
.fleet {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 60%, #1e3054 100%);
}

.fleet-bg {
    position: absolute;
    inset: 0;
}

.fleet-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.fleet-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(160deg, rgba(15, 26, 46, 0.9) 0%, rgba(27, 42, 74, 0.7) 60%, rgba(15, 26, 46, 0.85) 100%),
        radial-gradient(ellipse at 25% 40%, rgba(232, 213, 183, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 60%, rgba(58, 84, 148, 0.06) 0%, transparent 50%);
}

.fleet-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.fleet-stat {
    text-align: center;
    padding: 52px 28px;
    background: rgba(232, 213, 183, 0.04);
    border: 1px solid rgba(232, 213, 183, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
}

.fleet-stat:hover {
    background: rgba(232, 213, 183, 0.08);
    transform: translateY(-6px);
    border-color: rgba(232, 213, 183, 0.16);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.fleet-stat-icon {
    color: var(--beige-400);
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.fleet-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--beige-200);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.fleet-stat-label {
    font-size: 0.8rem;
    color: var(--beige-300);
    opacity: 0.5;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

/* --- Why Us Section --- */
.why-us {
    padding: 140px 0;
    background: var(--milky);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature {
    padding: 44px 32px;
    border-radius: var(--radius-lg);
    background: var(--navy-800);
    transition: all var(--transition-smooth);
    border: 1px solid rgba(232, 213, 183, 0.06);
    position: relative;
    overflow: hidden;
}

.feature::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--beige-400), var(--beige-300));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature:hover {
    transform: translateY(-8px);
    background: var(--navy-700);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
    border-color: rgba(232, 213, 183, 0.12);
}

.feature:hover::after {
    opacity: 1;
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(232, 213, 183, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--beige-400);
    transition: all var(--transition-base);
}

.feature:hover .feature-icon-wrap {
    background: rgba(232, 213, 183, 0.14);
    color: var(--beige-300);
    transform: scale(1.05);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--beige-100);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--beige-300);
    line-height: 1.75;
    font-weight: 300;
    opacity: 0.7;
}

/* --- Apply Section (Driver & Broker Forms) --- */
.apply-section {
    padding: 140px 0;
    background: var(--navy-800);
    position: relative;
    overflow: hidden;
}

.apply-section .section-tag {
    color: var(--beige-400);
}

.apply-section .section-tag::before {
    background: var(--beige-400);
}

.apply-section .section-title {
    color: var(--beige-100);
}

.apply-section .text-accent {
    color: var(--beige-400);
}

.apply-section .section-subtitle {
    color: var(--beige-300);
    opacity: 0.6;
}

.apply-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

.apply-card {
    background: rgba(232, 213, 183, 0.04);
    border: 1px solid rgba(232, 213, 183, 0.08);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    transition: all var(--transition-smooth);
}

.apply-card:hover {
    background: rgba(232, 213, 183, 0.07);
    border-color: rgba(232, 213, 183, 0.14);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.apply-card-header {
    text-align: center;
    margin-bottom: 36px;
}

.apply-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(232, 213, 183, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige-400);
    margin: 0 auto 20px;
}

.apply-card-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--beige-100);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.apply-card-desc {
    font-size: 0.9rem;
    color: var(--beige-300);
    opacity: 0.6;
    line-height: 1.7;
    font-weight: 300;
}

.apply-form input {
    width: 100%;
    padding: 15px 20px;
    border: 1.5px solid rgba(232, 213, 183, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--beige-100);
    background: rgba(232, 213, 183, 0.04);
    transition: all var(--transition-base);
    outline: none;
    font-weight: 300;
}

.apply-form input::placeholder {
    color: var(--beige-300);
    opacity: 0.4;
    font-weight: 300;
}

.apply-form input:focus {
    border-color: var(--beige-400);
    background: rgba(232, 213, 183, 0.07);
    box-shadow: 0 0 0 3px rgba(232, 213, 183, 0.06);
}

.apply-form .form-group {
    margin-bottom: 16px;
}

.apply-form .btn-primary {
    margin-top: 8px;
}

/* --- Marquee --- */
.marquee-section {
    background: var(--navy-900);
    padding: 22px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 48px;
    white-space: nowrap;
    animation: marquee-scroll 30s linear infinite;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--beige-300);
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.4;
}

.marquee-dot {
    color: var(--beige-500);
    font-size: 0.5rem;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Contact Section --- */
.contact {
    padding: 140px 0;
    background: var(--milky);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--beige-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-700);
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.contact-item:hover .contact-item-icon {
    background: var(--navy-800);
    color: var(--beige-300);
}

.contact-item strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy-800);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
    font-weight: 300;
}

.contact-item a {
    color: var(--navy-600);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--navy-800);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--beige-100);
    border-radius: var(--radius-xl);
    padding: 52px 44px;
    border: 1px solid rgba(27, 42, 74, 0.04);
    box-shadow: var(--shadow-sm);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.form-group {
    margin-bottom: 16px;
    flex: 1;
}

.form-row {
    display: flex;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1.5px solid rgba(27, 42, 74, 0.08);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--milky-light);
    transition: all var(--transition-base);
    outline: none;
    font-weight: 300;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
    font-weight: 300;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--navy-500);
    box-shadow: 0 0 0 3px rgba(58, 84, 148, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

.contact-form .btn-primary {
    margin-top: 8px;
    padding: 16px 32px;
    font-size: 0.9rem;
}

/* --- Footer --- */
.footer {
    background: var(--navy-900);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(232, 213, 183, 0.08);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--beige-300);
    opacity: 0.5;
    line-height: 1.8;
    max-width: 300px;
    font-weight: 300;
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--beige-200);
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: var(--beige-300);
    opacity: 0.4;
    padding: 7px 0;
    transition: all var(--transition-fast);
    font-weight: 300;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--beige-300);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--beige-300);
    opacity: 0.3;
    letter-spacing: 0.5px;
    font-weight: 300;
}

/* --- Scroll Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for cards */
.animate-on-scroll[data-delay="100"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="200"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="300"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="400"] { transition-delay: 0.4s; }
.animate-on-scroll[data-delay="500"] { transition-delay: 0.5s; }

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

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1360px;
    }

    .hero-brand {
        font-size: 9.5rem;
    }

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

    .hero-dragon-img {
        width: 240px;
        height: 240px;
    }

    .gallery-grid {
        grid-auto-rows: 340px;
    }
}

/* Desktop/Laptop (1025px - 1279px) */
@media (max-width: 1279px) {
    .container {
        padding: 0 32px;
    }

    .nav-container {
        padding: 0 32px;
    }

    .section-grid {
        gap: 64px;
    }

    .contact-grid {
        gap: 64px;
    }
}

/* Tablet Landscape (769px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 28px;
    }

    .nav-container {
        padding: 0 28px;
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .fleet-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .about-card {
        transform: rotate(0);
        max-width: 420px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right {
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-dragon-img {
        width: 160px;
        height: 160px;
    }

    .hero-dragon-watermark {
        right: -10%;
        width: 50%;
        opacity: 0.08;
    }

    .about, .services, .fleet, .why-us, .contact, .fleet-gallery, .apply-section {
        padding: 100px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item-large {
        grid-column: span 1;
    }

    .gallery-item-full {
        grid-column: span 2;
    }
}

/* Tablet Portrait (601px - 768px) */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(15, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .nav-link-cta {
        margin-top: 12px;
        padding: 14px 32px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 160px 0 80px;
        gap: 32px;
    }

    .hero-brand {
        font-size: 4.5rem;
    }

    .hero-right {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-dragon-badge {
        display: none;
    }

    .hero-stats-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-dragon-watermark {
        width: 80%;
        right: -20%;
        opacity: 0.06;
    }

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

    .apply-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .apply-card {
        padding: 36px 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item-large,
    .gallery-item-full {
        grid-column: span 1;
    }

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

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

    .contact-form-wrap {
        padding: 36px 28px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .about, .services, .fleet, .why-us, .contact, .fleet-gallery, .apply-section {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }
}

/* Mobile Large (481px - 600px) */
@media (max-width: 600px) {
    .hero-brand {
        font-size: 3.8rem;
    }

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

    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 2.5px;
    }

    .hero-line-wrap {
        gap: 14px;
    }

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

    .hero-actions {
        flex-direction: column;
        margin-bottom: 32px;
    }

    .hero-pill {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }

    .fleet-stat {
        padding: 36px 20px;
    }

    .fleet-stat-number {
        font-size: 2.2rem;
    }

    .about-card-inner {
        padding: 36px 24px;
    }

    .contact-form-wrap {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }

    .about, .services, .fleet, .why-us, .contact, .fleet-gallery, .apply-section {
        padding: 64px 0;
    }
}

/* Mobile Small (max 480px) */
@media (max-width: 480px) {
    .hero-brand {
        font-size: 3.2rem;
    }

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

    .hero-badge {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }

    .hero-tagline {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .fleet-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card,
    .feature,
    .apply-card {
        padding: 28px 20px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-stat-suffix {
        font-size: 1.4rem;
    }

    .hero-stat-text {
        font-size: 1.4rem;
    }

    .navbar {
        padding: 16px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .logo-text {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }

    .logo-icon-wrap svg,
    .nav-logo-img {
        width: 42px;
        height: 42px;
    }

    .gallery-grid {
        grid-auto-rows: 180px;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }

    .marquee-content {
        font-size: 0.7rem;
        gap: 32px;
        letter-spacing: 3px;
    }
}

/* Extra small screens (max 360px) */
@media (max-width: 360px) {
    .hero-brand {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .hero-inner {
        padding: 140px 0 60px;
    }

    .about, .services, .fleet, .why-us, .contact, .fleet-gallery, .apply-section {
        padding: 56px 0;
    }
}
