.quote-form {
    margin-top: 30px;
}

.quote-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    padding: 15px 20px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    height: 50px;
}

.custom-footer {
    background: linear-gradient(135deg, #001430 0%, #0056d3 100%) !important;
    color: #ffffff !important;
    width: 100%;
}

.custom-footer h5,
.custom-footer p,
.custom-footer li,
.custom-footer td,
.custom-footer span {
    color: #ffffff !important;
}

.custom-footer a {
    color: #ffffff !important;
    text-decoration: none;
}

.custom-footer a:hover {
    text-decoration: underline;
}

.custom-footer .form-control {
    border: 1px solid #ffffff;
    color: #ffffff !important;
}

.custom-footer .form-control::placeholder {
    color: #ffffff;
    opacity: 0.8;
}

.custom-footer .copyright-bar {
    background-color: rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.custom-footer h5 {
    color: #FEE16D !important;
    /* Force gold */
}

.custom-footer .fa-li i {
    color: #FEE16D !important;
    /* Gold icons */
}

.custom-footer hr {
    border: 0;
    height: 2px;
    background: linear-gradient(90deg, #FEE16D, #fcd34d, #FEE16D);
    margin: 0 0 1rem 0;
}

.quote-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #014AB2;
    box-shadow: 0 0 0 0.2rem rgba(1, 74, 178, 0.25);
    color: #fff;
    outline: none;
}

.quote-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.quote-form .main-button {
    background: linear-gradient(45deg, #014AB2, #0066ff);
    border: none;
    border-radius: 25px;
    color: #fff;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    height: 50px;
    cursor: pointer;
}

.quote-form .main-button:hover {
    background: linear-gradient(45deg, #0066ff, #014AB2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 74, 178, 0.3);
}

.quote-form .form-group {
    position: relative;
}

@media (max-width: 768px) {
    .quote-form .form-control {
        margin-bottom: 15px;
    }
}

/* Banner Heading Styles */
.banner-heading {
    margin-bottom: 25px;
}

.main-heading {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.text-black {
    color: #014AB2;
    font-weight: 600;
    font-size: 24px;
    /* -webkit-text-stroke: 0.5px #014AB2; */
}

.text-black-reg {
    color: #000;
    font-weight: 600;
    font-size: 24px;
    /* -webkit-text-stroke: 0.5px #000; */
}

.text-blue {
    color: #014AB2;
    font-weight: 900;
    -webkit-text-stroke: 0.5px #014AB2;
}

.banner_text {
    color: #666 !important;
    font-family: "Roboto", sans-serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin-bottom: 25px !important;
    font-weight: 400 !important;
}

.banner_text_get_txt {
    color: #666 !important;
    align-items: right;
    font-family: "Roboto", sans-serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    margin-bottom: 25px !important;
    /* margin-left: 200px; */
    font-weight: 400 !important;
}

/* Tab Form Container Styles */
.tab-form-container {
    margin-top: 20px;
}

/* Tab Navigation Styles */
.tab-nav {
    display: flex;
    margin: 0 0 0 0;
    padding: 0;
    list-style: none;
    gap: 10px;
    position: relative;
}

.tab-nav li {
    flex: 1;
    position: relative;
}

.tab-nav button {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(1, 74, 178, 0.2);
    color: #014AB2;
    font-size: 14px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px 15px 0 0;
    position: relative;
    z-index: 2;
}

.tab-nav button.active {
    background: #014AB2;
    color: #ffffff;
    border-color: #014AB2;
    border-bottom: 2px solid #014AB2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 74, 178, 0.3);
}

.tab-nav button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #014AB2;
    z-index: 3;
}

.tab-nav button:hover {
    background: #014AB2;
    color: #FFFC00;
    border-color: #014AB2;
    transform: translateY(-1px);
}

/* Connection indicator */
.tab-nav::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(200, 200, 200, 0.3);
    z-index: 1;
}

/* Tab Content Styles */
.tab-content {
    background: linear-gradient(135deg, #225daf 0%, #014AB2 100%);
    border-radius: 0 0 25px 25px;
    border-top: 2px solid #014AB2;
    padding: 30px;
    border-left: 2px solid rgba(1, 74, 178, 0.1);
    border-right: 2px solid rgba(1, 74, 178, 0.1);
    border-bottom: 2px solid rgba(1, 74, 178, 0.1);
    position: relative;
    overflow: visible;
    margin-top: -2px;
}

.tab-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 252, 0, 0.08), rgba(1, 74, 178, 0.05));
    border-radius: 25px;
    z-index: -1;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Compact Quote Form Styles */
.compact-quote-form {
    background: transparent;
}

/* Track Form Styles */
.track-form {
    background: transparent;
}

.compact-quote-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 252, 0, 0.08), rgba(1, 74, 178, 0.05));
    border-radius: 25px;
    z-index: -1;
}

