/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Link Styles */
a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-orange-light);
    text-decoration: underline;
}

/* List Styles */
ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Blockquote */
blockquote {
    border-left: 4px solid var(--accent-orange);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    background-color: var(--neutral-light-gray);
    color: var(--primary-navy);
}

/* Text Formatting */
strong, b {
    font-weight: 600;
    color: var(--primary-navy);
}

em, i {
    font-style: italic;
}

small {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-navy: #0a1a3a;
    --primary-navy-dark: #061128;
    --accent-orange: #f57c00;
    --accent-orange-light: #ff9800;
    --accent-orange-dark: #e65100;
    --neutral-white: #ffffff;
    --neutral-light-gray: #f5f5f5;
    --neutral-gray: #e0e0e0;
    --neutral-dark-gray: #757575;
    --shadow-light: rgba(10, 26, 58, 0.1);
    --shadow-medium: rgba(10, 26, 58, 0.2);
    --shadow-heavy: rgba(10, 26, 58, 0.3);
}

/* Navigation Bar Styles - Transparent initially */
.navbar {
    background-color: transparent;
    color: var(--neutral-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
     backdrop-filter: blur(0px); /* Added for smoother transition */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Remove any transform hiding from navbar */
.navbar {
    /* ... existing styles ... */
    transform: translateY(0) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Reset any transform that might be applied by JavaScript */
.navbar,
.navbar.scrolled {
    transform: translateY(0) !important;
}
/* Navbar with background when scrolled */
.navbar.scrolled {
 background-color: var(--primary-navy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px); /* Added for glass effect */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: relative;
}

/* Logo Styles */
.logo {
    text-decoration: none;
    color: var(--neutral-white);
    display: flex;
    align-items: center;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-container img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .logo-container img {
        max-height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        max-height: 35px;
    }
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: block;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
}

.nav-link {
    color: var(--neutral-white);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    border: 2px solid transparent;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-orange);
    border-color: rgba(245, 124, 0, 0.3);
}

.nav-link.active {
    background-color: rgba(245, 124, 0, 0.1);
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    font-weight: 600;
}

.dropdown-icon {
    font-size: 12px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown {
    position: relative;
}

.dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--neutral-white);
    min-width: 220px;
    box-shadow: 0 8px 25px var(--shadow-heavy);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 100;
    overflow: hidden;
    border: 1px solid var(--neutral-gray);
}

/* Add active class for click behavior */
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

/* .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
} */

.dropdown-item {
    display: block;
    padding: 14px 20px;
    color: var(--primary-navy);
    text-decoration: none;
    border-bottom: 1px solid var(--neutral-gray);
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: rgba(245, 124, 0, 0.1);
    color: var(--accent-orange);
    padding-left: 25px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--neutral-white);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--accent-orange);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background-color: var(--accent-orange);
}

/* Mobile Navigation */
.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-navy-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 0 10px 20px var(--shadow-medium);
    z-index: 999;
}

.mobile-nav.active {
    max-height: 500px;
}

.mobile-menu {
    list-style: none;
    padding: 20px;
}

.mobile-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--neutral-white);
    text-decoration: none;
    padding: 16px 20px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border-radius: 4px;
    margin-bottom: 5px;
    border: 2px solid transparent;
}

.mobile-link:last-child {
    border-bottom: none;
}

.mobile-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-orange);
    border-color: rgba(245, 124, 0, 0.3);
}

.mobile-link.active {
    background-color: rgba(245, 124, 0, 0.1);
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    font-weight: 600;
}

.mobile-dropdown-icon {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-icon {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-left: 10px;
    border-left: 2px solid rgba(245, 124, 0, 0.3);
    padding-left: 10px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 300px;
}

.mobile-dropdown-item {
    display: block;
    color: var(--neutral-white);
    text-decoration: none;
    padding: 12px 15px;
    font-weight: 400;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    border-radius: 4px;
    margin-bottom: 5px;
    border: 1px solid transparent;
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-orange);
    padding-left: 20px;
    border-color: rgba(245, 124, 0, 0.3);
}

/* Modern Loader Styles */
.modern-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.modern-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    max-width: 500px;
    padding: 40px;
}

.wave-loader {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100px;
    margin-bottom: 40px;
}

.wave {
    width: 12px;
    height: 40px;
    margin: 0 4px;
    background: linear-gradient(to top, var(--accent-orange), var(--accent-orange-light));
    border-radius: 6px;
    animation: waveLoader 1.2s ease-in-out infinite;
}

