/* ===== GLOBAL FONT SETTINGS ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ===== RESPONSIVE HEADING STYLES ===== */
/* Base heading styles - Mobile first */
#step1 h2,
.datetime-header h3,
.address-header h3,
.datetime-card-header h4,
.address-card-header h4,
.feature-category h4,
.pricing-breakdown h4,
.rental-summary h3,
.addon-option h3,
.step1-summary-section .rental-summary h3,
.step3-left .rental-summary h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Mobile styles (default) */
#step1 h2 {
    font-size: 1.5rem;
}

.datetime-header h3,
.address-header h3 {
    font-size: 1.25rem;
}

.datetime-card-header h4,
.address-card-header h4,
.feature-category h4,
.pricing-breakdown h4,
.rental-summary h3,
.addon-option h3,
.step1-summary-section .rental-summary h3,
.step3-left .rental-summary h3 {
    font-size: 1.1rem;
}

/* Tablet styles */
@media (min-width: 768px) {
    #step1 h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .datetime-header h3,
    .address-header h3 {
        font-size: 1.5rem;
    }
    
    .datetime-card-header h4,
    .address-card-header h4,
    .feature-category h4,
    .pricing-breakdown h4,
    .rental-summary h3,
    .addon-option h3,
    .step1-summary-section .rental-summary h3,
    .step3-left .rental-summary h3 {
        font-size: 1.3rem;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    #step1 h2 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .datetime-header h3,
    .address-header h3 {
        font-size: 1.75rem;
    }
    
    .datetime-card-header h4,
    .address-card-header h4,
    .feature-category h4,
    .pricing-breakdown h4,
    .rental-summary h3,
    .addon-option h3,
    .step1-summary-section .rental-summary h3,
    .step3-left .rental-summary h3 {
        font-size: 1.5rem;
    }
}



/* ===== HEADER STYLES ===== */

/* Header Container */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3a4a 25%, #0f2d3d 75%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    background-size: 400% 400%;
    animation: diagonalScroll 20s ease-in-out infinite;
    height: 72px; /* Explicit height to ensure consistent spacing */
}