.form-row {
    display: flex;
    margin-bottom: 12px;
    gap: 10px;
}

.form-col-half {
    flex: 1;
}

.form-col-full {
    flex: 1;
}

.compact-input {
    color: #014AB2 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 15px;
    padding: 18px 24px;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    height: 50px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.compact-input::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(1, 74, 178, 0.03), rgba(255, 252, 0, 0.02));
    border-radius: 13px;
    pointer-events: none;
    z-index: -1;
}

.compact-input:focus {
    background-color: #ffffff !important;
    border-color: #FFFC00 !important;
    color: #014AB2 !important;
    outline: none;
    transform: translateY(-2px);
}

.compact-input::placeholder {
    color: #000 !important;
    font-weight: 400;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
}

.compact-quote-btn {
    background-color: #FEE16D !important;
    color: #000 !important;
    border: none;
    border-radius: 20px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600 !important;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    height: 50px;
    cursor: pointer;
}

.compact-quote-btn:hover {
    background-color: #FFFC00 !important;
    color: #014AB2 !important;
    transform: translateY(-2px);
}

.compact-quote-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 10px rgba(255, 252, 0, 0.3);
}

/* Track Package Form Styles - matching compact form styling */
.track-input {
    color: #014AB2 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 15px;
    padding: 14px 20px;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    height: 45px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.track-input:focus {
    background-color: #ffffff !important;
    border-color: #FFFC00 !important;
    color: #014AB2 !important;
    outline: none;
    transform: translateY(-2px);
}

.track-input::placeholder {
    color: #000 !important;
    font-weight: 400;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
}

.track-btn {
    background-color: #FEE16D !important;
    color: #000 !important;
    border: none;
    border-radius: 20px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600 !important;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    height: 50px;
    cursor: pointer;
}

.track-btn:hover {
    background-color: #FFFC00 !important;
    color: #014AB2 !important;
    transform: translateY(-2px);
}

.track-btn:active {
    transform: translateY(0px);
    box-shadow: 0 2px 10px rgba(255, 252, 0, 0.3);
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 36px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-col-half {
        margin-bottom: 12px;
    }

    /* Fix How Parcel Horse Works section in mobile */
    #about.about-us.section {
        background: linear-gradient(135deg, #014AB2 0%, #0066CC 100%) !important;
        padding: 60px 0 !important;
    }

    /* Hide the illustration in mobile view */
    #about .left-image {
        display: none !important;
    }

    /* Make the services section full width in mobile */
    #about .col-lg-8 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    /* Style the service items for mobile */
    #about .services .item {
        background: rgba(255, 255, 255, 0.95) !important;
        border-radius: 20px !important;
        padding: 30px 20px !important;
        margin-bottom: 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        text-align: center !important;
    }

    #about .services .item .icon {
        margin-bottom: 20px !important;
        text-align: center !important;
    }

    #about .services .item .icon img {
        width: 60px !important;
        height: 60px !important;
    }

    #about .services .item .right-text h4 {
        color: #014AB2 !important;
        font-weight: 700 !important;
        margin-bottom: 15px !important;
        font-size: 18px !important;
    }

    #about .services .item .right-text p {
        color: #666 !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* Fix About Us section to be full width in mobile */
    .about_section.layout_padding {
        padding: 60px 0 !important;
        margin: 0 !important;
    }

    .about_section .container {
        max-width: 100% !important;
        padding: 0 20px !important;
    }

    .about_section .row {
        margin: 0 !important;
    }

    .about_section .col-md-6 {
        padding: 0 !important;
        margin-bottom: 30px !important;
    }

    .about_section .about_img {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .about_section .about_img img {
        max-width: 80% !important;
        height: auto !important;
    }

    .about_section .about_taital {
        font-size: 28px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .about_section .about_text {
        font-size: 16px !important;
        line-height: 1.6 !important;
        text-align: center !important;
        padding: 0 10px !important;
    }

    .about_section .read_bt_1 {
        text-align: center !important;
        margin-top: 30px !important;
    }
}

/* Fix banner section spacing and prevent overlap */
.banner_section.layout_padding {
    padding-top: 0px !important;
    /* padding-bottom: 150px !important; */
    margin-bottom: 0px !important;
}

/* Create proper space between banner and how it works section */
#about {
    margin-top: 0px !important;
    position: relative !important;
    z-index: 1 !important;
    clear: both !important;
}

