/* ========================================================================
   FARHAN LOGISTICS - MASTER STYLESHEET
   ======================================================================== */

/* ========================================================================
   1. ROOT VARIABLES & COLOR THEME
   ======================================================================== */
:root {
    /* Primary Brand Colors */
    --primary-navy: #2f338d;
    --primary-red: #ec2025;
    --primary-light: #fdfdfc;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #6C757D;
    --text-dark: #212529;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2f338d 0%, #1e2259 100%);
    --gradient-overlay: linear-gradient(90deg, rgba(47, 51, 141, 0.95) 0%, rgba(47, 51, 141, 0.7) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-headings: 'Montserrat', sans-serif;

    /* Layout */
    --header-offset: 0px;
}

/* ========================================================================
   2. GLOBAL RESET & BASE STYLES
   ======================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: var(--header-offset, 0px);
    transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.header-scrolled {
    padding-top: var(--header-offset, 0px);
}

/* Mobile responsive padding - reduces white space on smaller screens */
@media (max-width: 991px) {
    body {
        padding-top: var(--header-offset, 0px);
    }
    
    body.header-scrolled {
        padding-top: var(--header-offset, 0px);
    }
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-navy);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Mobile responsive heading sizes */
@media (max-width: 991px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.2rem; }
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
}

@media (max-width: 991px) {
    p {
        font-size: 0.95rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    p {
        font-size: 0.9rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

a {
    text-decoration: none;
    transition: var(--transition-base);
    color: var(--primary-navy);
}

a:hover {
    color: var(--primary-red);
    transform: translateX(2px);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Professional Section Backgrounds */
.section-navy {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e2259 100%);    color: var(--white);
    position: relative;
}

.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 {
    color: var(--white);
}

.section-navy p {
    color: rgba(255, 255, 255, 0.9);
}

.section-navy .service-card h4,
.section-navy .card-custom h5 {
    color: var(--primary-red);
}

.section-pattern {
    background-color: #f8f9fa;
    background-image: 
        linear-gradient(30deg, #f0f0f0 12%, transparent 12.5%, transparent 87%, #f0f0f0 87.5%, #f0f0f0),
        linear-gradient(150deg, #f0f0f0 12%, transparent 12.5%, transparent 87%, #f0f0f0 87.5%, #f0f0f0),
        linear-gradient(30deg, #f0f0f0 12%, transparent 12.5%, transparent 87%, #f0f0f0 87.5%, #f0f0f0),
        linear-gradient(150deg, #f0f0f0 12%, transparent 12.5%, transparent 87%, #f0f0f0 87.5%, #f0f0f0);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.section-gradient {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
}

.section-white {
    background: #ffffff;
}

.section-light {
    background: #f8f9fa;
}

.section-image-overlay {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(47, 51, 141, 0.92);
    z-index: 1;
}

.section-image-overlay > .container {
    position: relative;
    z-index: 2;
}

.section-image-overlay h1,
.section-image-overlay h2,
.section-image-overlay h3,
.section-image-overlay h4,
.section-image-overlay p {
    color: var(--white);
}

/* Professional Section Backgrounds */
.section-navy {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e2259 100%);
    color: var(--white);
}

.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 {
    color: var(--white);
}

.section-navy p {
    color: rgba(255, 255, 255, 0.9);
}

.section-pattern {
    background-color: #f8f9fa;
    background-image: 
        linear-gradient(30deg, #f0f0f0 12%, transparent 12.5%, transparent 87%, #f0f0f0 87.5%, #f0f0f0),
        linear-gradient(150deg, #f0f0f0 12%, transparent 12.5%, transparent 87%, #f0f0f0 87.5%, #f0f0f0),
        linear-gradient(30deg, #f0f0f0 12%, transparent 12.5%, transparent 87%, #f0f0f0 87.5%, #f0f0f0),
        linear-gradient(150deg, #f0f0f0 12%, transparent 12.5%, transparent 87%, #f0f0f0 87.5%, #f0f0f0);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.section-gradient {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
}

.section-image-overlay {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(47, 51, 141, 0.92);
    z-index: 1;
}

.section-image-overlay > * {
    position: relative;
    z-index: 2;
}

.section-image-overlay h1,
.section-image-overlay h2,
.section-image-overlay h3,
.section-image-overlay h4,
.section-image-overlay p {
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--primary-navy);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-navy));
    border-radius: 2px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 20px auto 0;
}

/* ========================================================================
   3. TOP CONTACT BAR
   ======================================================================== */
/* ========================================================================
   3. HEADER WRAPPER & STICKY NAVIGATION
   ======================================================================== */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    width: 100%;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-wrapper.scrolled .top-contact-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
    margin-top: -1px;
}

.top-contact-bar {
    background: linear-gradient(90deg, #1e2259 0%, var(--primary-navy) 50%, #1e2259 100%);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(236, 32, 37, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 200px;
    overflow: hidden;
}

.top-contact-info span {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.top-contact-info i {
    color: var(--primary-red);
    margin-right: 8px;
    font-size: 0.95rem;
}

.top-social-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.top-social-links a:hover {
    color: var(--white);
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(236, 32, 37, 0.4);
}

/* ========================================================================
   4. MAIN NAVIGATION - MODERN PROFESSIONAL DESIGN
   ======================================================================== */

/* Override Bootstrap navbar defaults */
.navbar,
.navbar-expand-lg,
.navbar-dark,
.navbar-light {
    background-color: transparent !important;
    background: transparent !important;
}

.main-navbar {
    background: rgba(47, 51, 141, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 24px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid transparent;
    position: relative;
    border: none;
    margin: 0;
}

.main-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red) 50%, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.header-wrapper.scrolled .main-navbar {
    padding: 12px 0;
    background: rgba(30, 34, 89, 0.98) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header-wrapper.scrolled .main-navbar::after {
    opacity: 1;
}

.main-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 5px 0;
    margin-right: 15px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-brand img,
.navbar-logo {
    height: 56px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(236, 32, 37, 0.3));
    transition: all 0.3s ease;
}

.header-wrapper.scrolled .navbar-logo {
    height: 48px;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 2.8rem;
    color: var(--primary-red);
    animation: pulse 2s infinite, rotate 20s linear infinite;
    filter: drop-shadow(0 0 10px rgba(236, 32, 37, 0.5));
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.navbar-brand:hover .brand-name {
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(236, 32, 37, 0.8);
}

.brand-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-red);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600;
    padding: 12px 22px !important;
    margin: 0 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
    border-radius: 8px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(236, 32, 37, 0.1), rgba(236, 32, 37, 0.05));
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 70%;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    opacity: 1;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: rgba(236, 32, 37, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 32, 37, 0.2);
}

/* Services Dropdown Styles */
.navbar-nav .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 15px;
    margin-top: 10px;
    min-width: 280px;
}

.navbar-nav .dropdown-item {
    color: var(--primary-navy);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(47, 51, 141, 0.08), rgba(236, 32, 37, 0.05));
    color: var(--primary-red);
    transform: translateX(5px);
}

.navbar-nav .dropdown-item i {
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover i {
    transform: scale(1.2);
}

.navbar-nav .dropdown-divider {
    margin: 10px 0;
    border-color: rgba(47, 51, 141, 0.1);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Navbar Toggler Button */
.navbar-toggler {
    border: none;
    padding: 8px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: transparent !important;
    outline: none;
}

.navbar-toggler:hover {
    background: rgba(236, 32, 37, 0.15) !important;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    box-shadow: none;
    outline: none;
    background: rgba(236, 32, 37, 0.15) !important;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size: 1.5rem;
}

/* ========================================================================
   4.1 MOBILE OFFCANVAS MENU
   ======================================================================== */
.mobile-menu {
    background: linear-gradient(180deg, #1e2259 0%, #2f338d 100%);
    color: var(--white);
    width: 85vw !important;
    max-width: 100% !important;
}

@media (min-width: 768px) {
    .mobile-menu {
        max-width: 320px !important;
    }
}

.mobile-menu .offcanvas-header {
    background: linear-gradient(135deg, #1e2259 0%, #2f338d 100%);
    border-bottom: 3px solid var(--primary-red);
    padding: 16px 18px;
    align-items: center;
}

.mobile-menu .offcanvas-header img {
    height: 46px;
    width: auto;
    object-fit: contain;
    max-width: 160px;
}

.mobile-menu .brand-icon {
    font-size: 2rem;
    animation: none;
}

.mobile-menu .brand-name {
    font-size: 1.5rem;
}

.mobile-menu .brand-tagline {
    font-size: 0.7rem;
}

.mobile-menu .btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.mobile-menu .offcanvas-body {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

@media (max-width: 767px) {
    .mobile-nav-links a {
        padding: 14px 18px;
        font-size: 0.9rem;
    }
}

.mobile-nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover::before,
.mobile-nav-links a.active::before {
    width: 4px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(236, 32, 37, 0.15);
    color: var(--white);
    padding-left: 30px;
}

.mobile-nav-links a i {
    font-size: 1.1rem;
    color: var(--primary-red);
}

.mobile-cta {
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-info h6 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-contact-info .contact-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.mobile-contact-info .contact-item i {
    color: var(--primary-red);
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mobile-contact-info .contact-item .label {
    display: block;
    color: #adb5bd;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.mobile-contact-info .contact-item a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.mobile-contact-info .contact-item span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.mobile-social {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social h6 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-social .social-links {
    display: flex;
    gap: 12px;
}

.mobile-social .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-social .social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.mobile-contact-info h6 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.mobile-contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-contact-info .contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mobile-contact-info .contact-item i {
    font-size: 1.25rem;
    color: var(--primary-red);
    margin-top: 3px;
    flex-shrink: 0;
}

.mobile-contact-info .contact-item div {
    flex: 1;
}

.mobile-contact-info .contact-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3px;
}

.mobile-contact-info .contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.mobile-contact-info .contact-item a:hover {
    color: var(--primary-red);
}

.mobile-contact-info .contact-item span {
    color: var(--white);
    font-size: 0.95rem;
}

.mobile-social {
    padding: 25px;
    background: rgba(0, 0, 0, 0.3);
}

.mobile-social h6 {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--primary-red);
}

.mobile-social .social-links {
    display: flex;
    gap: 12px;
}

.mobile-social .social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-social .social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(236, 32, 37, 0.3);
}

@media (max-width: 991px) {
    .top-contact-bar {
        display: none !important;
    }
}

/* ========================================================================
   5. BUTTONS & CTAs
   ======================================================================== */
.btn-primary-custom {
    background: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(236, 32, 37, 0.25);
    font-size: 1rem;
}

@media (max-width: 991px) {
    .btn-primary-custom {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .btn-primary-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.btn-primary-custom:hover {
    background: #c01a1f;
    color: var(--white);
    border-color: #c01a1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 32, 37, 0.35);
}

.btn-secondary-custom {
    background-color: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition-base);
    display: inline-block;
}

.btn-secondary-custom:hover {
    background-color: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;    
    background: var(--primary-red);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline-custom:hover::before {
    width: 100%;
}

.btn-outline-custom:hover {
    color: var(--white);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 32, 37, 0.4);
}

/* ========================================================================
   6. HERO SECTION
   ======================================================================== */
/* ========================================================================
   6. HERO CAROUSEL
   ======================================================================== */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47, 51, 141, 0.88) 0%, rgba(30, 34, 89, 0.85) 50%, rgba(236, 32, 37, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(236, 32, 37, 0.9);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.carousel-indicators {
    bottom: 30px;
    z-index: 15;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--white);
    transition: all 0.3s ease;
    margin: 0 4px;
}

.carousel-indicators .active {
    background-color: var(--primary-red);
    width: 40px;
    border-radius: 6px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(47, 51, 141, 0.8);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-red);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 991px) {
    .hero-carousel,
    .hero-slide {
        height: 90vh;
        min-height: 600px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .hero-carousel,
    .hero-slide {
        height: auto;
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-content .lead {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons a {
        width: 100%;
        font-size: 0.95rem !important;
        padding: 12px 20px !important;
    }
}

/* ========================================================================
   7. SERVICE CARDS
   ======================================================================== */
.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .service-card {
        margin-bottom: 15px;
    }
    
    .service-card h4 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
}

/* Responsive section padding */
@media (max-width: 991px) {
    section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 767px) {
    section {
        padding: 40px 0 !important;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(236, 32, 37, 0.15);
    border-color: var(--primary-red);
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47, 51, 141, 0.85), rgba(236, 32, 37, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 4rem;
    color: var(--white);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.service-content {
    padding: 30px 25px;
}

.service-content h4 {
    color: var(--primary-red);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--primary-navy);
}

.service-card h4 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.service-card .learn-more {
    color: var(--primary-red);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.service-card .learn-more:hover {
    gap: 12px;
    color: var(--primary-navy);
}

/* ========================================================================
   7.1 WHY CHOOSE US SECTION
   ======================================================================== */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
}

.mb-60 {
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .mb-60 {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .mb-60 {
        margin-bottom: 30px;
    }
}

.why-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e5e7eb;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(47, 51, 141, 0.15);
    border-color: var(--primary-navy);
}

.why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red), #c01a1f);
    border-radius: 50%;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(236, 32, 37, 0.25);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary-navy), #1e2259);
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.why-card h5 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================================================
   8. STATISTICS SECTION
   ======================================================================== */
.stats-section {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-headings);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================================================
   9. FEATURES / WHY CHOOSE US
   ======================================================================== */
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition-base);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-content h5 {
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.feature-content p {
    margin: 0;
    color: var(--dark-gray);
}

/* ========================================================================
   10. CTA BANNER
   ======================================================================== */
.cta-banner {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(247, 148, 29, 0.1);
    border-radius: 50%;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* ========================================================================
   11. FORMS
   ======================================================================== */
.form-section {
    background: var(--light-gray);
}

.form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
    display: block;
}

.form-control,
.form-select {
    padding: 12px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition-fast);
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(236, 32, 37, 0.15);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.alert {
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 25px;
}

/* ========================================================================
   12. TRACKING SECTION
   ======================================================================== */
.tracking-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.tracking-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.tracking-input-group .form-control {
    flex: 1;
}

.tracking-input-group .btn {
    flex-shrink: 0;
}

.tracking-result {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

/* ========================================================================
   13. CARDS & GRID LAYOUTS
   ======================================================================== */
.card-custom {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: none;
    border-top: 4px solid var(--primary-navy);
    position: relative;
}

.card-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(236, 32, 37, 0.05));
    transition: height 0.4s;
    z-index: 0;
}

.card-custom:hover::after {
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 25px 50px rgba(47, 51, 141, 0.15);
    border-top-color: var(--primary-red);
}

.card-custom img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-custom .card-body {
    padding: 30px;
}

.card-custom h5 {
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card-custom p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

/* ========================================================================
   14. FOOTER
   ======================================================================== */
.footer {
    background-color: var(--primary-navy);
    color: var(--white);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand .brand-icon {
    font-size: 2.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 20px;
    line-height: 1.8;
}

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: var(--font-headings);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-red);
    margin-right: 12px;
    font-size: 1.25rem;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px !important;
    height: 45px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white) !important;
    font-size: 1.2rem !important;
    transition: var(--transition-base);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-red) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary-orange);
}

/* ========================================================================
   15. SCROLL TO TOP BUTTON
   ======================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), #c91d22);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(236, 32, 37, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--primary-navy), #1e2256);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(47, 51, 141, 0.4);
}

/* ========================================================================
   16. ANIMATIONS
   ======================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================================================
   17. RESPONSIVE DESIGN - ENHANCED MOBILE FIRST
   ======================================================================== */

/* Tablet & Below (991px) */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-content p {
        font-size: 1.125rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 30px;
    }
    
    .tracking-container {
        padding: 30px;
    }
    
    /* Navbar Tablet */
    .main-navbar {
        padding: 8px 0 !important;
    }
    
    .navbar-brand {
        padding: 4px 0;
    }
    
    .navbar-brand img,
    .navbar-logo {
        height: 42px !important;
        max-height: 42px !important;
        max-width: 170px !important;
    }
    
    .navbar-toggler {
        padding: 7px 11px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .card-custom {
        margin-bottom: 30px;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    /* Top Bar */
    .top-contact-bar {
        padding: 10px 0;
    }
    
    .top-contact-bar .col-md-6 {
        text-align: center !important;
        margin-bottom: 8px;
    }
    
    .top-contact-info span {
        display: block;
        margin-bottom: 5px;
        font-size: 13px;
    }
    
    .top-social-links a {
        margin: 0 8px !important;
    }
    
    /* Navigation Mobile */
    .main-navbar {
        padding: 8px 0 !important;
    }
    
    .main-navbar .container {
        padding-left: 15px;
        padding-right: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .navbar-brand {
        padding: 4px 0;
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    .navbar-brand img,
    .navbar-logo {
        height: 38px !important;
        max-height: 38px !important;
        max-width: 150px !important;
    }
    
    .navbar-toggler {
        padding: 6px 10px;
        border-width: 2px;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .navbar-toggler-icon {
        width: 22px;
        height: 22px;
    }
    
    .navbar-collapse {
        background-color: var(--primary-navy);
        margin-top: 15px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-link {
        padding: 15px 20px !important;
        border-bottom: 1px solid rgba(236, 32, 37, 0.2);
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    /* Mobile Dropdown Styles */
    .navbar-nav .dropdown-menu {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: none;
        border: 1px solid rgba(236, 32, 37, 0.3);
    }
    
    .navbar-nav .dropdown-item {
        color: var(--white);
        padding: 12px 25px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .dropdown-item:hover {
        background: rgba(236, 32, 37, 0.2);
        color: var(--primary-red);
        border-left: 3px solid var(--primary-red);
        padding-left: 28px;
    }
    
    .navbar-nav .dropdown-divider {
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-link:hover {
        background-color: rgba(236, 32, 37, 0.1);
        padding-left: 25px !important;
        border-left: 3px solid var(--primary-red);
    }
    
    .navbar-toggler {
        border: 2px solid var(--primary-red);
        padding: 8px 12px;
        border-radius: 6px;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(236, 32, 37, 0.3);
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ec2025' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .btn-get-quote {
        margin-top: 10px;
        width: 100%;
        text-align: center;
        background-color: var(--primary-red);
        border-color: var(--primary-red);
    }
    
    /* Hero Section */
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 80px 0 60px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-content .btn {
        padding: 10px 24px;
        font-size: 14px;
        margin: 5px;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Cards & Components */
    .service-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .card-custom {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Forms */
    .form-container {
        padding: 25px 20px;
    }
    
    .tracking-container {
        padding: 25px 20px;
    }
    
    .tracking-input-group {
        flex-direction: column;
    }
    
    .tracking-input {
        border-radius: 4px !important;
        margin-bottom: 10px;
    }
    
    .tracking-input-group .btn {
        border-radius: 4px !important;
        width: 100%;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    /* Leadership Section Mobile */
    .leadership-card {
        margin-bottom: 30px;
    }
    
    .leader-img {
        min-height: 300px;
    }
    
    .leader-content {
        padding: 25px 20px;
    }
    
    .leader-content h3 {
        font-size: 1.5rem;
    }
    
    .leader-content .bio {
        font-size: 0.95rem;
    }
    
    .leader-details .contact-item {
        margin-bottom: 15px;
    }

    
    .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-bottom-links li {
        margin: 0 10px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .py-100 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Job Cards */
    .job-card {
        margin-bottom: 20px;
    }
    
    /* Contact Info */
    .contact-info-item {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .contact-info-item i {
        margin: 0 auto 15px;
    }
}

/* Small Mobile (575px and below) */
@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .stat-item {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card,
    .card-custom {
        padding: 20px;
    }
}

/* Large Desktop Full Width */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 5rem;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1540px;
    }
}

/* ========================================================================
   18. UTILITY CLASSES
   ======================================================================== */
.bg-light-custom {
    background-color: var(--light-gray);
}

.bg-navy {
    background-color: var(--primary-navy);
}

.text-red {
    color: var(--primary-red);
}

.text-navy {
    color: var(--primary-navy);
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

/* ========================================================================
   19. LEADERSHIP PAGE STYLES
   ======================================================================== */
.leadership-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    height: 100%;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(47, 51, 141, 0.15);
    border-color: var(--primary-navy);
}

.leader-img {
    position: relative;
    overflow: hidden;
    height: auto;
    max-height: 500px;
}

.leader-img:hover .leader-overlay {
    opacity: 1;
}

.leader-img img {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: contain;
    object-position: center;
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47, 51, 141, 0.9), rgba(236, 32, 37, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leadership-card:hover .leader-overlay {
    opacity: 1;
}

.leader-overlay .social-links {
    display: flex;
    gap: 15px;
}

.leader-overlay .social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-navy);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.leader-overlay .social-links a:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.leader-content {
    padding: 35px;
}

.leader-content h4 {
    color: var(--primary-navy);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.leader-content .position {
    color: var(--primary-red);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.leader-content .bio {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.leader-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e5e7eb;
}

.leader-details p {
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.leader-details i {
    color: var(--primary-red);
    font-size: 1rem;
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(236, 32, 37, 0.12);
    border-color: var(--primary-red);
}

.team-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.08);
}

.team-content {
    padding: 30px 25px;
    text-align: center;
}

.team-content h5 {
    color: var(--primary-navy);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-position {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-contact {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-contact a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 8px;
    color: var(--primary-navy);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-contact a:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* Office Card */
.office-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid #e5e7eb;
}

.office-img {
    height: 100%;
    min-height: 300px;
}

.office-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-content {
    padding: 40px;
}

.office-content h4 {
    color: var(--primary-navy);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.office-details p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.office-details i {
    color: var(--primary-red);
    margin-top: 3px;
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .leader-content,
    .office-content {
        padding: 25px;
    }
    
    .team-img {
        height: 250px;
    }
    
    .leader-img {
        height: auto !important;
        min-height: unset !important;
        max-height: 400px !important;
        overflow: hidden !important;
    }
    
    .leader-img img {
        width: 100% !important;
        height: auto !important;
        max-height: 400px !important;
        object-fit: contain !important;
        display: block !important;
        margin-bottom: 0 !important;
    }
    
    .leadership-card {
        margin-bottom: 1rem;
    }
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.py-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.bg-light-custom {
    background-color: #f8f9fa;
}

/* Modern Enhancement Classes */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-rounded {
    border-radius: 12px;
    overflow: hidden;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===============================================
   ABOUT PAGE STYLES
   =============================================== */

/* Highlight Cards */
.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-red);
}

.highlight-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.highlight-card h4 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.highlight-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-list-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.service-list-item i {
    color: var(--primary-red);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.service-list-item h5 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-list-item p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Commitment Box */
.commitment-box {
    background: var(--primary-navy);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.commitment-box i {
    font-size: 5rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    display: block;
}

.commitment-box h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.commitment-box p {
    color: white;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.95;
}

.commitment-box strong {
    color: var(--primary-red);
    font-weight: 600;
}

/* Mission Vision Cards */
.mission-vision-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-red);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.mission-vision-card .d-flex {
    gap: 1.5rem;
}

.mv-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.mission-vision-card h4 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-vision-card p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Value Cards */
.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    border-top: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-red);
}

.value-icon {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.value-card h4 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

/* CTA Section Enhancements */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&h=900&fit=crop&q=90') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .highlight-card,
    .value-card {
        margin-bottom: 1.5rem;
    }
    
    .service-list-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .commitment-box {
        padding: 2rem 1.5rem;
    }
    
    .commitment-box i {
        font-size: 4rem;
    }
    
    .commitment-box h3 {
        font-size: 1.5rem;
    }
    
    .mission-vision-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .mv-icon {
        font-size: 2rem;
    }
}

/* ===============================================
   SERVICE DETAIL CARDS (for Services Page)
   =============================================== */

.service-detail-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 3px solid transparent;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-red);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff4d52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-detail-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-detail-card h4 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-detail-card p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #6c757d;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .service-detail-card {
        margin-bottom: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .service-detail-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-detail-icon i {
        font-size: 2rem;
    }
}

/* ===============================================
   PARTNERSHIP LOGOS
   =============================================== */

.partnership-logo-card {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.partnership-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    border-color: var(--primary-red);
}

.partnership-logo-card img {
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partnership-logo-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ========================================================================
   SERVICE PAGES - PROFESSIONAL STYLING
   ======================================================================== */
.service-page-hero {
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.service-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), #c91d22);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(236, 32, 37, 0.3);
    margin-bottom: 1.5rem;
}

.service-icon-box i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-red);
    height: 100%;
    transition: all 0.3s ease;
}

.service-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(236, 32, 37, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.service-feature-card h5 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-feature-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-overview-section {
    padding: 100px 0;
}

.service-overview-img {
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.service-cta-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-badge {
    background: linear-gradient(135deg, var(--primary-red), #c91d22);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(236, 32, 37, 0.3);
    display: inline-block;
    text-transform: uppercase;
}

.text-orange {
    color: var(--primary-red) !important;
}

/* Responsive adjustments for service pages */
@media (max-width: 991px) {
    .service-page-hero {
        min-height: 450px;
    }
    
    .service-icon-box {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-box i {
        font-size: 2rem;
    }
    
    .service-overview-img {
        height: 350px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .service-page-hero {
        min-height: 400px;
    }
    
    .service-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-box i {
        font-size: 1.75rem;
    }
    
    .service-overview-img {
        height: 300px;
    }
    
    .service-feature-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Additional Mobile Responsiveness */
    h1 {
        font-size: 2.25rem !important;
    }
    
    h2 {
        font-size: 1.85rem !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
    }
    
    .hero-section {
        min-height: 400px !important;
        height: auto !important;
        padding: 4rem 0;
    }
    
    .section-title h2 {
        font-size: 1.85rem !important;
    }
    
    .section-title p {
        font-size: 0.95rem !important;
    }
    
    .py-100 {
        padding: 60px 0 !important;
    }
    
    .mb-60 {
        margin-bottom: 40px !important;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Card Responsiveness */
    .card {
        margin-bottom: 1.5rem;
    }
    
    /* Image Heights Mobile */
    img[style*="height: 450px"],
    img[style*="height: 550px"] {
        height: 300px !important;
    }
    
    /* Float badges mobile adjustment */
    .position-absolute[style*="m-3"],
    .position-absolute[style*="m-4"] {
        margin: 0.75rem !important;
        font-size: 0.75rem !important;
        padding: 0.5rem 0.75rem !important;
    }
    
    /* Partnership section mobile */
    .col-4 {
        padding: 0.5rem !important;
    }
    
    /* Footer mobile */
    .footer-title {
        font-size: 1.1rem !important;
        margin-top: 2rem;
    }
    
    /* Testimonial cards */
    .col-lg-4[data-aos] {
        margin-bottom: 1.5rem;
    }
    
    /* Stats and metrics */
    [style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
    }
    
    [style*="font-size: 3rem"] {
        font-size: 2.25rem !important;
    }
    
    [style*="font-size: 3.5rem"] {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 576px) {
    /* Extra small devices */
    h1 {
        font-size: 1.85rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    .btn-lg {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
    
    /* Container padding */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Navbar extra small */
    .main-navbar {
        padding: 6px 0 !important;
    }
    
    .main-navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .navbar-brand {
        padding: 3px 0;
        margin-right: 8px;
    }
    
    .navbar-brand img,
    .navbar-logo {
        height: 34px !important;
        max-height: 34px !important;
        max-width: 130px !important;
    }
    
    .navbar-toggler {
        padding: 5px 8px;
    }
    
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Partnership logos */
    .col-4 img {
        max-height: 40px !important;
    }
    
    /* Navbar mobile */
    .navbar-brand img,
    .navbar-logo {
        height: 32px !important;
        max-height: 32px !important;
        max-width: 120px !important;
    }
    
    .navbar-brand {
        padding: 4px 0;
        margin-right: 8px;
    }
    
    .navbar-toggler {
        padding: 5px 8px;
    }
    
    .navbar-toggler-icon {
        width: 20px;
        height: 20px;
    }
    
    .main-navbar {
        padding: 8px 0;
    }
    
    .main-navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ========================================================================
   ENHANCED FORM & PAGE STYLING - Contact, Tracking, Quote Pages
   ======================================================================== */

/* Form Container Enhancements */
.form-container {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 50px;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(47, 51, 141, 0.08);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-navy) 0%, var(--primary-red) 100%);
}

.form-container h3 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 3px;
}

/* Tracking Container Enhancements */
.tracking-container {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(47, 51, 141, 0.08);
}

.tracking-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-navy) 0%, var(--primary-red) 100%);
}

/* Enhanced Form Inputs */
.form-control,
.form-select {
    padding: 14px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:hover,
.form-select:hover {
    border-color: rgba(47, 51, 141, 0.3);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(236, 32, 37, 0.08);
    background: white;
}

.form-control::placeholder {
    color: #adb5bd;
    font-size: 0.95rem;
}

/* Form Labels Enhancement */
.form-label {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

/* Form Groups Spacing */
.form-group {
    margin-bottom: 1.5rem;
}

/* Input Icons */
.form-group .bi {
    color: var(--primary-red);
}

/* Submit Button Enhancement */
.form-container .btn-primary-custom,
.tracking-container .btn-primary-custom {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(236, 32, 37, 0.25);
    transition: all 0.3s ease;
}

.form-container .btn-primary-custom:hover,
.tracking-container .btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(236, 32, 37, 0.35);
}

/* Tracking Input Group */
.tracking-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: stretch;
}

.tracking-input-group .form-control {
    flex: 1;
    height: auto;
}

.tracking-input-group .btn {
    flex-shrink: 0;
    padding: 14px 30px;
    white-space: nowrap;
}

/* Contact Information Cards */
.col-lg-4 .d-flex {
    transition: all 0.3s ease;
}

.col-lg-4 .d-flex:hover {
    transform: translateX(8px);
}

.col-lg-4 .bi {
    transition: all 0.3s ease;
}

.col-lg-4 .d-flex:hover .bi {
    transform: scale(1.1);
    color: var(--primary-red) !important;
}

/* Social Icons Enhancement */
.social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy), #1e2256) !important;
    color: white !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 51, 141, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-red), #c91d22) !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(236, 32, 37, 0.3);
    color: white !important;
    text-decoration: none;
}

/* Map Container Enhancement */
.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Office Location Cards */
.card-custom .card-body {
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.card-custom:hover .card-body {
    transform: translateY(-5px);
}

.card-custom .bi-building {
    transition: all 0.3s ease;
}

.card-custom:hover .bi-building {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-red) !important;
}

/* Feature Items */
.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-item:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-navy), #1e2256);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-red), #c91d22);
    transform: rotate(5deg) scale(1.05);
}

.feature-content h5 {
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--dark-gray);
    margin: 0;
    line-height: 1.6;
}

/* Accordion Enhancements */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    color: var(--primary-navy);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-navy), #1e2256);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(1) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.8;
    background: #f8f9fa;
}

/* Alert Enhancements */
.alert {
    border-radius: 12px;
    border: none;
    padding: 18px 24px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

.alert .bi {
    font-size: 1.3rem;
    vertical-align: middle;
}

/* Invalid Feedback Enhancement */
.invalid-feedback {
    font-size: 0.9rem;
    margin-top: 8px;
    color: var(--primary-red);
    font-weight: 500;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: var(--primary-red);
    background-image: none;
}

/* CTA Banner Enhancement */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e2256 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(236, 32, 37, 0.15), transparent);
    border-radius: 50%;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 50%;
}

.cta-banner h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Page Specific Enhancements */
.py-100 {
    padding: 80px 0;
}

.bg-light-custom {
    background: #f8f9fa;
}

.text-orange {
    color: var(--primary-red) !important;
}

/* Form Check Enhancements */
.form-check-input:checked {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(236, 32, 37, 0.15);
    border-color: var(--primary-red);
}

.form-check-label {
    color: var(--primary-navy);
    font-weight: 500;
    margin-left: 8px;
}

/* Responsive Adjustments for Forms */
@media (max-width: 768px) {
    .form-container,
    .tracking-container {
        padding: 30px 20px;
        border-radius: 15px !important;
    }
    
    .tracking-input-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .tracking-input-group .btn {
        width: 100%;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .form-container h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* ========================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS (PIXEL PERFECT)
   ======================================================================== */

/* Prevent horizontal scroll on all devices */
html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Fix images that might cause overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Tablet Responsive (992px and below) */
@media (max-width: 992px) {
    /* Container adjustments */
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    /* Hero adjustments */
    .hero-section,
    .hero-slide {
        min-height: 500px !important;
        height: auto !important;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-content h1,
    .display-3 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-content .lead {
        font-size: 1.1rem !important;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }
    
    /* Button groups mobile */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    /* Section padding */
    section,
    .py-100 {
        padding: 60px 0 !important;
    }
    
    /* Typography mobile */
    h1 { font-size: 2.25rem !important; }
    h2 { font-size: 1.9rem !important; }
    h3 { font-size: 1.5rem !important; }
    h4 { font-size: 1.25rem !important; }
    
    /* Cards mobile */
    .service-card,
    .card-custom,
    .feature-card {
        margin-bottom: 25px;
    }
    
    /* Grid columns mobile */
    .row.g-4 {
        row-gap: 1.5rem !important;
    }
    
    .row.g-5 {
        row-gap: 2rem !important;
    }
}

/* Mobile Specific (768px and below) */
@media (max-width: 768px) {
    /* Body and Container */
    body {
        font-size: 15px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hero Carousel Mobile */
    .hero-carousel,
    .carousel-item,
    .hero-slide {
        min-height: 500px !important;
        height: 500px !important;
    }
    
    .carousel-indicators {
        bottom: 15px !important;
        margin-bottom: 0;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    
    .carousel-indicators .active {
        width: 30px;
    }
    
    .hero-content {
        padding: 30px 15px 70px 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content h1,
    .display-3 {
        font-size: 1.85rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.15;
    }
    
    .hero-content .lead,
    .hero-content p {
        font-size: 0.95rem !important;
        line-height: 1.5;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }
    
    /* Buttons Mobile */
    .btn,
    .btn-lg {
        padding: 12px 24px !important;
        font-size: 14px !important;
        width: 100%;
        margin: 5px 0 !important;
    }
    
    .btn-primary-custom,
    .btn-outline-light {
        display: block;
        text-align: center;
    }
    
    .hero-buttons,
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 10px !important;
    }
    
    .me-3,
    .ms-3 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Section Headings Mobile */
    .section-title h2 {
        font-size: 1.65rem !important;
        margin-bottom: 1rem;
    }
    
    .section-title p,
    .section-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }
    
    /* Badges Mobile */
    .badge {
        font-size: 0.7rem !important;
        padding: 6px 12px !important;
    }
    
    /* Cards and Services Mobile */
    .service-card,
    .feature-card,
    .card-custom {
        padding: 20px 15px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .service-icon,
    .feature-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.5rem !important;
        margin-bottom: 15px;
    }
    
    .service-card h3,
    .feature-card h3 {
        font-size: 1.25rem !important;
        margin-bottom: 10px;
    }
    
    .service-card p,
    .feature-card p {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }
    
    /* Stats Counter Mobile */
    .stat-item {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.85rem !important;
    }
    
    /* Images Mobile */
    img[style*="height"] {
        height: auto !important;
        max-height: 300px !important;
    }
    
    /* Grid Spacing Mobile */
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .row > * {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Spacing Utilities Mobile */
    .mb-5 { margin-bottom: 2rem !important; }
    .mb-4 { margin-bottom: 1.5rem !important; }
    .mb-3 { margin-bottom: 1rem !important; }
    .py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    
    /* Forms Mobile */
    .form-control {
        font-size: 14px;
        padding: 12px 15px;
        border-radius: 6px;
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .form-select {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
    
    /* Tables Mobile */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table {
        font-size: 13px;
    }
    
    .table th,
    .table td {
        padding: 10px 8px;
        white-space: nowrap;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-title {
        font-size: 1rem !important;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }
    
    /* Scroll to Top Button Mobile */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    /* Partnership Logos Mobile */
    .col-6.col-md-4.col-lg-2,
    .col-4 {
        padding: 10px !important;
    }
    
    .col-4 img,
    .col-6 img {
        max-height: 50px !important;
        width: auto;
        margin: 0 auto;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    /* Contact Info Mobile */
    .contact-info-item {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .contact-info-item i {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    /* Map Mobile */
    .map-container {
        height: 300px !important;
        margin-top: 20px;
    }
}

/* Small Mobile (576px and below) */
@media (max-width: 576px) {
    /* Extra small typography */
    body {
        font-size: 14px;
    }
    
    h1, .display-3 { font-size: 1.5rem !important; }
    h2 { font-size: 1.35rem !important; }
    h3 { font-size: 1.15rem !important; }
    h4 { font-size: 1rem !important; }
    
    .hero-content h1,
    .display-3 {
        font-size: 1.65rem !important;
    }
    
    .hero-content .lead,
    .hero-content p {
        font-size: 0.9rem !important;
    }
    
    /* Container extra small */
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Sections extra small */
    section,
    .py-100 {
        padding: 40px 0 !important;
    }
    
    /* Buttons extra small */
    .btn,
    .btn-lg,
    .btn-sm {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
    
    /* Cards extra small */
    .service-card,
    .card-custom,
    .feature-card {
        padding: 18px 12px;
    }
    
    /* Icons extra small */
    .service-icon,
    .feature-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.35rem !important;
    }
    
    /* Stats extra small */
    .stat-number {
        font-size: 1.75rem !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
    }
    
    /* Grid extra small */
    .row {
        margin-left: -8px;
        margin-right: -8px;
    }
    
    .row > * {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    /* Hero extra small */
    .hero-carousel,
    .carousel-item,
    .hero-slide {
        min-height: 480px !important;
        height: 480px !important;
    }
    
    .carousel-indicators {
        bottom: 12px !important;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }
    
    .carousel-indicators .active {
        width: 24px;
    }
    
    .hero-content {
        padding: 25px 12px 65px 12px;
    }
    
    /* Partnership logos extra small */
    .col-4 img,
    .col-6 img {
        max-height: 40px !important;
    }
    
    /* Forms extra small */
    .form-control,
    .form-select {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .form-label {
        font-size: 13px;
    }
    
    /* Tables extra small */
    .table {
        font-size: 12px;
    }
    
    .table th,
    .table td {
        padding: 8px 6px;
    }
    
    /* Footer extra small */
    .footer-title {
        font-size: 0.95rem !important;
    }
    
    .footer-links li {
        font-size: 13px;
    }
    
    /* Social icons extra small */
    .social-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }
    
    /* Scroll to top extra small */
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

/* Landscape Phone (height less than 500px) */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-carousel,
    .carousel-item,
    .hero-slide {
        min-height: 100vh !important;
        height: 100vh !important;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .hero-content p {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-badge {
        padding: 5px 12px;
        font-size: 0.65rem;
    }
}

/* Fix for iOS Safari bottom bar */
@supports (-webkit-touch-callout: none) {
    .hero-carousel,
    .hero-slide {
        min-height: -webkit-fill-available;
    }
}

/* Prevent zoom on input focus (iOS) */
@media screen and (max-width: 767px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important;
    }
}
