/* ============================================ */
/* ROOT VARIABLES */
/* ============================================ */
:root {
    --primary: #0b3260;
    --primary-light: #164a85;
    --primary-dark: #072142;
    --secondary: #e05a10;
    --secondary-light: #f5742c;
    --secondary-dark: #b84405;
    --accent: #175ba6;
    --white: #ffffff;
    --light: #f4f7fa;
    --light-grey: #e9ecef;
    --grey: #6c757d;
    --dark: #1b263b;
    --dark-light: #2b3a55;
    --success: #28a745;
    --shadow: 0 10px 40px rgba(11, 50, 96, 0.12);
    --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.06);
    --shadow-heavy: 0 20px 60px rgba(11, 50, 96, 0.2);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

/* ============================================ */
/* RESET & BASE STYLES */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

/* ============================================ */
/* PRELOADER */
/* ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--white);
}

.loader-ship {
    font-size: 60px;
    animation: shipFloat 2s ease-in-out infinite;
    margin-bottom: 20px;
    color: var(--secondary);
}

.loader p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes shipFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(3deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================ */
/* HEADER & TRANSPARENT HERO OVERLAY NAVBAR */
/* ============================================ */
#header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar {
    background: rgba(4, 18, 36, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-left span,
.top-bar-right span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i,
.top-bar-right i {
    color: var(--secondary);
}

.top-bar-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.social-icons-top {
    display: flex;
    gap: 10px;
}

.social-icons-top a {
    color: var(--white);
    font-size: 13px;
    opacity: 0.7;
}

.social-icons-top a:hover {
    opacity: 1;
    color: var(--secondary);
}

/* ============================================ */
/* NAVBAR */
/* ============================================ */
.navbar {
    background: transparent;
    padding: 16px 0;
    position: relative;
    transition: all 0.35s ease;
}

.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 33, 66, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo h2 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.logo h2 span {
    color: var(--secondary);
}

.logo small {
    font-size: 9.5px;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links li a {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 6px;
    position: relative;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.nav-links li a:hover {
    color: var(--secondary);
}

.nav-links li a.active {
    color: var(--secondary) !important;
    font-weight: 700;
    background: transparent !important;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: var(--secondary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 70%;
}

.nav-links li a.nav-btn {
    background: var(--secondary) !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 15px rgba(224, 90, 16, 0.3);
    margin-left: 6px;
}

.nav-links li a.nav-btn::after {
    display: none !important;
}

.nav-links li a.nav-btn:hover {
    background: #c44d0b !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 90, 16, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 5px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================ */
/* BUTTONS */
/* ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 121, 32, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================ */
/* SECTION HEADERS */
/* ============================================ */
.section-padding {
    padding: 75px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(11, 50, 96, 0.08);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-line {
    width: 50px;
    height: 3.5px;
    background: var(--secondary);
    margin: 0 auto 16px;
    border-radius: 10px;
}

.section-desc {
    font-size: 15px;
    color: var(--grey);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ============================================ */
/* HERO SECTION */
/* ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    color: var(--white);
    overflow: hidden;
    padding-top: 140px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 46, 92, 0.8), rgba(6, 29, 58, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 900"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.03)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></linearGradient></defs><rect fill="url(%23g)" width="1440" height="900"/></svg>');
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
    color: var(--secondary);
    font-size: 18px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.highlight {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
}

.stat-item p {
    font-size: 13px;
    opacity: 0.7;
    font-weight: 400;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================ */
/* SERVICES MARQUEE */
/* ============================================ */
.services-marquee {
    background: var(--primary);
    padding: 18px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 50px;
    padding: 0 25px;
}

.marquee-content span {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-content span i {
    color: var(--secondary);
    font-size: 18px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================ */
/* ABOUT SECTION */
/* ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.about-img-placeholder {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.about-img-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.about-img-placeholder p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.5;
}

.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-heavy);
    z-index: 2;
}

.experience-badge h3 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.experience-badge p {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 5px;
}

.about-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content h3 span {
    color: var(--secondary);
}

.about-lead {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-content p {
    color: var(--grey);
    margin-bottom: 15px;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.about-feature i {
    color: var(--secondary);
    font-size: 16px;
}

/* ============================================ */
/* SERVICES SECTION */
/* ============================================ */
.services {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    transform: rotate(5deg) scale(1.1);
}

.service-icon i {
    font-size: 30px;
    color: var(--white);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(10, 46, 92, 0.04);
    line-height: 1;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--dark);
    padding: 4px 0;
}

.service-features li i {
    color: var(--secondary);
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
}

.service-link:hover {
    gap: 14px;
    color: var(--secondary-dark);
}

/* ============================================ */
/* CONTAINER TYPES SECTION */
/* ============================================ */
.containers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.container-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    border-bottom: 4px solid transparent;
}

.container-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-bottom-color: var(--secondary);
}

.container-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(10, 46, 92, 0.05), rgba(10, 46, 92, 0.1));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.container-card:hover .container-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.container-icon i {
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.container-card:hover .container-icon i {
    color: var(--white);
}

.container-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.container-specs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.container-specs span {
    background: var(--light);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--grey);
}

.container-card p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
}

/* ============================================ */
/* WHY CHOOSE US SECTION */
/* ============================================ */
.why-us {
    background: var(--light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.why-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    transform: scale(1.1);
}

.why-icon i {
    font-size: 24px;
    color: var(--white);
}

.why-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.6;
}

/* ============================================ */
/* PROCESS SECTION */
/* ============================================ */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--secondary), var(--primary));
    border-radius: 10px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    z-index: 2;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    transform: scale(1.1);
}

.step-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px 30px;
    box-shadow: var(--shadow-light);
    flex: 1;
    transition: var(--transition);
}