.about-us {
    padding-top: 120px !important;
    position: relative !important;
    margin-top: 0px !important;
}

/* Ensure banner section has proper height */
.banner_section {
    position: relative !important;
    z-index: 2 !important;
    min-height: 500px !important;
}

/* Fix banner background positioning */
.header_images {
    min-height: 500px !important;
    background-position: center top !important;
}

/* Contact section gradient background theme */
/* Add gradient background to contact section */
.contact_section {
    background: linear-gradient(135deg, #001430 0%, #0056d3 100%) !important;
    position: relative;
}

/* Change all text to white for better contrast */
.location_text ul {
    list-style: none;
    /* removes bullets */
    padding: 0;
    margin: 0;
}

.location_text li {
    display: block;
    color: #ffffff !important;
}

.location_text li a {
    color: #ffffff !important;
}

.location_text li a:hover {
    color: #FFFC00 !important;
}

.location_text ul li a {
    display: flex;
    /* keeps icon + text aligned */
    align-items: center;
    text-decoration: none;
    color: #333;
}

/* Change location icons to white */
.padding_left_10 {
    color: #ffffff !important;
}

.padding_left_10:hover {
    color: #FFFC00 !important;
}

/* Change newsletter text color to white */
.newsletter_text {
    color: #ffffff !important;
}

/* Style subscribe button with white background */
.subscribe_bt a {
    background-color: #FFFC00 !important;
    color: #014AB2 !important;
    font-weight: 600 !important;
}

.subscribe_bt a:hover {
    background-color: #FFFC00 !important;
    color: #014AB2 !important;
}

/* Make contact form text white */
.contact_taital {
    color: #ffffff !important;
}

/* Fix form field visibility */
.email-bt,
.massage-bt {
    color: #014AB2 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    padding: 15px 20px !important;
}

.email-bt::placeholder,
.massage-bt::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

input.email-bt::placeholder,
textarea#comment::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.email-bt:focus,
.massage-bt:focus {
    background-color: #ffffff !important;
    border-color: #FFFC00 !important;
    outline: none !important;
}

/* Fix SEND button */
.main_bt a {
    background-color: #FEE16D !important;
    color: #000 !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.main_bt a:hover {
    background-color: #FFFC00 !important;
    color: #014AB2 !important;
    transform: translateY(-2px) !important;
}

/* Fix newsletter email field */
.update_mail {
    color: #014AB2 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 8px !important;
    margin-bottom: 15px !important;
}

.update_mail::placeholder,
textarea#comment.update_mail::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.update_mail:focus {
    background-color: #ffffff !important;
    border-color: #FFFC00 !important;
    outline: none !important;
}

/* Add spacing between email field and subscribe button */
.mail_main .form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.subscribe_bt {
    margin-top: 0px !important;
    padding-top: 0px !important;
}

/* Change send button to yellow */
.send_bt,
.send_bt a {
    background-color: #FEE16D !important;
    color: #000 !important;
    border: 2px solid #FFFC00 !important;
}

.send_bt:hover,
.send_bt a:hover {
    background-color: #014AB2 !important;
    color: #FFFC00 !important;
    border: 2px solid #FFFC00 !important;
}

