/* ============================================
   TOP LINE EXPRESS - Main Stylesheet
   Freight Forwarding Company Website
   Primary: #001D41 | Accent: #C8A44E
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --primary: #001D41;
    --primary-dark: #00112a;
    --primary-light: #003366;
    --accent: #C8A44E;
    --accent-light: #dfc77a;
    --accent-dark: #a88a3a;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --shadow-sm: 0 2px 8px rgba(0, 29, 65, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 29, 65, 0.12);
    --shadow-lg: 0 15px 50px rgba(0, 29, 65, 0.18);
    --shadow-xl: 0 25px 60px rgba(0, 29, 65, 0.22);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-body);
}

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

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

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Utility Classes ---------- */
.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 70px 0;
}

.bg-primary-custom {
    background-color: var(--primary) !important;
}

.bg-off-white {
    background-color: var(--off-white);
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.text-accent {
    color: var(--accent) !important;
}

.text-primary-custom {
    color: var(--primary) !important;
}

.fw-600 {
    font-weight: 600;
}

/* ---------- Section Header ---------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header .subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 18px;
}

.section-header p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.08rem;
    color: var(--medium-gray);
}

.section-header .divider {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 14px 36px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary-custom:hover {
    color: var(--primary);
    border-color: var(--accent);
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-accent {
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
    padding: 14px 36px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.btn-accent:hover {
    color: var(--white);
    border-color: var(--primary);
}

.btn-accent:hover::before {
    left: 0;
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 36px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-inner img {
    width: 160px;
    margin-bottom: 30px;
    animation: pulse 1.5s infinite;
}

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

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    animation: loading 1.2s infinite ease-in-out;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar a,
.top-bar span {
    color: rgba(255,255,255,0.75);
    transition: var(--transition-fast);
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar i {
    color: var(--accent);
    margin-right: 6px;
}

.top-bar .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    margin-left: 6px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.top-bar .social-links a:hover {
   /* background: var(--accent); */
    color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-main {
    background: var(--white);
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 1050;
}

.navbar-main.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0;
}

.navbar-main .navbar-brand img {
    height: 65px;
    transition: var(--transition);
}

.navbar-main.scrolled .navbar-brand img {
    height: 55px;
}

.navbar-main .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary) !important;
    padding: 25px 14px !important;
    letter-spacing: 0.3px;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--accent) !important;
}

.navbar-main .dropdown-menu {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    margin-top: 0;
    border-top: 3px solid var(--accent);
    animation: fadeInDown 0.3s ease;
}

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

.navbar-main .dropdown-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--primary);
    padding: 10px 24px;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-main .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: var(--transition-fast);
}

.navbar-main .dropdown-item:hover {
    background: rgba(0, 29, 65, 0.04);
    color: var(--accent);
    padding-left: 30px;
}

.navbar-main .dropdown-item:hover::before {
    transform: scaleY(1);
}

/* Mobile Navbar */
@media (max-width: 991px) {
    .navbar-main .nav-link {
        padding: 12px 16px !important;
    }
    .navbar-main .nav-link::after {
        display: none;
    }
    .navbar-main .navbar-collapse {
        background: var(--white);
        padding: 15px 0;
        border-top: 2px solid var(--off-white);
    }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
}

.hero-slider .carousel-item {
    height: 92vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 29, 65, 0.92) 0%, rgba(0, 29, 65, 0.6) 60%, rgba(0, 29, 65, 0.3) 100%);
    z-index: 1;
}

.hero-slider .carousel-item img.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease;
}

.hero-slider .carousel-item.active img.hero-bg {
    transform: scale(1.08);
}