.process-step:hover .step-content {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
}

/* ============================================ */
/* GLOBAL REACH SECTION */
/* ============================================ */
.global-reach {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.global-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 46, 92, 0.8), rgba(6, 29, 58, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="2"/><circle cx="100" cy="100" r="60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/><circle cx="100" cy="100" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>') center/400px repeat;
}

.global-content {
    position: relative;
    z-index: 2;
}

.global-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.global-content h2 span {
    color: var(--secondary);
}

.global-content > p {
    font-size: 16px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}


.global-regions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .global-regions {
        grid-template-columns: repeat(2, 1fr);
    }
}


.region {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.region:hover {
    background: rgba(244, 121, 32, 0.2);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.region i {
    color: var(--secondary);
}

/* ============================================ */
/* COUNTERS SECTION */
/* ============================================ */
.counters {
    background: var(--secondary);
    padding: 60px 0;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item {
    color: var(--white);
}

.counter-item i {
    font-size: 36px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.counter-item h3 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.counter-item p {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.85;
}

/* ============================================ */
/* CONTACT SECTION */
/* ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.contact-card {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 15px;
    transition: var(--transition);
    align-items: center;
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon i {
    font-size: 20px;
    color: var(--white);
}

.contact-detail h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.contact-detail p {
    font-size: 14px;
    color: var(--grey);
}

.contact-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
}

/* ============================================ */
/* FORMS */
/* ============================================ */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    padding-left: 45px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    border: 2px solid var(--light-grey);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
    background: var(--light);
    color: var(--dark);
}

.form-group select {
    padding-left: 18px;
    cursor: pointer;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(244, 121, 32, 0.1);
}

.form-group > i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey);
    font-size: 14px;
}

.form-group:has(textarea) > i {
    top: 18px;
    transform: none;
}

/* Quote form doesn't have icons */
.quote-form .form-group input,
.quote-form .form-group textarea,
.quote-form .form-group select {
    padding-left: 18px;
}

/* ============================================ */
/* QUOTE SECTION */
/* ============================================ */
.quote {
    background: var(--light);
}

.quote-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow);
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */
.cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 46, 92, 0.8), rgba(6, 29, 58, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><line x1="0" y1="0" x2="100" y2="100" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/><line x1="100" y1="0" x2="0" y2="100" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>') center/200px repeat;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.85;
    max-width: 550px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
}

.footer-logo h2 span {
    color: var(--secondary);
}

.footer-logo small {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--grey);
    text-transform: uppercase;
}

.footer-col > p {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--secondary);
    border-radius: 10px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a::before {
    content: '›';
    color: var(--secondary);
    font-weight: bold;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--secondary);
    width: 16px;
    text-align: center;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

