/* 
  NLIPL - Namakkal Logistics India (P) Ltd
  Modern, clean design inspired by rivianvw.tech
*/

/* CSS Custom Properties */
:root {
    /* Primary Colors - Cyan Blue Theme */
    --primary-dark: #051b2c;
    --primary-dark-light: #0a3654;
    --primary-navy: #0085a8;
    --peacock-blue: #00A5D1;
    --peacock-blue-light: #0090b8;
    --peacock-teal: #0090b8;
    --accent-gold: #D4A000;
    --accent-gold-light: #E6B800;
    --accent-gold-dark: #B8860B;
    --accent-gold: #c9a227;
    
    /* Neutrals */
    --white: #ffffff;
    --off-white: #fafbfc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Typography - Clean Sans-Serif */
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 0;
    --section-padding-sm: 80px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Three.js Canvas Background */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.7;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-600);
    background: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    position: relative;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 800;
}

.section-title .accent {
    color: var(--accent-gold);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-500);
    max-width: 640px;
    line-height: 1.6;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 93, 45, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--gray-900);
    background: var(--gray-900);
    color: var(--white);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.0625rem;
}

.btn-full {
    width: 100%;
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-smooth);
    background: linear-gradient(135deg, var(--primary-dark-light) 0%, var(--peacock-blue) 50%, var(--peacock-blue-light) 100%);
    background-attachment: fixed;
    background-size: 100% 100vh;
    background-position: 0 0;
    background-repeat: no-repeat;
    border: none;
    outline: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--white);
    transition: color var(--transition-fast);
}

/* Logo Image Styles */
.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-smooth);
}

.logo-text-nlipl {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.navbar.scrolled .logo-text-nlipl {
    color: var(--gray-600);
}

.navbar.scrolled .logo-image {
    height: 50px;
}

.footer-logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.navbar.scrolled .logo {
    color: var(--gray-900);
}

.logo-emblem {
    flex-shrink: 0;
}

.logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--peacock-blue) 0%, var(--primary-dark-light) 100%);
    border: 2px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 102, 164, 0.35);
}

.logo-short {
    font-size: 0.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.logo-truck {
    font-size: 1rem;
    margin-top: -1px;
    line-height: 1;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    letter-spacing: -0.01em;
}

.navbar.scrolled .logo-text {
    color: var(--gray-900);
}

.logo-tagline {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.navbar.scrolled .logo-tagline {
    color: var(--accent-gold-dark);
    opacity: 1;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-circle {
    width: 44px;
    height: 44px;
}

.footer-logo .logo-short {
    font-size: 0.45rem;
}

.footer-logo .logo-truck {
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
    position: relative;
}

.navbar.scrolled .nav-links > li > a {
    color: var(--gray-600);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition-fast);
}

.nav-links > li > a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    margin-top: 16px;
    list-style: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--gray-700) !important;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--accent-gold-dark) !important;
}

.dropdown-menu a::after {
    display: none !important;
}

.nav-cta {
    padding: 12px 24px;
    font-size: 0.875rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--gray-900);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-dark-light) 0%, var(--peacock-blue) 50%, var(--peacock-blue-light) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 128, 196, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 102, 164, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(0, 122, 122, 0.08) 0%, transparent 40%);
}

/* ==========================================
   PROFESSIONAL FULL-WIDTH HERO SECTION
   ========================================== */

.hero-fullwidth {
    position: relative;
    height: calc(100vh - 160px);
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
    background: transparent;
    box-sizing: border-box;
    padding: 0;
    border: none;
    outline: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-fullwidth {
        height: calc(100vh - 120px);
        margin-top: 70px;
        min-height: 500px;
    }
}

.hero-fullwidth:active {
    cursor: grabbing;
}

/* Background Slideshow */
.hero-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    margin: 0;
    padding: 0;
}

.hero-bg-slideshow .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-slideshow .hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg-slideshow .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 27, 44, 0.4);
    z-index: 1;
    pointer-events: none;
}

/* Hero Content - Centered */
.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 32px 20px;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hero-pretitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.hero-main-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 30px;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 50px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