.hero-slider .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.hero-slider .hero-content .hero-tag {
    display: inline-block;
    background: rgba(200, 164, 78, 0.2);
    border: 1px solid rgba(200, 164, 78, 0.4);
    color: var(--accent);
    padding: 6px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-slider .hero-content h1 {
    color: var(--white);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-slider .hero-content h1 span {
    color: var(--accent);
}

.hero-slider .hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 560px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-slider .hero-content .hero-btns {
    animation: fadeInUp 0.8s ease 0.6s both;
}

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

/* Carousel Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    background: rgba(200, 164, 78, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 164, 78, 0.4);
    border-radius: 50%;
    opacity: 1;
    z-index: 5;
    transition: var(--transition);
}

.hero-slider .carousel-control-prev { left: 30px; }
.hero-slider .carousel-control-next { right: 30px; }

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider .carousel-control-prev:focus,
.hero-slider .carousel-control-next:focus {
    box-shadow: 0 0 0 4px rgba(200, 164, 78, 0.3);
}

.hero-slider .carousel-indicators {
    bottom: 30px;
}

.hero-slider .carousel-indicators button {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255,255,255,0.4);
    transition: var(--transition);
}

.hero-slider .carousel-indicators button.active {
    background: var(--accent);
    width: 60px;
}

/* ============================================
   PAGE BANNER (Inner Pages)
   ============================================ */
.page-banner {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 29, 65, 0.94), rgba(0, 29, 65, 0.7));
    z-index: 1;
}

.page-banner img.banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner-content h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-banner-content .breadcrumb {
    justify-content: center;
    background: none;
    padding: 0;
    margin: 0;
}

.page-banner-content .breadcrumb-item,
.page-banner-content .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
}

.page-banner-content .breadcrumb-item.active {
    color: var(--accent);
}

.page-banner-content .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
    content: "›";
    font-size: 1.0rem;
}

/* ============================================
   FEATURES BAR (below hero)
   ============================================ */
.features-bar {
    background: var(--primary);
    position: relative;
    z-index: 10;
    margin-top: -1px;
}

.feature-box {
    text-align: center;
    padding: 40px 25px;
    position: relative;
    transition: var(--transition);
    border-right: 1px solid rgba(255,255,255,0.08);
}

.feature-box:last-child {
    border-right: none;
}

.feature-box:hover {
    background: rgba(255,255,255,0.05);
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(200, 164, 78, 0.12);
    border: 2px solid rgba(200, 164, 78, 0.3);
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.feature-box .feature-icon i {
    font-size: 1.8rem;
    color: var(--accent);
    transition: var(--transition);
}

.feature-box:hover .feature-icon i {
    color: var(--primary);
}

.feature-box h5 {
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.feature-box p {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section .about-img-wrapper {
    position: relative;
}

.about-section .about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-section .about-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-section .about-img-main:hover img {
    transform: scale(1.05);
}

.about-section .about-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--accent);
    color: var(--primary);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-section .about-badge .badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.about-section .about-badge span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}

.about-section .about-content {
    padding-left: 30px;
}

.about-section .about-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.about-section .about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-section .about-list li i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

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

.service-card .service-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-card .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.12);
}

.service-card .service-img .service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 29, 65, 0.8), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.service-card:hover .service-img .service-overlay {
    opacity: 1;
}

.service-card .service-img .service-overlay a {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card .service-img .service-overlay a i {
    transition: transform 0.3s;
}

.service-card .service-img .service-overlay a:hover i {
    transform: translateX(5px);
}

.service-card .service-body {
    padding: 28px;
}

.service-card .service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 29, 65, 0.06);
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
}

.service-card .service-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card .service-body h4 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.service-card .service-body p {
    font-size: 0.92rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* ============================================
   STATS / COUNTER SECTION
   ============================================ */
.stats-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 164, 78, 0.08), transparent 70%);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-item .stat-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-number span {
    color: var(--accent);
}

.stat-item .stat-label {
    color: rgba(255,255,255,0.65);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.why-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.why-card .why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 29, 65, 0.06), rgba(0, 29, 65, 0.02));
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    transform: scale(1.1);
}

.why-card .why-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

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

.team-card .team-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-card .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.08);
}

