/*
Theme Name: Haulproaus Transport
Description: A professional WordPress theme for Haulproaus Transport company featuring modern design, responsive layout, and comprehensive transport services showcase.
Version: 1.0.0
Author: Professional Web Solutions
Text Domain: haulproaus-transport
*/

/* Mobile Header */
.mobile-header {
    display: none;
    position: relative;
    z-index: 1001;
}

.mobile-header-top {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-header-bottom {
    background: #ff6b35;
    padding: 8px 0;
}

.mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    flex: 1;
}

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

.mobile-logo-text {
    display: flex;
    flex-direction: column;
}

.mobile-hpa {
    font-size: 28px;
    font-weight: 800;
    color: #ff6b35;
    line-height: 1;
    letter-spacing: 2px;
}

.mobile-tagline {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    line-height: 1;
    margin-top: 2px;
    letter-spacing: 1px;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

.mobile-contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

.mobile-contact-item i {
    font-size: 14px;
    color: #fff;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #ff6b35;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-menu.show {
    display: block;
}

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

.mobile-nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list .nav-link {
    display: block;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.mobile-nav-list .nav-link:hover,
.mobile-nav-list .nav-link.active,
.mobile-nav-list .nav-link.mobile-open {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff !important;
}

.mobile-nav-list .dropdown-toggle::after {
    content: "+" !important;
    float: right;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
}

.mobile-nav-list .dropdown-toggle.mobile-open::after {
    content: "-" !important;
}

/* Hide chevron down icon in mobile menu */
.mobile-nav-list .dropdown-toggle i.fas.fa-chevron-down {
    display: none !important;
}

.mobile-nav-list .mega-menu {
    display: none;
    background: #ff6b35;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-nav-list .mega-menu.mobile-open {
    display: block;
}

.mobile-nav-list .mega-menu .mega-menu-content,
.mobile-nav-list .mega-menu .mobile-services-list {
    background: #ff6b35;
    padding: 15px 0;
}

.mobile-nav-list .mega-menu .service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list .mega-menu .service-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
}

.mobile-nav-list .mega-menu .service-list li:last-child {
    border-bottom: none;
}

.mobile-nav-list .mega-menu .service-list a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav-list .mega-menu .service-list a:hover {
    color: #fff;
    text-decoration: none;
}

.mobile-nav-list .mega-menu .service-list a i {
    color: #fff;
    font-size: 16px;
    width: 20px;
}

/* Hide service category titles in mobile menu */
.mobile-nav-list .service-category-title {
    display: none !important;
}

/* Show mobile header on mobile, hide desktop header */
@media (max-width: 991px) {
    .mobile-header {
        display: block;
    }
    
    .header-top {
        display: none;
    }
    
    .navbar {
        display: none !important;
    }
    
    .navbar-toggler {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

/* Hide mobile header on desktop */
@media (min-width: 992px) {
    .mobile-header {
        display: none;
    }
    
    .header-top {
        display: block;
    }
}

/* Hide mobile menu button on desktop */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
}

.navbar-toggler {
    border: none;
    background: transparent;
    padding: 12px 15px;
    margin: 0;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
    display: block;
    visibility: visible;
    opacity: 1;
    width: auto;
    height: auto;
}

/* Ensure hamburger button is always on the left on mobile */
@media (max-width: 991px) {
    .navbar-toggler {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler.active .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler.active .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Mobile menu close button styling */
@media (max-width: 991px) {
    /* Original navbar-toggler is hidden, using new mobile-menu-toggle instead */
}

.navbar-toggler-icon {
    transition: all 0.3s ease;
    width: 25px;
    height: 3px;
    background: white;
    display: block;
    position: relative;
    border-radius: 2px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
    left: 0;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Mobile Menu Dropdown - Slide Down */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ff6b35;
        border-top: 2px solid #e55a2b;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        padding: 0;
        margin: 0;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .navbar-collapse.show {
        display: block !important;
        max-height: 500px; /* Adjust based on content */
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
        margin: 0;
        justify-content: flex-start;
        align-items: stretch;
        text-align: left;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 20px;
        border-bottom: none;
        white-space: normal;
        text-align: left;
        border-radius: 0;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        background: transparent;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
        position: relative;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus,
    .navbar-nav .nav-link.active,
    .navbar-nav .nav-link.mobile-open {
        background: rgba(255, 255, 255, 0.1);
        color: #fff !important;
        padding-left: 30px;
        transform: none;
        box-shadow: none;
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    /* Ensure dropdown arrows and icons are positioned correctly */
    .navbar-nav .nav-link i {
        margin-right: 8px;
        margin-left: 0;
        float: left;
    }
    
    /* Dropdown toggle styling - position after text - override active state */
    .navbar-nav .nav-link.dropdown-toggle::after,
    .navbar-nav .nav-link.dropdown-toggle.active::after {
        content: "+" !important;
        border: none !important;
        font-size: 18px;
        font-weight: bold;
        color: #fff;
        background: transparent !important;
        display: inline-block !important;
        width: auto !important;
        height: auto !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%) !important;
        padding: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        margin: 0 !important;
        float: none !important;
        bottom: auto !important;
        left: auto !important;
    }
    
    /* Rotate + to - when menu is open */
    .navbar-nav .nav-link.dropdown-toggle[aria-expanded="true"]::after,
    .navbar-nav .nav-link.dropdown-toggle.show::after,
    .navbar-nav .nav-link.dropdown-toggle.mobile-open::after,
    .navbar-nav .nav-link.dropdown-toggle.mobile-open.active::after {
        content: "−" !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        bottom: auto !important;
        left: auto !important;
        transform: translateY(-50%) !important;
    }
    
    /* Ensure + shows when mobile-open class is removed */
    .navbar-nav .nav-link.dropdown-toggle:not(.mobile-open)::after,
    .navbar-nav .nav-link.dropdown-toggle:not(.mobile-open).active::after {
        content: "+" !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        bottom: auto !important;
        left: auto !important;
        transform: translateY(-50%) !important;
    }
    
    /* Hide default Bootstrap dropdown arrow */
    .navbar-nav .nav-link.dropdown-toggle::before {
        display: none !important;
    }
    
    /* Hide chevron down icon on mobile */
    .navbar-nav .nav-link.dropdown-toggle i.fas.fa-chevron-down {
        display: none !important;
    }
    
    /* Override any right-alignment from parent styles */
    .navbar-nav .nav-item {
        text-align: left !important;
    }
    
    /* Mobile submenu styling - using custom mobile-open class */
    .navbar-nav ul.dropdown-menu,
    .navbar-nav .mega-menu {
        position: static !important;
        float: none !important;
        width: 100% !important;
        margin-top: 0 !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: none !important;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 1001 !important;
    }
    
    .navbar-nav ul.dropdown-menu.mobile-open,
    .navbar-nav .mega-menu.mobile-open {
        display: block !important;
        opacity: 1;
        max-height: 45vh;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1001 !important;
        visibility: visible !important;
    }
    
    /* Force show when parent has mobile-open class */
    .navbar-nav .nav-item.dropdown .dropdown-toggle.mobile-open + ul.dropdown-menu,
    .navbar-nav .nav-item.dropdown .dropdown-toggle.mobile-open + .mega-menu {
        display: block !important;
        opacity: 1;
        max-height: 45vh;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1001 !important;
        visibility: visible !important;
    }
    
    /* Ensure dropdown toggle is clickable and has proper z-index */
    .navbar-nav .dropdown-toggle {
        cursor: pointer;
        pointer-events: auto;
        z-index: 1002 !important;
        position: relative;
    }
    
    /* Ensure dropdown items have proper z-index */
    .navbar-nav .dropdown-item {
        padding: 12px 40px !important;
        color: #fff !important;
        background: transparent !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        font-size: 14px !important;
        z-index: 1002 !important;
        position: relative;
    }
    
    .navbar-nav .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #fff !important;
    }
    
    .navbar-nav .dropdown-item:last-child {
        border-bottom: none !important;
    }
    
    /* Mega menu items styling for mobile */
    .navbar-nav .mega-menu .mega-menu-content {
        padding: 15px 20px !important;
        color: #fff !important;
    }
    
    .navbar-nav .mega-menu .service-list li {
        margin-bottom: 8px !important;
    }
    
    .navbar-nav .mega-menu .service-list a {
        color: #fff !important;
        padding: 8px 0 !important;
        display: block !important;
    }
    
    .navbar-nav .mega-menu .service-list a:hover {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.1) !important;
        padding-left: 10px !important;
    }
    .service-category-title i {
        color: #fff !important;
    }
    .navbar-nav .mega-menu .service-list a i {
        color: #fff !important;
        margin-right: 10px;
        font-size: 0.9rem;
    }
    
    /* Additional dropdown visibility fixes */
    .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu,
    .navbar-nav .nav-item.dropdown:hover .mega-menu,
    .navbar-nav .nav-item.dropdown.show ul.dropdown-menu,
    .navbar-nav .nav-item.dropdown.show .mega-menu,
    .navbar-nav .nav-item.dropdown .dropdown-toggle.mobile-open + ul.dropdown-menu,
    .navbar-nav .nav-item.dropdown .dropdown-toggle.mobile-open + .mega-menu {
        display: block !important;
        opacity: 1;
        max-height: 45vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    /* Ensure dropdown toggle is clickable */
    .navbar-nav .dropdown-toggle {
        cursor: pointer;
        pointer-events: auto;
    }
    
    /* Debug: Make sure dropdown is visible when mobile-open class is present */
    .navbar-nav ul.dropdown-menu.mobile-open,
    .navbar-nav .mega-menu.mobile-open {
        visibility: visible !important;
        display: block !important;
    }
    
    /* Prevent main menu from closing when clicking dropdown elements */
    .navbar-nav .nav-item.dropdown,
    .navbar-nav .nav-item.dropdown * {
        pointer-events: auto !important;
    }
    
    /* Ensure dropdown toggle area is fully clickable */
    .navbar-nav .dropdown-toggle {
        position: relative;
        z-index: 1003 !important;
    }
    
    /* Make sure dropdown content doesn't interfere with main menu */
    .navbar-nav .nav-item.dropdown.show {
        z-index: 1002 !important;
        position: relative;
    }
}
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Navigation */
.navbar {
    background: #ff6b35;
    padding: 0;
    width: 100%;
    position: relative; /* Important for absolute positioning of dropdown */
    margin: 0;
}

/* Remove any gaps between header and content */
.header {
    margin-bottom: 0;
}

/* Ensure no gaps in mobile view */
@media (max-width: 991px) {
    .header {
        margin-bottom: 0;
    }
    
    .navbar {
        display: none !important;
    }
    
    .navbar-collapse {
        display: none !important;
    }
}
    
    /* Remove any default margins from content sections */
    .hero-section,
    .features-section,
    .welcome-section,
    .services-section,
    .testimonials-section,
    .contact-section {
        margin-top: 0;
        padding-top: 0;
    }
}

/* Mega Menu Dropdown Styles */
.services-dropdown {
    position: relative;
}

.services-dropdown .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 700px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: none;
    padding: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.services-dropdown:hover .mega-menu,
.services-dropdown .mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Create invisible bridge to prevent hover gap */
.services-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
    z-index: 999;
}

/* Ensure smooth hover transition */
.services-dropdown .nav-link {
    position: relative;
    z-index: 1001;
}


.mega-menu-content {
    padding: 25px;
}

.service-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff6b35;
}

.service-category-title i {
    color: #ff6b35;
    margin-right: 8px;
}

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

.service-list li {
    margin-bottom: 8px;
}

.service-list a {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
}

.service-list a:hover {
    background-color: #f8f9fa;
    color: #ff6b35;
    text-decoration: none;
    transform: translateX(5px);
}

.service-list a i {
    width: 16px;
    margin-right: 10px;
    color: #ff6b35;
    font-size: 0.8rem;
}


/* Mobile Responsive Mega Menu */
@media (max-width: 991px) {
    .services-dropdown .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #ff6b35;
        max-height: 45vh;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    
    .mega-menu-content {
        padding: 20px;
    }
    
    /* Custom scrollbar for mega menu */
    .services-dropdown .mega-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .services-dropdown .mega-menu::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }
    
    .services-dropdown .mega-menu::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }
    
    .services-dropdown .mega-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .mega-menu-content .row {
        margin: 0;
    }
    
    .mobile-services-list {
        margin-bottom: 0;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        display: block;
        padding: 8px;
        box-sizing: border-box;
        height: auto;
        max-height: none;
    }
    
    .mega-menu-content .service-list,
    .mobile-services-list .service-list {
        margin-bottom: 5px;
        width: 100%;
    }
    
    .mega-menu-content .service-list li,
    .mobile-services-list .service-list li {
        margin-bottom: 10px;
        padding: 5px 0;
        width: 100%;
        display: block;
    }
    
    /* Ensure mobile services stay within container */
    .mobile-services-list .service-list {
        max-height: none;
        overflow: visible;
    }
    
    .mobile-services-list .service-list li {
        margin-bottom: 3px;
        padding: 4px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mobile-services-list .service-list li:last-child {
        border-bottom: none;
    }
    
    /* Force content to stay within container */
    .services-dropdown .mega-menu .mega-menu-content,
    .services-dropdown .mega-menu .mobile-services-list {
        max-height: calc(45vh - 20px);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .services-dropdown .mega-menu {
        width: 100%;
    }
    
    .mega-menu-content .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .service-category-title {
        font-size: 1rem;
    }
    
    .service-list a {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

/* Show chevron down icon on desktop */
@media (min-width: 992px) {
    .navbar-nav .nav-link.dropdown-toggle i.fas.fa-chevron-down {
        display: inline-block !important;
    }
}

/* Dropdown Animation Enhancements */
.services-dropdown .dropdown-toggle::after {
    display: none;
}

.services-dropdown .nav-link {
    position: relative;
}

.services-dropdown:hover .nav-link {
    color: #ff6b35;
}

.services-dropdown .nav-link i {
    transition: transform 0.3s ease;
}

.services-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Enhanced Hover Effects */
.service-list a:hover i {
    transform: scale(1.1);
}

/* Additional Mobile Responsiveness */
@media (max-width: 576px) {
    .services-dropdown .mega-menu {
        width: 100vw;
        left: -15px;
        right: -15px;
    }
    
    .service-category-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .service-list a {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .services-dropdown .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
    }
    
    .services-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-list a i {
        font-size: 0.9rem;
    }
    
    .service-category-title i {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .services-dropdown .mega-menu {
        display: none !important;
    }
}

.header-top .row {
    align-items: center;
    margin: 0;
    padding-left: 15px;
    padding-right: 15px;
}

.header-top .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
}

.header-top .col-md-6:first-child {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center;
    text-align: left !important;
    flex: 0 0 auto !important;
    width: 50% !important;
    padding-left: 0 !important;
    padding-right: 15px !important;
}

.header-top .col-md-6:last-child {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center;
    text-align: right !important;
    flex: 0 0 auto !important;
    width: 50% !important;
    padding-left: 15px !important;
    padding-right: 0 !important;
}

.header-top {
    padding: 25px 0;
    background: #fff;
    min-height: 100px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left !important;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.logo-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Custom HPA Logo Styling */
.custom-hpa-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 350px;
}

.australia-map {
    width: 50px;
    height: 30px;
    flex-shrink: 0;
}

.map-svg {
    width: 100%;
    height: 100%;
}

.hpa-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hpa-letters {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 28px;
    line-height: 1;
}

.hpa-letters .h,
.hpa-letters .a {
    color: #2563eb;
}

.hpa-letters .p {
    color: #1f2937;
    position: relative;
}

.hpa-letters .p::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 3px;
    background: #ff6b35;
    z-index: -1;
}

.tagline-text {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Footer Version */
.footer-version .hpa-letters .h,
.footer-version .hpa-letters .a {
    color: #ffffff;
}

.footer-version .hpa-letters .p {
    color: #ffffff;
}

.footer-version .tagline-text {
    color: #d1d5db;
}

.logo-hpa {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 32px;
    position: relative;
}

.logo-hpa .h,
.logo-hpa .a {
    color: #ff6b35;
}

.logo-hpa .p {
    color: #000;
    position: relative;
}

.logo-hpa .p::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 3px;
    background: #ff6b35;
    z-index: -1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.big-wheels {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
}

.transport {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
    letter-spacing: 1px;
}

.tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.tagline .line {
    width: 20px;
    height: 2px;
    background: #ff6b35;
}

.tagline .text {
    font-size: 12px;
    color: #000;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-info {
    display: flex;
    gap: 40px;
    justify-content: flex-end !important;
    align-items: center;
    width: 100%;
    text-align: right !important;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    min-width: 120px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #ff6b35;
    border: 2px solid #ff6b35;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #fff;
    font-size: 16px;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
}

.contact-text .label {
    font-size: 12px;
    color: #ff6b35;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text .value {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    background: #ff6b35;
    padding: 0;
    width: 100%;
}

.navbar .container {
    max-width: 1200px;
    padding: 0 30px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 60px;
}

/* Ensure proper positioning context for mobile */
@media (max-width: 991px) {
    .navbar .container {
        position: relative !important;
        justify-content: flex-start !important;
        padding-left: 60px !important;
    }
}

.navbar-collapse {
    width: 100%;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 0;

    justify-content: space-between;
    padding: 15px 0;
    width: 100%;
    margin: 0;
    max-width: 1000px;
}

.navbar-nav .nav-item {
    flex: 1;
    text-align: center;
    margin: 0;
}

.navbar-nav .nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 12px 8px;
    display: block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    border-radius: 4px;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

.dropdown-menu {
    background: #fff;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.dropdown-menu {
    background: #fff;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    min-width: 250px;
}

.dropdown-item {
    color: #666;
    font-size: 14px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 8px;
}

.dropdown-item:hover {
    background: #ff6b35;
    color: #fff;
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    padding: 200px 0 100px;
    text-align: left;
    position: relative;
    min-height: 600px;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #ff6b35;
    font-size: 2.8rem;
    display: block;
    margin-top: 10px;
}

.cta-button {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.hero-phone-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-phone-icon:hover {
    background: #e55a2b;
    transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fff;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Welcome Section */
.welcome {
    padding: 80px 0;
    background: #fff;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ff6b35;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.experience-badge .number {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 500;
    margin-top: 5px;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #333;
}

.welcome-title .highlight {
    color: #ff6b35;
}

.welcome-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.read-more-btn {
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #ff6b35;
    color: #fff;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 80px 0;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 30px;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.9), rgba(26, 26, 26, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.service-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.service-plus {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ff6b35;
}

/* Quote & FAQ Section */
.quote-faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.quote-section,
.faq-section {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.quote-title,
.faq-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-dark {
    background: #333;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #ff6b35;
}

.faq-number {
    font-weight: 700;
    color: #ff6b35;
    margin-right: 15px;
    min-width: 30px;
}

.faq-question h4 {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 0 20px 45px;
    color: #666;
    line-height: 1.6;
}

/* Facts Section */
.facts {
    padding: 80px 0;
    background: #fff;
}

.fact-item {
    text-align: center;
    padding: 40px 20px;
}

.fact-icon {
    width: 80px;
    height: 80px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fff;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 10px;
}

.fact-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: #ff6b35;
    opacity: 0.3;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ff6b35;
    margin-right: 5px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author h5 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: #ff6b35;
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #ff6b35;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-section {
    margin-bottom: 40px;
}


.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Footer Logo Styling */
.footer-logo .custom-logo,
.footer .custom-logo {
    max-height: 70px !important;
    max-width: 280px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.footer-logo .custom-logo-link,
.footer .custom-logo-link {
    display: inline-block !important;
    max-height: 70px !important;
    max-width: 280px !important;
}

.footer-logo .logo-hpa {
    margin-right: 15px;
}

.footer-logo .big-wheels {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.footer-logo .transport {
    font-size: 10px;
    font-weight: 500;
    color: #ccc;
    letter-spacing: 2px;
}

.footer-about {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
}

.contact-details p {
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-details i {
    color: #ff6b35;
    margin-right: 10px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b35;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.scroll-to-top:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

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

.scroll-to-top i {
    display: block;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        padding: 20px 0;
        min-height: 90px;
    }
    
    .logo-main {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    /* Mobile Custom Logo Styling */
    .custom-hpa-logo {
        gap: 10px;
        max-width: 280px;
    }
    
    .australia-map {
        width: 40px;
        height: 24px;
    }
    
    .hpa-letters {
        font-size: 24px;
    }
    
    .tagline-text {
        font-size: 9px;
    }
    
    .logo-hpa {
        font-size: 2.5rem;
    }
    
    .logo-text .big-wheels {
        font-size: 1.2rem;
    }
    
    .logo-text .transport {
        font-size: 0.9rem;
    }
    
    .tagline {
        margin-top: 10px !important;
    }
    
    .tagline .text {
        font-size: 0.8rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
        justify-content: center !important;
        text-align: center !important;
        margin-top: 0;
        width: 100%;
    }
    
    .contact-item {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
        align-items: center;
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .contact-text {
        text-align: left;
        flex: 1;
    }
    
    .contact-text .label {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    
    .contact-text .value {
        font-size: 0.9rem;
        font-weight: 600;
        word-break: break-all;
    }
    

    
    .navbar .container {
        padding: 0 20px;
        max-width: none;
        position: relative;
    }
    
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        justify-content: flex-start;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        white-space: normal;
        text-align: left;
        border-radius: 0;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        transform: none;
        box-shadow: none;
    }
    
    .navbar-nav .nav-link.active::after {
        display: none;
    }
    
    .hero {
        padding: 100px 0 80px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .highlight {
        font-size: 2rem;
    }
    
    .hero-phone-icon {
        position: static;
        margin: 30px auto 0;
        display: flex;
    }
    
    .welcome-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .faq-section {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .testimonials-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .header-top {
        padding: 10px 0;
    }
    
    .logo-hpa {
        font-size: 2rem;
    }
    
    .logo-text .big-wheels {
        font-size: 1rem;
    }
    
    .logo-text .transport {
        font-size: 0.8rem;
    }
    
    .tagline .text {
        font-size: 0.7rem;
    }
    
    .contact-item {
        max-width: 280px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .contact-text .label {
        font-size: 0.7rem;
    }
    
    .contact-text .value {
        font-size: 0.8rem;
    }
    
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    font-family: Arial, sans-serif;
    border-top: 3px solid #fff;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner .cookie-accept {
    background: #fff;
    color: #ff6b35;
    border: 2px solid #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
}

.cookie-banner .cookie-accept:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-banner .cookie-accept:active {
    transform: translateY(0);
}

/* Cookie banner animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Cookie banner icon */
.cookie-banner::before {
    content: '🍪';
    font-size: 18px;
    margin-right: 8px;
}

/* Responsive cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 12px 15px;
    }
    
    .cookie-banner p {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        font-size: 13px;
    }
    
    .cookie-banner .cookie-accept {
        padding: 10px 25px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 10px 12px;
    }
    
    .cookie-banner p {
        font-size: 12px;
        gap: 10px;
    }
    
    .cookie-banner .cookie-accept {
        padding: 8px 20px;
        font-size: 11px;
    }
}

/* Force Logo Styling - High Priority */
.logo-section img,
.header-top img,
.custom-logo,
img[class*="custom-logo"] {
    max-height: 80px !important;
    max-width: 300px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .logo-section img,
    .header-top img,
    .custom-logo,
    img[class*="custom-logo"] {
        max-height: 70px !important;
        max-width: 250px !important;
    }
}