/* Change subscribe button to yellow */
.subscribe_bt,
.subscribe_bt input[type="submit"] {
    background-color: #FEE16D !important;
    color: #000 !important;
    border: 2px solid #FFFC00 !important;
}

.subscribe_bt:hover,
.subscribe_bt input[type="submit"]:hover {
    background-color: #014AB2 !important;
    color: #FFFC00 !important;
    border: 2px solid #FFFC00 !important;
}

/* Change location icon to yellow */
.contact_section .fa-map-marker,
.contact_section .fa-location-arrow,
.contact_section i[class*="location"],
.contact_section i[class*="map"] {
    color: #FFFC00 !important;
}

/* Style social media icons */
.footer_social_icon ul li a {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
}

.footer_social_icon ul li a:hover {
    color: #014AB2 !important;
    background-color: #FFFC00 !important;
    transform: translateY(-3px) !important;
}

/* WhatsApp FAB Button Styles */
.whatsapp-fab {
    position: fixed;
    bottom: 75px;
    right: 20px;
    background-color: #219b4f;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
    padding: 12px 20px;
    gap: 10px;
}

.whatsapp-fab:hover {
    background-color: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

.whatsapp-fab i {
    color: white;
    font-size: 24px;
}

.whatsapp-fab .chat-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.8);
    }

    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 768px) {
    .whatsapp-fab {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
    }

    .whatsapp-fab i {
        font-size: 20px;
    }

    .whatsapp-fab .chat-text {
        font-size: 12px;
    }
}