/* ============================================ */
/* WHATSAPP FLOATING BUTTON */
/* ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================ */
/* SCROLL TO TOP */
/* ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ============================================ */
/* SCROLL ANIMATIONS */
/* ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .containers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-heavy);
        transition: var(--transition-slow);
        gap: 5px;
        align-items: stretch;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        padding: 12px 16px;
        font-size: 16px;
        display: block;
    }

    .nav-btn {
        text-align: center;
        margin-top: 10px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 100px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1;
        min-width: 120px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-badge {
        bottom: 10px;
        right: 10px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .containers-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form-container {
        padding: 25px;
    }

    .process-timeline::before {
        left: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 16px;
    }

    .step-content {
        padding: 18px;
    }

    .global-content h2 {
        font-size: 28px;
    }

    .global-regions {
        gap: 10px;
    }

    .region {
        padding: 8px 16px;
        font-size: 12px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .scroll-top {
        right: 15px;
        bottom: 100px;
    }

    .whatsapp-float {
        bottom: 25px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .counter-item h3 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .about-content h3 {
        font-size: 24px;
    }

    .about-img-placeholder {
        height: 300px;
    }

    .about-img-placeholder i {
        font-size: 50px;
    }
}

/* ============================================ */
/* FLEET SECTION */
/* ============================================ */
.fleet {
    background: var(--light);
}

.fleet-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.fleet-category h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 5px;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 10px;
    display: inline-block;
}

.fleet-cat-desc {
    color: var(--grey);
    margin-bottom: 25px;
    font-size: 15px;
}

.fleet-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.fleet-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    border-top: 4px solid var(--primary);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-top-color: var(--secondary);
}

.fleet-card h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 15px;
}

.fleet-card ul {
    list-style: none;
}

.fleet-card ul li {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.fleet-card ul li::before {
    content: "•";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.fleet-card ul li strong {
    color: var(--dark);
}



/* KEN BURNS ZOOM EFFECT */
.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero_bg.jpg') center/cover no-repeat;
    z-index: 0;
    animation: kenBurnsZoom 20s infinite alternate ease-in-out;
}

@keyframes kenBurnsZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero {
    background: #061d3a; /* Fallback */
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    filter: brightness(1.06) contrast(1.08) saturate(1.12);
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 7s ease-out;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.08);
}



/* SPLIT LAYOUT FOR ABOUT AND WHY US */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.split-layout.layout-reverse {
    /* For reverse layout in grid, we can swap order of children */
}

.split-layout.layout-reverse .split-text {
    order: 1;
}

.split-layout.layout-reverse .split-image {
    order: 2;
}

.split-text, .split-image {
    width: 100%;
}

.image-wrapper-right, .image-wrapper-left {
    position: relative;
}