.team-card .team-img .team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 29, 65, 0.9), transparent);
    display: flex;
    justify-content: center;
    gap: 10px;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-card:hover .team-img .team-social {
    transform: translateY(0);
}

.team-card .team-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    transition: var(--transition);
}

.team-card .team-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

.team-card .team-body {
    padding: 22px 20px;
}

.team-card .team-body h5 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.team-card .team-body p {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   MD MESSAGE
   ============================================ */
.md-message-section .md-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.md-message-section .md-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.md-message-section .md-img:hover img {
    transform: scale(1.03);
}

.md-message-section .md-content {
    padding-left: 20px;
}

.md-message-section .md-content .md-quote {
    position: relative;
    padding: 25px 30px;
    background: var(--off-white);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 25px 0;
    font-style: italic;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.md-message-section .md-content .md-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.md-message-section .md-content .md-designation {
    color: var(--accent);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.md-signature {
    margin-top: 20px;
    max-width: 180px;
}

/* ============================================
   TRACKING SECTION
   ============================================ */
.tracking-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.tracking-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 78, 0.08);
}

.tracking-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 78, 0.06);
}

.tracking-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.tracking-form-wrapper h3 {
    font-weight: 700;
    margin-bottom: 10px;
}

.tracking-form-wrapper .form-control {
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.tracking-form-wrapper .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(200, 164, 78, 0.15);
}

.tracking-result {
    margin-top: 30px;
    display: none;
}

.tracking-timeline {
    position: relative;
    padding: 20px 0;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-gray);
}

.timeline-item {
    position: relative;
    padding-left: 55px;
    padding-bottom: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--accent);
}

.timeline-item.completed::before {
    background: #28a745;
    box-shadow: 0 0 0 2px #28a745;
}

.timeline-item h6 {
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.timeline-item p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l9.9-9.9h-2.828zM32 0l-3.486 3.485L30.93 4.9 34.828 1V0H32z' fill='rgba(200,164,78,0.04)' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px 0;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-info-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.contact-info-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .contact-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    margin: 0 auto 18px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    transform: scale(1.1);
}

.contact-info-card .contact-icon i {
    font-size: 1.4rem;
    color: var(--white);
}

.contact-info-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.contact-info-card a {
    color: var(--text-body);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--accent);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-family: 'Source Sans 3', sans-serif;
    transition: var(--transition-fast);
    background: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(200, 164, 78, 0.12);
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    height: 100%;
}

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

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: rgba(200, 164, 78, 0.2);
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.testimonial-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-body);
    margin-bottom: 20px;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-card .client-info h6 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.testimonial-card .client-info span {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-section .service-detail-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.service-detail-section .service-detail-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-detail-section .service-detail-img:hover img {
    transform: scale(1.04);
}

.service-sidebar {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 30px;
}

.service-sidebar .sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-sidebar .sidebar-nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

.service-sidebar .sidebar-nav li a:hover,
.service-sidebar .sidebar-nav li a.active {
    background: var(--primary);
    color: var(--white);
}

.service-sidebar .sidebar-cta {
    background: var(--primary);
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    margin-top: 25px;
}

.service-sidebar .sidebar-cta h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 10px;
}

.service-sidebar .sidebar-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    margin-bottom: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
}

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

.footer-main {
    padding: 80px 0 50px;
}

.footer-brand img {
    height: 70px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-links li a::before {
    content: '›';
    color: var(--accent);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255,255,255,0.55);
}

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

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
}

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

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
}

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

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   IMAGE HOVER ANIMATIONS
   ============================================ */
.img-hover-zoom {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.img-hover-zoom img {
    transition: transform 0.6s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.08);
}

.img-hover-shine {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.img-hover-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    z-index: 1;
    transition: 0.5s;
}

.img-hover-shine:hover::before {
    left: 125%;
}