.wave-1 { animation-delay: -1.2s; }
.wave-2 { animation-delay: -1.1s; }
.wave-3 { animation-delay: -1.0s; }
.wave-4 { animation-delay: -0.9s; }
.wave-5 { animation-delay: -0.8s; }

@keyframes waveLoader {
    0%, 60%, 100% {
        transform: scaleY(0.4);
    }
    30% {
        transform: scaleY(1);
    }
}

.loader-logo img {
    max-height: 60px;
    width: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.loader-progress {
    width: 100%;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--accent-orange), var(--accent-orange-light));
    animation: progressFill 3s ease-in-out forwards;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.progress-text {
    color: var(--neutral-white);
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Main Content Styles */
.main-content {
    min-height: 70vh;
    padding: 60px 0;
}

.hero {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--neutral-gray);
}

.subtitle {
    font-size: 1.5rem;
    color: var(--neutral-dark-gray);
    margin-bottom: 25px;
    font-weight: 400;
}
/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 30px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-orange);
}
/* ENHANCED text-stable.css - Added hero-specific fixes to your existing classes */

/* Keep all your existing classes, just add these new properties */

/* Hero text specific styling - ENHANCED */
.hero-text-stable {
    /* Your existing properties */
    position: relative;
    z-index: 20; /* Higher than background */
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    
    /* NEW: Add hero text containment */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: inline-block !important;
    overflow: hidden;
    contain: content;
    
    /* NEW: Responsive font sizing */
    font-size: clamp(1.8rem, 5vw, 3.5rem) !important;
    line-height: 1.2 !important;
    
    /* NEW: Add background safety padding */
    padding: 10px 15px !important;
    margin: 0 auto !important;
    
    /* NEW: Ensure text stays within bounds during animation */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Specific for hero sections - ENHANCED */
.hero-section-stable {
    /* Your existing properties */
    overflow-x: hidden;
    overflow-y: visible !important;
    position: relative;
    will-change: auto;
    
    /* NEW: Hero section containment */
    isolation: isolate !important;
    contain: layout style !important;
    width: 100%;
    max-width: 100vw;
    
    /* NEW: Ensure proper padding */
    padding: 140px 0 80px !important;
}

/* Text container that shouldn't shift - ENHANCED */
.text-container-stable {
    /* Your existing properties */
    position: relative;
    z-index: 10;
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    
    /* NEW: Hero content container fixes */
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    contain: content !important;
    overflow: visible !important;
    text-align: center;
    
    /* NEW: Background blur safety for mobile */
    
     background: transparent !important;
    backdrop-filter: none !important;
}

/* Prevent word breaks from causing layout shifts - ENHANCED */
.text-no-shift {
    /* Your existing properties */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    
    /* NEW: Add containment for hero descriptions */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: inline-block !important;
    overflow: hidden;
    
    /* NEW: Responsive font sizing for descriptions */
    font-size: clamp(1rem, 3vw, 1.5rem) !important;
    line-height: 1.6 !important;
    
    /* NEW: Add safety padding */
    padding: 8px 15px !important;
    margin: 0 auto !important;
}

/* For headings specifically - ENHANCED */
.heading-stable {
    /* Your existing properties */
    position: relative;
    z-index: 10;
    will-change: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-height: 999999px;
    -webkit-text-size-adjust: 100%;
    
    /* NEW: Heading containment for hero */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
    contain: content;
    
    /* NEW: Smooth animation */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Paragraph text that should stay stable - ENHANCED */
.paragraph-stable {
    /* Your existing properties */
    position: relative;
    z-index: 10;
    will-change: auto;
    line-height: 1.6;
    min-height: 0.01px;
    
    /* NEW: Paragraph containment for hero */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
    contain: content;
    
    /* NEW: Add minimum height to prevent layout shift */
    min-height: 60px;
}

/* For text that animates in/out - ENHANCED */
.animated-text-stable {
    /* Your existing properties */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
    
    /* NEW: Animation safety */
    max-width: 100% !important;
    overflow: hidden !important;
    contain: layout style !important;
    backface-visibility: hidden !important;
    
    /* NEW: Responsive animation distance */
    transform: translateY(clamp(20px, 3vw, 30px)) !important;
}

.animated-text-stable.animate {
    /* Your existing properties */
    opacity: 1;
    transform: translateY(0);
    
    /* NEW: Ensure smooth transition */
    transform: translateY(0) !important;
}

/* Fix for text in parallax sections - ENHANCED */
.parallax-text-stable {
    /* Your existing properties */
    position: relative;
    z-index: 30;
    will-change: auto;
    isolation: isolate;
    transform: translateZ(0);
    backface-visibility: hidden;
    
    /* NEW: Parallax text safety */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
    contain: content;
    
    /* NEW: Add background for readability */
  
   
    border-radius: 4px;
    padding: 5px 10px !important;
}

/* ===== NEW CLASSES TO ADD ===== */

/* Hero background specific fix */
.hero-bg-stable {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    overflow: hidden !important;
    will-change: transform !important;
    backface-visibility: hidden !important;
    transform: translateZ(0) !important;
    object-fit: cover !important;
}

/* Hero breadcrumb stability */
.hero-breadcrumb-stable {
    position: relative;
    z-index: 25;
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    max-width: 100% !important;
    overflow: hidden;
    padding: 10px 0 !important;
    margin-bottom: 20px !important;
}

/* Mobile-specific hero fixes */
@media (max-width: 768px) {
    .hero-section-stable {
        padding: 120px 0 60px !important;
    }
    
    .text-container-stable {
        padding: 0 15px !important;
        backdrop-filter: blur(4px);
       
    }
    
    .hero-text-stable {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        padding: 8px 12px !important;
    }
    
    .text-no-shift {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        padding: 6px 10px !important;
    }
    
    .animated-text-stable {
        transform: translateY(15px) !important;
    }
    
    .parallax-text-stable {
        padding: 4px 8px !important;
        backdrop-filter: blur(2px);
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-section-stable {
        padding: 100px 0 40px !important;
    }
    
    .text-container-stable {
        padding: 0 10px !important;
        margin: 0 5px !important;
        width: calc(100% - 10px) !important;
    }
    
    .hero-text-stable {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        padding: 6px 10px !important;
        min-height: 50px;
    }
    
    .text-no-shift {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        padding: 5px 8px !important;
        min-height: 40px;
    }
    
    .animated-text-stable {
        transform: translateY(10px) !important;
    }
}

/* Print styles */
@media print {
    .hero-section-stable {
        background: none !important;
        color: #000 !important;
    }
    
    .hero-bg-stable {
        display: none !important;
    }
    
    .hero-text-stable,
    .text-no-shift,
    .heading-stable,
    .paragraph-stable {
        color: #000 !important;
        text-shadow: none !important;
        background: none !important;
    }
    
    .text-container-stable {
        background: none !important;
        backdrop-filter: none !important;
    }
}
.breadcrumb-item.active span {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.95rem;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}@media (max-width: 768px) {
    .transport-hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .route-features {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
       
    }
    
    .breadcrumb-list {
        justify-content: center;
    }
}

.content-section {
    padding: 30px 0;
}

/* Footer Styles */
.footer {
    background-color: var(--primary-navy-dark);
    color: var(--neutral-white);
    padding-top: 50px;
    border-top: 3px solid var(--accent-orange);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    text-decoration: none;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-description {
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.7;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--neutral-white);
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icons a:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
    border-color: var(--accent-orange-light);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--neutral-white);
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 15px;
    display: inline-block;
    padding: 2px 0;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
    border-bottom-color: var(--accent-orange);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: var(--accent-orange);
    margin-top: 3px;
    font-size: 18px;
    min-width: 20px;
    flex-shrink: 0;
    display: block;
}

.contact-item > div {
    flex: 0 1 auto;
    min-width: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
    color: var(--neutral-white);
}

.contact-item p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    word-break: break-word;
}

/* Mobile responsive for contact items */
@media (max-width: 992px) {
    .contact-info {
        gap: 15px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-item i {
        font-size: 16px;
        flex-shrink: 0;
    }
    
    .contact-item > div {
        flex: 0 1 auto;
        min-width: 0;
    }
    
    .contact-item strong {
        font-size: 14px;
    }
    
    .contact-item p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        gap: 15px;
    }
    
    .contact-item {
        gap: 10px;
        align-items: flex-start;
    }
    
    .contact-item i {
        font-size: 14px;
        margin-top: 2px;
        min-width: 16px;
        flex-shrink: 0;
    }
    
    .contact-item > div {
        flex: 0 1 auto;
        min-width: 0;
    }
    
    .contact-item strong {
        font-size: 13px;
        margin-bottom: 2px;
    }
    
    .contact-item p {
        font-size: 12px;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .contact-info {
        gap: 15px;
    }
    
    .contact-item {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .contact-item i {
        font-size: 18px;
        min-width: 18px;
        margin-top: 0;
        flex-shrink: 0;
    }
    
    .contact-item > div {
        flex: 0 1 auto;
        min-width: 0;
        width: 100%;
    }
    
    .contact-item strong {
        font-size: 13px;
        margin-bottom: 2px;
        line-height: 1.2;
        display: block;
    }
    
    .contact-item p {
        font-size: 12px;
        line-height: 1.3;
        opacity: 0.8;
        margin: 0;
    }
}

/* Copyright Bar */
.copyright-bar {
    background-color: var(--primary-navy);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .copyright-content {
        flex-direction: row;
        text-align: left;
    }
}

.copyright-bar p {
    font-size: 14px;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.legal-links a:hover {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}

/* Back to Top Button - Flying from top animation */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-orange);
    color: var(--neutral-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100vh) scale(0.5);
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Flying from top animation */
.back-to-top.fly-from-top {
    animation: flyFromTop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Flying back to top (disappearing) */
.back-to-top.fly-to-top {
    animation: flyToTop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Keyframes - Flying FROM the top (appearing) */
@keyframes flyFromTop {
    0% {
        transform: translateY(-100vh) scale(0.3) rotate(-180deg);
        opacity: 0;
        bottom: -100px; /* Start above the viewport */
    }
    30% {
        transform: translateY(calc(-100vh + 200px)) scale(0.7) rotate(-90deg);
        opacity: 0.9;
    }
    60% {
        transform: translateY(calc(-100vh + 80px)) scale(1.08) rotate(-5deg);
        opacity: 1;
    }
    85% {
        transform: translateY(calc(-100vh + 10px)) scale(0.98) rotate(2deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
        bottom: 30px; /* Final position */
    }
}

/* Keyframes - Flying TO the top (disappearing) */
@keyframes flyToTop {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 1;
        bottom: 30px;
    }
    25% {
        transform: translateY(-40px) scale(1.1) rotate(8deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-200px) scale(0.8) rotate(-20deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-500px) scale(0.5) rotate(-90deg);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) scale(0.2) rotate(-180deg);
        opacity: 0;
        bottom: -100px;
    }
}

/* Hover effects */
.back-to-top:hover {
    background-color: var(--accent-orange-light);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
}

.back-to-top:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Optional: Trailing effect for the fly animation */
.back-to-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 124, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -1;
}

.back-to-top.fly-from-top::after {
    animation: trailEffect 0.35s ease-out forwards;
}

@keyframes trailEffect {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
    
    @keyframes flyFromTop {
        0% {
            transform: translateY(-100vh) scale(0.3) rotate(-180deg);
            opacity: 0;
            bottom: -100px;
        }
        100% {
            transform: translateY(0) scale(1) rotate(0deg);
            opacity: 1;
            bottom: 20px;
        }
    }
    
    @keyframes flyToTop {
        0% {
            transform: translateY(0) scale(1) rotate(0deg);
            opacity: 1;
            bottom: 20px;
        }
        100% {
            transform: translateY(-100vh) scale(0.2) rotate(-180deg);
            opacity: 0;
            bottom: -100px;
        }
    }
}

@media (max-width: 480px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 16px;
    }
    
    @keyframes flyFromTop {
        0% {
            transform: translateY(-100vh) scale(0.3) rotate(-180deg);
            opacity: 0;
            bottom: -100px;
        }
        100% {
            transform: translateY(0) scale(1) rotate(0deg);
            opacity: 1;
            bottom: 15px;
        }
    }
    
    @keyframes flyToTop {
        0% {
            transform: translateY(0) scale(1) rotate(0deg);
            opacity: 1;
            bottom: 15px;
        }
        100% {
            transform: translateY(-100vh) scale(0.2) rotate(-180deg);
            opacity: 0;
            bottom: -100px;
        }
    }
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

/* Primary CTA Button */
.hero-cta-button.primary {
    background-color: var(--accent-orange);
    color: var(--neutral-white);
}

.hero-cta-button.primary:hover {
    background-color: var(--accent-orange-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.4);
}

.hero-cta-button.primary:active {
    transform: translateY(-1px);
}

/* Secondary CTA Button */
.hero-cta-button.secondary {
    background-color: transparent;
    color: var(--neutral-white);
    border: 2px solid var(--neutral-white);
}

.hero-cta-button.secondary:hover {
    background-color: var(--neutral-white);
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-cta-button.secondary:active {
    transform: translateY(-1px);
}

/* Responsive CTA Buttons */
@media (max-width: 768px) {
    .hero-cta-buttons {
        gap: 12px;
        margin-top: 25px;
    }
    
    .hero-cta-button {
        padding: 12px 24px;
        font-size: 14px;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .hero-cta-buttons {
        gap: 10px;
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-button {
        padding: 12px 28px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}