@media (max-width: 768px) {
    .split-layout, .split-layout.layout-reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .split-layout .split-text,
    .split-layout.layout-reverse .split-text {
        order: 2;
    }
    
    .split-layout .split-image,
    .split-layout.layout-reverse .split-image {
        order: 1;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .progress-bars {
        text-align: left;
    }
    
    ul li {
        text-align: left;
    }
}



/* CONTINUOUS PAN ANIMATION */
.continuous-pan {
    animation: imagePan 15s infinite alternate ease-in-out;
}

@keyframes imagePan {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.image-wrapper-left, .image-wrapper-right {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px;
    transform: translateZ(0); /* Hardware acceleration */
}

/* ============================================ */
/* SERVICES GRID & ELEGANT CARD ELEVATION */
/* ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: stretch;
}

.service-card-fullcolor {
    border-radius: 16px;
    padding: 34px 28px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card-fullcolor:hover, .tilt-3d:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 20px 40px rgba(11, 50, 96, 0.25) !important;
}


.process-card-img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}


/* ============================================ */
/* WORKING PROCESS 4-COLUMN TIMELINE GRID */
/* ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}

.process-card-step {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.35s ease;
}

.process-card-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 50, 96, 0.15);
    border-color: var(--secondary);
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* Tablet & Mobile Screens (< 992px) */
@media (max-width: 992px) {
    .top-bar-left, .top-bar-right {
        font-size: 13px;
    }
    .hero-content h1 {
        font-size: 38px !important;
    }
    .hero-content p {
        font-size: 16px !important;
    }
    .split-layout {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Mobile Screens (< 768px) */
@media (max-width: 768px) {
    .top-bar {
        padding: 8px 0;
    }
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    .top-bar-left, .top-bar-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .navbar .logo a {
        gap: 8px !important;
    }
    .navbar .logo h2 {
        font-size: 15.5px !important;
        font-weight: 800 !important;
        line-height: 1.15 !important;
        display: block !important;
    }
    .navbar .logo small {
        font-size: 7.5px !important;
        font-weight: 700 !important;
        letter-spacing: 1.2px !important;
        display: block !important;
    }
    .navbar .logo img {
        max-height: 72px !important;
    }
    .hero {
        min-height: auto !important;
        padding-top: 130px !important;
        padding-bottom: 70px !important;
    }
    .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.25 !important;
    }
    .hero-content p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .section-header h2 {
        font-size: 24px !important;
    }
    .section-padding {
        padding: 50px 0 !important;
    }
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .service-card-fullcolor {
        padding: 30px 22px !important;
        border-radius: 14px !important;
    }
    .service-card-fullcolor h3 {
        font-size: 20px !important;
    }
    .service-card-fullcolor p {
        font-size: 13.5px !important;
    }
    .quote-form-container, .contact-form-box {
        padding: 25px 18px !important;
    }
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        font-size: 26px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
}

/* Small Mobile Screens (< 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px !important;
    }
    .hero-badge {
        padding: 6px 14px !important;
        font-size: 11px !important;
    }
    .hero-badge span {
        font-size: 11px !important;
    }
    .hero-content h1 {
        font-size: 24px !important;
    }
    .cat-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
}

/* ============================================ */
/* 3D PERSPECTIVE ANIMATION SYSTEM */
/* ============================================ */
.perspective-container {
    perspective: 1200px;
}

.tilt-3d {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}

.tilt-3d:hover {
    box-shadow: 0 22px 50px rgba(11, 50, 96, 0.22), 0 0 25px rgba(224, 90, 16, 0.15) !important;
}

.tilt-3d i, 
.tilt-3d .service-icon-box, 
.tilt-3d .card-num, 
.tilt-3d h3,
.tilt-3d img {
    transform: translateZ(25px);
    transition: transform 0.3s ease;
}

@keyframes float3D {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: translateY(-10px) rotateX(3deg) rotateY(-3deg);
    }
}

.floating-3d {
    animation: float3D 5s ease-in-out infinite;
}

@keyframes pulseGlow3D {
    0%, 100% {
        filter: drop-shadow(0 8px 20px rgba(224, 90, 16, 0.3));
    }
    50% {
        filter: drop-shadow(0 15px 35px rgba(224, 90, 16, 0.6));
    }
}

.glow-3d {
    animation: pulseGlow3D 3s infinite alternate ease-in-out;
}

/* ============================================ */
/* MOBILE NAVIGATION DRAWER GLASSMORPHISM POLISH */
/* ============================================ */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        background: linear-gradient(145deg, rgba(11, 50, 96, 0.98), rgba(7, 33, 66, 0.99));
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 40px 24px;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
        z-index: 9999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        color: #ffffff !important;
        font-size: 16px;
        font-weight: 600;
        padding: 12px 20px;
        border-radius: 10px;
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transition: all 0.3s ease;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: rgba(224, 90, 16, 0.2);
        color: var(--secondary) !important;
        transform: translateX(5px);
    }

    .nav-links li a.nav-btn {
        background: var(--secondary) !important;
        color: white !important;
        margin-top: 10px;
        border-bottom: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        cursor: pointer;
        z-index: 10000;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: var(--primary);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
        background: var(--secondary);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
        background: var(--secondary);
    }
}

/* ============================================ */
/* FORM & TOUCH TARGET ACCESSIBILITY & POLISH */
/* ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    font-size: 15px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none !important;
    border-color: var(--secondary) !important;
    box-shadow: 0 0 0 4px rgba(224, 90, 16, 0.15) !important;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 25px rgba(224, 90, 16, 0.35);
}