.hero-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--accent-gold);
    transform: scale(1.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 10;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-main-title {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .hero-center {
        padding: 100px 20px 60px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        white-space: normal;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-tagline {
        font-size: 1rem;
        padding: 8px 20px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--white);
}

.hero-tagline-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #7dd3fc;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.6s ease 0.15s forwards;
    opacity: 0;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
    letter-spacing: -0.01em;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.25s forwards;
    opacity: 0;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-actions .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-actions .btn-secondary:hover {
    border-color: var(--white);
    color: var(--gray-900);
    background: var(--white);
}

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


/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 100px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; height: 48px; }
    50% { opacity: 0.5; height: 32px; }
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-dark-light) 0%, var(--peacock-blue) 50%, var(--peacock-blue-light) 100%);
    background-attachment: fixed;
    background-size: 100% 100vh;
    background-position: 0 0;
    background-repeat: no-repeat;
    padding: 10px 0;
    position: relative;
    z-index: 10;
    margin: 0;
    min-height: 80px;
    max-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border: none;
    outline: none;
}

@media (max-width: 768px) {
    .stats {
        min-height: auto;
        max-height: none;
        padding: 24px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
        width: 100%;
    }
    
    .stat-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .stat-number {
        font-size: 1.5rem;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.2;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.3;
        text-align: center;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 32px;
    align-items: center;
    justify-items: center;
}

.stat-card {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .stat-number {
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
    }
}

.stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 1.2;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about .section-tag,
.about .section-title .accent {
    color: var(--accent-gold-dark);
}

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

.about-text {
    color: var(--gray-600);
    margin-bottom: 24px;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all var(--transition-smooth);
}

.feature:hover {
    background: var(--gray-100);
    transform: translateX(4px);
}

.feature-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature span {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9375rem;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    background: linear-gradient(145deg, var(--peacock-blue) 0%, var(--primary-dark-light) 100%);
    border-radius: 24px;
    padding: 64px 56px;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
}

.visual-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 24px 0 12px;
    font-weight: 700;
}

.visual-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.location-pin {
    font-size: 3rem;
    line-height: 1;
}

.card-decoration {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: var(--accent-gold);
    opacity: 0.08;
    border-radius: 50%;
}

.visual-card-address {
    font-size: 0.875rem;
    margin-top: 12px;
    opacity: 0.7;
}

.address-link {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition-fast), color var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.address-link:hover {
    opacity: 1;
    color: var(--peacock-blue);
    border-bottom-color: var(--peacock-blue);
}

/* Leadership Section */
.leadership {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-dark-light) 0%, var(--peacock-blue) 50%, var(--peacock-blue-light) 100%);
}

.leadership .section-tag,
.leadership .section-title {
    color: var(--white);
}

.leadership .section-title .accent {
    color: var(--white);
}

.leadership-grid {
    display: flex;
    justify-content: center;
}

.leader-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    max-width: 900px;
    align-items: start;
}

.leader-image {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--peacock-blue) 0%, var(--primary-dark-light) 100%);
    max-height: 350px;
    width: 350px;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.leader-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    opacity: 0.5;
}

.leader-info {
    padding: 20px 0;
}

.leader-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.leader-name {
    font-size: 1.75rem;
    color: var(--white);
    font-weight: 700;
}

.leader-role {
    font-size: 0.875rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    opacity: 0.9;
}

.leader-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.leader-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fb923c;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 12px 0;
    border-bottom: 2px solid #fb923c;
    transition: all var(--transition-fast);
}

.leader-linkedin:hover {
    color: #fdba74;
    border-color: #fdba74;
}

/* Team Section */
.team {
    padding: var(--section-padding);
    background: var(--white);
}

.team .section-tag,
.team .section-title .accent {
    color: var(--accent-gold-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--gray-50);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--transition-smooth);
}

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