.header.scrolled {
    background: linear-gradient(135deg, #1e3a4a 25%, #0f2d3d 75%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(25px);
}

/* Enhanced diagonal scroll effects */
.header:hover {
    animation: diagonalScroll 4s ease-in-out infinite;
}

.header.scrolled:hover {
    animation: diagonalScroll 3s ease-in-out infinite;
}

/* Smooth transition for animation changes */
.header,
.header.scrolled {
    transition: all 0.3s ease, animation 0.3s ease;
}

/* Alternative diagonal scroll for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .header,
    .header.scrolled {
        animation: none;
        background: linear-gradient(135deg, #1e3a4a 25%, #0f2d3d 75%);
        background-size: 200% 200%;
        background-position: center;
    }
    
    .header:hover,
    .header.scrolled:hover {
        animation: none;
    }
}

/* Diagonal scroll animation */
@keyframes diagonalScroll {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3a4a 25%, #0f2d3d 75%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    background-size: 400% 400%;
    animation: diagonalScroll 20s ease-in-out infinite;
    height: 72px; /* Explicit height to ensure consistent spacing */
}

.navbar.scrolled {
    background: linear-gradient(135deg, #1e3a4a 25%, #0f2d3d 75%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(25px);
}

.navbar:hover {
    animation: diagonalScroll 4s ease-in-out infinite;
}

.navbar.scrolled:hover {
    animation: diagonalScroll 3s ease-in-out infinite;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-logo:hover img {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    align-items: flex-start;
}

.the-text {
    font-size: 0.625rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.company-name-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.company-name {
    font-size: 1.375rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.2;
    text-transform: uppercase;
}

.rentals-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    margin-top: 0.125rem;
}

.rentals-text {
    font-size: 0.6875rem;
    font-weight: 400;
    color: #d4a574;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.line-accent-bottom {
    width: 24px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, #d4a574 50%, transparent 100%);
    border-radius: 0.75px;
    transition: width 0.3s ease;
}

.nav-logo:hover .line-accent-bottom {
    width: 32px;
}

.mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Phone Number and Book Now Button */
.phone-number {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.phone-number:hover {
    color: #64c8ff;
    background: rgba(255, 255, 255, 0.1);
}

.phone-number i {
    color: #d4a574;
    font-size: 1rem;
}

.book-now {
    background: linear-gradient(135deg, #d4a574, #f59e0b);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

.book-now:hover {
    background: linear-gradient(135deg, #f59e0b, #d4a574);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}




.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
}

/* Brand Section */
.brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-shrink: 0;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: white;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-logo:hover img {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    align-items: center;
}

.brand-primary {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    align-items: center;
}

.brand-prefix {
    font-size: 0.625rem;
    font-weight: 400; /* Medium weight for better readability */
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.15em; /* Wider letter spacing for small text */
    text-transform: uppercase;
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.brand-name {
    font-size: 1.375rem;
    font-weight: 300; /* Lighter weight for thinner strokes */
    color: #ffffff;
    letter-spacing: 0.1em; /* Slightly tighter letter spacing */
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.2;
    text-transform: uppercase;
}

.brand-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.125rem;
}

.brand-tagline {
    font-size: 0.6875rem;
    font-weight: 400; /* Medium weight for consistency */
    color: #d4a574;
    letter-spacing: 0.2em; /* Wider letter spacing for small text */
    text-transform: uppercase;
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.brand-accent {
    width: 24px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, #d4a574 50%, transparent 100%);
    border-radius: 0.75px;
    transition: width 0.3s ease;
}

.brand:hover .brand-accent {
    width: 32px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
    margin-left: auto;
}



.nav-primary {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-secondary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Navigation Links */
.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 8px 12px !important;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

/* Force navigation link padding with maximum specificity */
.nav-menu .nav-primary .nav-link,
.nav-menu .nav-primary .nav-dropdown-toggle,
.nav-menu .nav-secondary .nav-contact {
    padding: 8px 12px !important;
}

/* Additional specificity to override any conflicting rules */
.nav-wrapper .nav-menu .nav-primary .nav-link,
.nav-wrapper .nav-menu .nav-primary .nav-dropdown-toggle,
.nav-wrapper .nav-menu .nav-secondary .nav-contact {
    padding: 8px 12px !important;
}

.nav-link:hover {
    color: #64c8ff !important;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d4a574;
    border-radius: 1px;
    transition: all 0.2s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 8px 12px !important;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    white-space: nowrap;
}

.nav-dropdown-toggle:hover {
    color: #64c8ff !important;
    background: rgba(255, 255, 255, 0.1);
}

.nav-dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(30, 58, 74, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1001;
    padding: 0.5rem 0;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown-link:last-child {
    border-bottom: none;
}

.nav-dropdown-link:hover {
    color: #64c8ff !important;
    background: rgba(255, 255, 255, 0.1);
    padding-left: 1.25rem;
}

.nav-dropdown-link:first-child {
    border-radius: 8px 8px 0 0;
}

.nav-dropdown-link:last-child {
    border-radius: 0 0 8px 8px;
}

/* Contact Link */
.nav-contact {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px !important;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
}

.nav-contact:hover {
    color: #64c8ff !important;
    background: rgba(255, 255, 255, 0.1);
}

.nav-contact::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d4a574;
    border-radius: 1px;
    transition: all 0.2s ease;
    transform: translateX(-50%);
}

.nav-contact:hover::after {
    width: 100%;
}

/* CTA Button */
.nav-cta {
    background: #d4a574 !important; /* Muted orange/beige */
    color: #1e3a4a !important; /* Dark teal/charcoal */
    border: none !important;
    font-weight: 600 !important; /* Semi-bold weight */
    font-size: 0.8rem !important; /* Slightly smaller font */
    padding: 0.5rem 1.25rem !important; /* Reduced padding */
    border-radius: 50px !important; /* Pill shape */
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important; /* No shadow for flat design */
    min-height: 36px !important; /* Reduced height */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    white-space: nowrap !important;
    position: relative !important;
    overflow: hidden !important;
}

.nav-cta:hover {
    background: #c19a6b !important; /* Slightly darker on hover */
    color: #1e3a4a !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3) !important;
}

.nav-cta:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3) !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 3px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.mobile-toggle:hover .hamburger-line {
    background: #64c8ff;
    box-shadow: 0 2px 6px rgba(100, 200, 255, 0.3);
}

/* Mobile Toggle Animation */
.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #d4a574;
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #d4a574;
}

/* Enhanced hover effects */
.mobile-toggle:hover .hamburger-line:nth-child(1) {
    transform: translateY(-1px);
}

.mobile-toggle:hover .hamburger-line:nth-child(3) {
    transform: translateY(1px);
}

.mobile-toggle.active:hover .hamburger-line:nth-child(1),
.mobile-toggle.active:hover .hamburger-line:nth-child(3) {
    background: #f0c080;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (min-width: 1400px) {
    .nav-wrapper {
        max-width: 1600px;
        padding: 0 3rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .brand-logo img {
        width: 56px;
        height: 56px;
    }
    
    .nav-menu {
        gap: 2.5rem;
    }
    
    .nav-primary {
        gap: 1.75rem;
    }
}

/* Desktop */
@media (max-width: 1399px) and (min-width: 1025px) {
    .nav-wrapper {
        max-width: 1200px;
        padding: 0 2rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-wrapper {
        max-width: 1200px;
        padding: 0 2rem;
    }
}

/* Tablet Portrait & Mobile */
@media (max-width: 1040px) {
    .header,
    .navbar {
        height: 68px; /* Smaller height for mobile */
    }
    
    .nav-wrapper {
        padding: 0 1rem;
        gap: 0.75rem;
        height: 68px;
        justify-content: space-between;
    }

    .brand-name {
        font-size: 1.125rem;
    }
    
    .brand-logo img {
        width: 44px;
        height: 44px;
    }
    
    /* Hide logo image on mobile */
    @media (max-width: 768px) {
        .brand-logo img {
            display: none;
        }
        
        /* Center the brand text in mobile view */
        .nav-wrapper {
            justify-content: space-between;
            position: relative;
        }
        
        .brand {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            justify-content: center;
        }
        
        .brand-name {
            white-space: nowrap;
            text-align: center;
        }
        
        .mobile-toggle {
            order: 3;
            margin-left: 0;
        }
    }
    
    .brand-prefix {
        font-size: 0.5rem;
    }
    
    .brand-tagline {
        font-size: 0.625rem;
    }
    
    /* Hide desktop navigation completely */
    .nav-menu {
        display: none !important;
        position: absolute !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Show mobile toggle */
    .mobile-toggle {
        display: flex !important;
        order: 3;
        margin-left: auto;
    }
    
    /* Mobile menu styles */
    .nav-menu.mobile-active {
        display: flex !important;
        position: fixed !important;
        top: 68px !important;
        right: -100% !important;
        width: 100% !important;
        height: calc(100vh - 68px) !important;
        background: rgba(15, 45, 61, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        padding: 1.5rem 1rem !important;
        gap: 1.5rem !important;
        z-index: 999 !important;
        overflow-y: auto !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-left: 0 !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3) !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .nav-menu.mobile-active.active {
        right: 0 !important;
    }
    
    /* Add subtle overlay effect */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: -1;
    }
    
    .nav-menu.active::before {
        opacity: 1;
    }
    
    .nav-primary {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .nav-secondary {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    
    .nav-link,
    .nav-contact {
        color: #ffffff;
        font-size: 1rem;
        padding: 0.5rem 0.75rem !important;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    width: 100%;
    text-align: center;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .nav-link:hover,
    .nav-contact:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(100, 200, 255, 0.3);
    color: #64c8ff !important;
        transform: translateX(-5px);
}

    /* Mobile Dropdown Styles */
    .nav-dropdown {
        width: 100%;
}

    .nav-dropdown-toggle {
    width: 100%;
        justify-content: center;
        padding: 0.5rem 0.75rem !important;
        min-height: 44px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 500;
        color: #ffffff;
        transition: all 0.3s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .nav-dropdown-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(100, 200, 255, 0.3);
    color: #64c8ff !important;
        transform: translateX(-5px);
    }
    
    .nav-dropdown-toggle i {
        transition: transform 0.3s ease;
        font-size: 0.75rem;
    }
    
    .nav-dropdown-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
    }
    
    .nav-dropdown-menu {
        width: 100%;
        display: none;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        margin-top: 0.5rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-dropdown-menu.active {
        display: block;
    }
    
    .nav-dropdown-link {
        display: block;
        width: 100%;
        padding: 0.75rem 1.25rem;
        color: #ffffff;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-dropdown-link:last-child {
        border-bottom: none;
    }
    
    .nav-dropdown-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #64c8ff !important;
        transform: translateX(-5px);
    }
    
    .nav-cta {
        padding: 0.5rem 1.25rem !important;
        font-size: 0.9rem !important;
        background: #d4a574 !important;
        color: #1e3a4a !important;
        border-radius: 50px !important;
        border: none !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        min-height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .nav-cta:hover {
        background: #c19a6b !important; /* Slightly darker on hover */
        color: #1e3a4a !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3) !important;
    }
    
    .nav-cta:active {
        transform: translateY(0) !important;
        box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3) !important;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* Mobile Large */
@media (max-width: 480px) {
    .nav-wrapper {
        height: 64px;
        padding: 0 0.75rem;
        gap: 0.5rem;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-logo img {
        width: 40px;
    height: 40px;
}

    .brand-prefix {
        font-size: 0.45rem;
    }
    
    .brand-tagline {
        font-size: 0.5625rem;
    }
    
    .nav-menu {
        top: 64px;
        height: calc(100vh - 64px);
        padding: 1.25rem 0.75rem;
        gap: 1.25rem;
    }
    
    .nav-primary {
        gap: 0.875rem;
    }
    
    .nav-secondary {
        gap: 0.875rem;
    }
    
    .nav-link,
    .nav-contact {
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem !important;
    }
    
    .nav-cta {
        padding: 0.5rem 1.25rem !important;
        font-size: 0.95rem;
    }
}

/* Mobile Small */
@media (max-width: 360px) {
    .nav-wrapper {
        height: 60px;
        padding: 0 0.5rem;
        gap: 0.375rem;
    }
    
    .brand-name {
        font-size: 0.9375rem;
    }
    
    .brand-logo img {
        width: 36px;
        height: 36px;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 1rem 0.5rem;
        gap: 1rem;
    }
    
    .nav-primary {
        gap: 0.75rem;
    }
    
    .nav-secondary {
        gap: 0.75rem;
    }
    
    .nav-link,
    .nav-contact {
        font-size: 0.9rem;
        padding: 0.5rem 0.75rem !important;
    }
    
    .nav-cta {
        padding: 0.5rem 1.125rem !important;
        font-size: 0.85rem !important;
        background: #d4a574 !important;
        color: #1e3a4a !important;
        border-radius: 50px !important;
        border: none !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        min-height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .nav-menu {
        padding: 0.75rem;
        gap: 1rem;
        justify-content: center;
    }
    
    .nav-primary {
        gap: 0.75rem;
    }
    
    .nav-secondary {
        gap: 0.75rem;
    }
    
    .nav-link,
    .nav-contact {
        padding: 0.5rem 0.75rem !important;
        min-height: 36px;
    }
    
    .nav-cta {
        padding: 0.5rem 1.25rem !important;
        min-height: 36px;
    }
}

/* ===== MOBILE NAVIGATION ANIMATIONS ===== */

@media (max-width: 1040px) {
    .nav-menu {
        transform: none;
        opacity: 1;
        visibility: visible;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Staggered entrance animations for menu items */
    .nav-primary a,
    .nav-secondary a {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
    }
    
    .nav-menu.active .nav-primary a,
    .nav-menu.active .nav-secondary a {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Animation delays for 6 nav links + 2 action items */
    .nav-menu.active .nav-primary a:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-primary a:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active .nav-primary a:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active .nav-primary a:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active .nav-primary a:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active .nav-primary a:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active .nav-secondary a:nth-child(1) { transition-delay: 0.4s; }
    .nav-menu.active .nav-secondary a:nth-child(2) { transition-delay: 0.45s; }
}

/* ===== ACCESSIBILITY & ENHANCEMENTS ===== */

/* Focus states */
.nav-link:focus,
.nav-contact:focus,
.nav-cta:focus,
.mobile-toggle:focus,
.nav-dropdown-toggle:focus {
    outline: 2px solid #64c8ff;
    outline-offset: 2px;
    border-radius: 6px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .header {
        border-bottom: 2px solid #ffffff;
        background: #1e3a4a;
    }
    
    .nav-link:hover,
    .nav-contact:hover {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid #ffffff;
    }
    
    .nav-cta {
        border: 2px solid #ffffff;
        background: #d4a574;
        color: #000000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .header,
    .nav-menu,
    .nav-link,
    .nav-contact,
    .nav-cta,
    .brand-logo img,
    .brand-accent,
    .mobile-toggle {
        transition: none;
    }
    
    .nav-menu.active .nav-primary a,
    .nav-menu.active .nav-secondary a {
        transition: none;
        transition-delay: 0s;
    }
}

/* Print styles */
@media print {
    .header {
        position: static;
        background: #ffffff;
        box-shadow: none;
        border-bottom: 1px solid #000000;
    }
    
    .mobile-toggle,
    .nav-menu {
        display: none;
    }
    
    .nav-wrapper {
        height: auto;
        padding: 1rem 0;
    }
    
    .brand,
    .brand-logo img {
        filter: grayscale(100%);
    }
}

/* ===== SMOOTH SCROLLING ===== */

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

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ===== FOOTER STYLES ===== */

/* Container for footer content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer {
    background: linear-gradient(135deg, #1e3a4a 25%, #0f2d3d 75%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(100, 200, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(100, 200, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(100, 200, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(100, 200, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 80%, rgba(100, 200, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 5px;
    box-sizing: border-box;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #d4a574;
    font-weight: 600;
    text-align: center;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.footer-section ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    text-align: center;
}

/* Contact section left alignment */
.footer-section.contact ul,
.footer-section.contact ul li {
    text-align: left;
}

.footer-section.contact ul li i {
    margin-right: 10px;
    color: #3498db;
    width: 16px; /* Fixed width for consistent alignment */
    text-align: center;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #bdc3c7;
}

/* Mobile line break for copyright */
.mobile-break {
    display: none;
}

/* Company description styles */
.company-description {
    text-align: left;
    line-height: 1.6;
    color: #bdc3c7;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        justify-items: center;
    }
    
    .footer-section {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.1px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        justify-items: center;
    }

    .footer-section {
        padding: 0 20px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .company-description {
        text-align: center;
    }
    
    /* Show line break on mobile for copyright */
    .mobile-break {
        display: inline;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.1px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-section {
        padding: 0 15px;
        max-width: 280px;
    }
}