.img-hover-tilt {
    transition: transform 0.4s ease;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.img-hover-tilt:hover {
    transform: perspective(600px) rotateY(3deg) rotateX(2deg);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-slider .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 991px) {
    .section-padding { padding: 70px 0; }
    .hero-slider .carousel-item { height: 80vh; }
    .hero-slider .hero-content h1 { font-size: 2.4rem; }
    .about-section .about-content { padding-left: 0; margin-top: 40px; }
    .md-message-section .md-content { padding-left: 0; margin-top: 30px; }
    .tracking-form-wrapper { padding: 35px; }
    .page-banner { height: 320px; }
    .page-banner-content h1 { font-size: 2.4rem; }
}

@media (max-width: 767px) {
    .top-bar { display: none; }
    .hero-slider .carousel-item { height: 75vh; min-height: 500px; }
    .hero-slider .hero-content h1 { font-size: 2rem; }
    .hero-slider .hero-content p { font-size: 1rem; }
    .section-header h2 { font-size: 1.8rem; }
    .feature-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .cta-content h2 { font-size: 2rem; }
    .page-banner { height: 280px; }
    .page-banner-content h1 { font-size: 1.8rem; }
    .tracking-form-wrapper { padding: 25px; }
}

@media (max-width: 575px) {
    .hero-slider .hero-content h1 { font-size: 1.7rem; }
    .btn-primary-custom,
    .btn-accent,
    .btn-outline-custom { padding: 12px 24px; font-size: 0.88rem; }
}

/* ============================================
   WORKING PROCESS SECTION
   ============================================ */
.process-section {
    position: relative;
    overflow: hidden;
}

.process-card {
    text-align: center;
    padding: 40px 25px 35px;
    position: relative;
    z-index: 1;
}

.process-step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 8px 25px rgba(0, 29, 65, 0.25);
    position: relative;
    transition: var(--transition);
}

.process-card:hover .process-step-number {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(200, 164, 78, 0.35);
}

.process-step-number span {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.process-card:hover .process-step-number span {
    color: var(--primary);
}

.process-step-icon {
    display: block;
    font-size: 1.6rem;
    color: var(--accent);
    margin-bottom: 12px;
    transition: var(--transition);
}

.process-card:hover .process-step-icon {
    color: var(--primary);
    transform: scale(1.15);
}

.process-card h4 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 0;
}

/* Connector Line between steps */
.process-connector {
    position: relative;
}

.process-connector::after {
    content: '';
    position: absolute;
    top: 55px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    z-index: 0;
}

.process-connector:last-child::after {
    display: none;
}

@media (max-width: 991px) {
    .process-connector::after {
        display: none;
    }
}

/* ============================================
   CONTENT PAGES (Shipping Guide, T&C)
   ============================================ */
.content-page-section {
    padding: 80px 0;
}

.content-page-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.content-page-section h2:first-of-type {
    margin-top: 0;
}

.content-page-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 25px 0 12px;
    color: var(--primary-light);
}

.content-page-section p {
    font-size: 0.98rem;
    line-height: 1.8;
}

.content-page-section ul,
.content-page-section ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}

.content-page-section ul li,
.content-page-section ol li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.content-page-section ul li::before {
   /* content: '\f058'; */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-size: 0.9rem;
}

.content-page-section ol {
    counter-reset: content-counter;
}

.content-page-section ol li::before {
    counter-increment: content-counter;
    content: counter(content-counter) ".";
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 1rem;
}

.content-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent);
    transition: var(--transition);
}

.content-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.content-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.content-card p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.content-highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 35px;
    margin: 30px 0;
}

.content-highlight h4 {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.content-highlight p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

.content-toc {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 25px 30px;
    position: sticky;
    top: 110px;
}

.content-toc h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.content-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-toc ul li {
    margin-bottom: 8px;
}

.content-toc ul li a {
    color: var(--text-body);
    font-size: 0.88rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-fast);
}

.content-toc ul li a::before {
    content: '›';
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 700;
}

.content-toc ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}