.team-image {
    aspect-ratio: 1;
    background: linear-gradient(145deg, var(--peacock-blue) 0%, var(--primary-dark-light) 100%);
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    opacity: 0.4;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 1.125rem;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.8125rem;
    color: var(--accent-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

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

.services .section-tag,
.services .section-title .accent {
    color: var(--accent-gold-dark);
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 48px 36px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-smooth);
    opacity: 0;
    transform: translateY(24px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-icon {
    font-size: 2.75rem;
    margin-bottom: 28px;
    line-height: 1;
}

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

.service-description {
    color: var(--gray-500);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap var(--transition-fast);
}

.service-link:hover {
    gap: 14px;
}

.service-link svg {
    width: 16px;
    height: 16px;
}

/* Industries Section */
.industries {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-dark-light) 0%, var(--peacock-blue) 50%, var(--peacock-blue-light) 100%);
    overflow: visible;
}

.industries .section-tag,
.industries .section-title {
    color: var(--white);
}

.industries .section-title .accent {
    color: var(--white);
}

.industries-wrapper {
    overflow: visible;
}

.industries-track {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.industry-tag {
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9375rem;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.industry-tag:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* Why Us Section */
.why-us {
    padding: var(--section-padding);
    background: var(--white);
}

.why-us .section-tag,
.why-us .section-title .accent {
    color: var(--accent-gold-dark);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.why-us-list {
    margin-top: 48px;
}

.why-item {
    display: flex;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid var(--gray-100);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.why-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.why-item:last-child {
    border-bottom: none;
}

.why-number {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-gold-dark);
    min-width: 48px;
}

.why-text h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--gray-900);
}

.why-text p {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.7;
}

.why-us-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 380px;
    background: linear-gradient(145deg, var(--peacock-blue) 0%, var(--primary-dark-light) 100%);
    border-radius: 24px;
    overflow: hidden;
}

.route-line {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--peacock-blue-light), var(--accent-gold));
    transform: rotate(-15deg);
}

.location-dot {
    position: absolute;
    font-size: 1.25rem;
    animation: float 3s ease-in-out infinite;
}

.dot-1 { top: 30%; left: 25%; animation-delay: 0s; }
.dot-2 { top: 50%; left: 50%; animation-delay: 0.5s; }
.dot-3 { top: 40%; left: 70%; animation-delay: 1s; }

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

.map-label {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Careers Section */
.careers {
    padding: var(--section-padding);
    background: var(--white);
}

.careers .section-tag,
.careers .section-title .accent {
    color: var(--accent-gold-dark);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.career-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
    background: var(--white);
}

.career-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1;
}

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

.career-description {
    color: var(--gray-600);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.7;
    flex-grow: 1;
}

.career-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent-gold);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    margin-top: auto;
}

.career-apply-btn:hover {
    background: var(--accent-gold-dark);
    transform: translateX(4px);
}

.careers-cta {
    margin-top: 64px;
    text-align: center;
    padding: 32px;
    background: var(--gray-50);
    border-radius: 16px;
}