/* Track package page specific styles */
.track-hero {
    background: linear-gradient(135deg, #014AB2 0%, #0066CC 100%);
    color: white;
    padding: 120px 0 80px 0;
    margin-top: 80px;
}

.track-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.track-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    background: linear-gradient(45deg, #FFFC00, #FFFC00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.track-content {
    padding: 80px 0;
}

.track-form-container {
    background: linear-gradient(135deg, #225daf 0%, #014AB2 100%);
    border-radius: 25px;
    padding: 50px;
    margin: 40px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.track-form-container h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.track-input {
    color: #014AB2 !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 15px;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
    height: 60px;
}

.track-input:focus {
    background-color: #ffffff !important;
    border-color: #FFFC00 !important;
    color: #014AB2 !important;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 252, 0, 0.3);
}

.track-input::placeholder {
    color: #666 !important;
    font-weight: 400;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}

.track-btn {
    background-color: #FEE16D !important;
    color: #000000 !important;
    border: none;
    border-radius: 25px;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    height: 60px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.track-btn:hover {
    background-color: #FFFC00 !important;
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 252, 0, 0.4);
}

.track-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 252, 0, 0.3);
}

.track-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.tracking-result {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    border-left: 5px solid #28a745;
    display: none;
}

.tracking-result.error {
    border-left-color: #dc3545;
    background: #f8d7da;
}

.tracking-result h4 {
    color: #014AB2;
    margin-bottom: 20px;
}

.tracking-timeline {
    position: relative;
    padding-left: 30px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #014AB2;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #28a745;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #28a745;
}

.timeline-item.current::before {
    background: #FFFC00;
    box-shadow: 0 0 0 2px #FFFC00;
}

.timeline-item.pending::before {
    background: #6c757d;
    box-shadow: 0 0 0 2px #6c757d;
}

.timeline-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.timeline-status {
    font-weight: 600;
    color: #014AB2;
    margin-bottom: 5px;
}

.timeline-location {
    font-size: 0.9rem;
    color: #666;
}

.info-section {
    background: #e3f2fd;
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
    border-left: 5px solid #2196f3;
}

.info-section h4 {
    color: #014AB2;
    margin-bottom: 20px;
}

.info-section ul {
    margin-bottom: 0;
}

.info-section li {
    margin-bottom: 10px;
    color: #333;
}

/* About page specific styles */
.about-hero {
    background: linear-gradient(135deg, #014AB2 0%, #0066CC 100%);
    color: white;
    padding: 120px 0 80px 0;
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    background: linear-gradient(45deg, #FFFC00, #FFFC00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    color: #014AB2;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.about-section h3 {
    color: #014AB2;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.feature-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #014AB2;
    transition: transform 0.3s ease;
}

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

.feature-card h4 {
    color: #014AB2;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #FEE16D 0%, #FFFC00 100%);
    padding: 60px 0;
    text-align: center;
    margin: 60px 0;
    border-radius: 25px;
}

.cta-section h3 {
    color: #014AB2;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    color: #014AB2;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-primary-custom {
    background: #014AB2;
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-custom:hover {
    background: #003d96;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Prohibited items page specific styles */
.prohibited-hero {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 120px 0 80px 0;
    margin-top: 80px;
}

.prohibited-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.prohibited-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    background: linear-gradient(45deg, #FFFC00, #FFFC00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.prohibited-content {
    padding: 80px 0;
}

.prohibited-section {
    margin-bottom: 60px;
}

.prohibited-section h2 {
    color: #dc3545;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.prohibited-section h3 {
    color: #014AB2;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.prohibited-section h4 {
    color: #014AB2;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.prohibited-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.prohibited-section ul {
    margin-bottom: 25px;
}

.prohibited-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 5px solid #f39c12;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 15px;
}

.warning-box p {
    color: #856404;
    margin-bottom: 0;
}

.danger-box {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-left: 5px solid #dc3545;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.danger-box h4 {
    color: #721c24;
    margin-bottom: 15px;
}

.danger-box p {
    color: #721c24;
    margin-bottom: 0;
}

.info-box {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-left: 5px solid #17a2b8;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.info-box h4 {
    color: #0c5460;
    margin-bottom: 15px;
}

.info-box p {
    color: #0c5460;
    margin-bottom: 0;
}

.prohibited-list {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #dc3545;
    margin: 30px 0;
}

.restricted-list {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #f39c12;
    margin: 30px 0;
}

.contact-cta {
    background: linear-gradient(135deg, #014AB2 0%, #0066CC 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin: 60px 0;
    border-radius: 25px;
}

.contact-cta h3 {
    color: #FFFC00;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-cta p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn-primary-custom {
    background: #FFFC00;
    color: #014AB2;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-custom:hover {
    background: #FEE16D;
    transform: translateY(-2px);
    color: #014AB2;
    text-decoration: none;
}

/* Contact page specific styles - redesigned to match screenshot */
.contact-section {
    background: linear-gradient(135deg, #0b2b66 0%, #0d49a1 70%, #0e58c5 100%);
    min-height: calc(100vh - 80px);
    padding: 120px 0 80px 0;
    margin-top: 80px;
    position: relative;
}

.contact-box {
    background: transparent;
    color: #fff;
}

.contact-title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-subinfo i {
    color: #fffc00;
    margin-right: 10px;
}

.contact-subinfo span,
.contact-subinfo a {
    color: #ffffff;
    opacity: 0.9;
}

.form-card {
    background: transparent;
}

.form-control.contact-input,
textarea.contact-textarea {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    border-radius: 8px;
    padding: 14px 16px;
}

.form-control.contact-input::placeholder,
textarea.contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.form-control.contact-input:focus,
textarea.contact-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 252, 0, 0.25);
    border-color: #fffc00;
}

.contact-btn {
    background: #fffc00 !important;
    color: #000 !important;
    border-radius: 6px;
    border: none;
    padding: 12px 28px;
    font-weight: 700;
}

.newsletter-input {
    background: #f5f7fb;
    border: none;
    border-radius: 6px;
    padding: 16px;
    width: 100%;
}

.newsletter-btn {
    background: #fffc00;
    border: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    margin-top: 16px;
}

.right-icons {
    display: flex;
    gap: 24px;
    margin-top: 40px;
}

.right-icons a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
}

/* FAQ section */
.faq-section {
    background: linear-gradient(135deg, #0b2b66 0%, #0d49a1 70%, #0e58c5 100%);
    padding: 40px 0 80px 0;
}

.faq-wrapper {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 24px;
    color: #fff;
}

.faq-title {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 18px;
    font-size: 28px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-question {
    width: 100%;
    background: transparent;
    color: #ffffff;
    text-align: left;
    border: 0;
    padding: 18px 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #fffc00;
    color: #000;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
}

.faq-answer {
    color: #e7eefc;
    padding: 0 0 18px 0;
    display: none;
}

.shipment-header {
    font-size: 16px;
    margin-bottom: 10px;
}

.delivery-estimate h6,
.shipment-status strong {
    font-weight: bold;
    color: #014AB2;
    margin-bottom: 4px;
    font-size: 16px;
}

.shipment-status span,
.delivery-estimate p {
    font-weight: normal;
    color: #000;
}


.timeline {
    position: relative;
    margin-left: 30px;
    border-left: 3px solid #ccc;
}

.event {
    position: relative;
    padding: 20px 0 20px 20px;
}

.event::before {
    content: "";
    position: absolute;
    top: 30px;
    left: -11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #ccc;
    background: #fff;
    z-index: 1;

    display: flex;
    /* enable centering */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    font-size: 14px;
    /* icon size */
    line-height: 1;
    font-weight: bold;
}

.event.completed::before {
    content: "✔";
    color: white;
    background-color: #014AB2;
    border-color: #014AB2;
    font-weight: bold;
}

.event.completed::after {
    background-color: #014AB2;
}

.event.current::before {
    content: "➔";
    color: teal;
    border-color: teal;
}

.event.current::after,
.event.future::after {
    background-image: repeating-linear-gradient(to bottom,
            #ccc,
            #ccc 4px,
            transparent 4px,
            transparent 8px);
}

.event.future::before {
    content: "";
    border-color: #ccc;
}

.event .title {
    font-weight: bold;
    font-size: 16px;
}

.event .location {
    color: #666;
    font-size: 14px;
}

.event .datetime {
    font-size: 13px;
    color: #777;
}

.btn-outline-light:hover {
    color: #000;
    background-color: #818115 !important;
    border-color: yellow !important;
}

/* Privacy Policy page specific styles */
.privacy-content {
    padding: 100px 0;
    background: #f8f9fa;
}

.privacy-header {
    background: linear-gradient(135deg, #001430 0%, #0056d3 100%);
    color: white;
    padding: 80px 0 40px 0;
    margin-top: 80px;
}

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

.privacy-section h3 {
    color: #014AB2;
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy-section h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.privacy-section p,
.privacy-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-section ul {
    padding-left: 20px;
}

/* Terms and Conditions page specific styles */
.terms-content {
    padding: 100px 0;
    background: #f8f9fa;
}

.terms-header {
    background: linear-gradient(135deg, #001430 0%, #0056d3 100%);
    color: white;
    padding: 80px 0 40px 0;
    margin-top: 80px;
}

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

.terms-section h3 {
    color: #014AB2;
    margin-bottom: 20px;
    font-weight: 600;
}

.terms-section h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.terms-section p,
.terms-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.terms-section ul {
    padding-left: 20px;
}

/*conditions page specific styles */
.conditions-content {
    padding: 100px 0;
    background: #f8f9fa;
}

.conditions-header {
    background: linear-gradient(135deg, #001430 0%, #0056d3 100%);
    color: white;
    padding: 80px 0 40px 0;
    margin-top: 80px;
}

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

.conditions-section h3 {
    color: #014AB2;
    margin-bottom: 20px;
    font-weight: 600;
}

.conditions-section h4 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.conditions-section p,
.conditions-section li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.conditions-section ul {
    padding-left: 20px;
}

.alert-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.alert-box h4 {
    color: #856404;
    margin-bottom: 10px;
}

.alert-box p {
    color: #856404;
    margin-bottom: 0;
}

/* Footer Opening Hours Table Fix */
.custom-footer table.table tbody td,
.custom-footer .table tbody td,
.custom-footer table tbody td {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    background-color: transparent !important;
}

.custom-footer table.table,
.custom-footer .table {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background-color: transparent !important;
}

.custom-footer table.table tbody tr,
.custom-footer .table tbody tr {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background-color: transparent !important;
}

/* Privacy, Terms, Conditions Page Main Headings - White h1, Yellow p */
.privacy-header h1,
.terms-header h1,
.conditions-header h1 {
    color: #ffffff !important;
    font-weight: 500;
}

.privacy-header p,
.terms-header p,
.conditions-header p {
    color: #FEE16D !important;
    font-weight: 500;
}