.careers-note {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.careers-note a {
    color: var(--accent-gold-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

.careers-note a:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

/* Careers Form Section */
.careers-form {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-dark-light) 0%, var(--peacock-blue) 50%, var(--peacock-blue-light) 100%);
}

.careers-form .section-tag,
.careers-form .section-title {
    color: var(--white);
}

.careers-form .section-title .accent {
    color: var(--white);
}

.careers-form .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.careers-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.careers-form-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.careers-form-header .section-tag,
.careers-form-header .section-title,
.careers-form-header .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.careers-form-content {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.careers-form-content .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.careers-form-content .form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.careers-form-content .form-group input,
.careers-form-content .form-group select {
    padding: 16px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
    color: var(--gray-800);
    width: 100%;
    height: auto;
    min-height: 54px;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.careers-form-content .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.careers-form-content .form-group input:focus,
.careers-form-content .form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

.careers-form-content .form-group input::placeholder {
    color: var(--gray-400);
}

.careers-form-content .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

#custom-job-group {
    margin-top: 0;
    margin-bottom: 24px;
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

#custom-job-group input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.required-asterisk {
    color: #dc3545;
    font-weight: 700;
    margin-left: 4px;
}

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

#custom-job-group input {
    padding: 16px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
    color: var(--gray-800);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

#custom-job-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

#custom-job-group input::placeholder {
    color: var(--gray-400);
}

/* File Upload Styling */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.file-upload-label:hover {
    border-color: var(--accent-gold);
}

.file-upload-text {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.file-upload-status {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.file-upload-wrapper input[type="file"]:focus + .file-upload-label {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

.file-upload-wrapper input[type="file"]:valid + .file-upload-label .file-upload-status {
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.careers-submit-btn {
    margin-top: 8px;
    padding: 18px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--primary-dark-light);
    color: var(--white);
    border: none;
}

.careers-submit-btn:hover {
    background: var(--peacock-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 133, 168, 0.3);
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.contact .section-tag,
.contact .section-title .accent {
    color: var(--accent-gold-dark);
}

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

.contact-text {
    color: var(--gray-500);
    font-size: 1.125rem;
    margin-bottom: 48px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.contact-icon {
    font-size: 1.5rem;
    padding: 14px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    line-height: 1;
}

.contact-item h4 {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-item p {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 1rem;
}

.contact-link {
    color: var(--gray-700);
    text-decoration: none;
    transition: color var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--peacock-blue);
    border-bottom-color: var(--peacock-blue);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(232, 93, 45, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-message {
    display: none;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    margin-top: 20px;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark-light) 0%, var(--peacock-blue) 50%, var(--peacock-blue-light) 100%);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-size: 0.9375rem;
}

.footer-tagline {
    color: var(--white) !important;
    font-weight: 600;
    opacity: 0.9;
}

.footer-website a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.875rem;
}

.footer-website a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    margin-top: 16px;
}

.footer-social a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
}

.footer-social a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-social svg {
    transition: transform var(--transition-fast);
}

.footer-social a:hover svg {
    transform: scale(1.1);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

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

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-size: 0.9375rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px 0;
    }
    
    .about-grid,
    .why-us-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    
    .why-us-visual {
        order: -1; /* Image slideshow appears first */
    }
    
    .why-us-content {
        order: 2; /* Text appears below */
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        justify-items: center;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .leader-card {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .container {
        padding: 0 24px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-dark-light) 0%, var(--peacock-blue) 50%, var(--peacock-blue-light) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right var(--transition-smooth);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links > li > a {
        color: var(--white);
        font-size: 1.125rem;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 16px 0 0 0;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        min-width: auto;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .dropdown-menu li {
        text-align: center;
    }
    
    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 8px 16px;
        font-size: 1rem;
    }
    
    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white) !important;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .logo-text-group .logo-text {
        font-size: 0.8125rem;
    }
    
    .logo-tagline {
        font-size: 0.5625rem;
    }
    
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .logo-short {
        font-size: 0.4rem;
    }
    
    .logo-truck {
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .career-card {
        padding: 32px 24px;
        text-align: center;
        align-items: center;
    }
    
    .career-description {
        text-align: center;
    }
    
    .careers-cta {
        padding: 24px 20px;
    }
    
    .careers-note {
        font-size: 1rem;
    }
    
    .careers-form-content {
        padding: 32px 24px;
    }
    
    .careers-form-content .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    #custom-job-group {
        margin-top: 0;
    }
    
    .file-upload-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .about-content {
        text-align: left;
    }
    
    .about-text {
        text-align: left;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        gap: 48px;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .section-header {
        margin-bottom: 56px;
        text-align: center;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .leader-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .leader-name {
        font-size: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-info {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .stats {
        padding: 20px 0;
        min-height: auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
    }
    
    .stat-card {
        padding: 12px 8px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 60px;
    }
    
    .stat-number {
        font-size: 1.4rem;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
        line-height: 1.2;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 0.6rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .service-card {
        padding: 36px 28px;
    }
    
    .hero-center {
        padding: 80px 16px 40px;
    }
    
    .hero-main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        line-height: 1.2;
    }
    
    .hero-cta .btn {
        max-width: 100%;
    }
}

/* Image Slideshow */
.image-slideshow {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.image-slideshow:active {
    cursor: grabbing;
}

.slideshow-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide {
    display: none;
    width: 100%;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    display: block;
    opacity: 1;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    border-radius: 24px;
    margin: 0 auto;
}

.slideshow-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.dot.active,
.dot:hover {
    background: var(--accent-gold);
    transform: scale(1.2);
}

.slideshow-label {
    position: relative;
    padding: 15px 0 0 0;
    background: none;
    color: var(--gray-900);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .image-slideshow {
        max-width: 100%;
        margin-top: 40px;
    }
}
