/* ACME Transport - Design System */
:root {
    /* Fonts */
    --font-primary: 'Inter', sans-serif;

    /* Colors */
    --blue: #0181C2;
    --red: #d32f2f;
    --green: #3B9940;
    --dark-bg: #111111;
    --white: #ffffff;
    --text-muted: #666666;
}

/* Color Mapping Overrides */
.text-green {
    color: var(--green) !important;
}

.text-primary {
    color: var(--blue) !important;
}

.text-danger {
    color: var(--red) !important;
}

.btn-primary {
    background-color: var(--blue);
    border-color: var(--blue);
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 1.2rem;
}

.btn-primary:hover {
    background-color: #006ea6;
    border-color: #006ea6;
    transform: scale(1.03);
}

body {
    font-family: var(--font-primary);
    color: #333;
    background-color: var(--white);
    overflow-x: hidden;
}

body .current-menu-item a.nav-link {
    color: var(--blue) !important;
}

.get-in-touch .contact-icon  svg {
    width: 25px;
    height: 25px;
    fill: var(--blue) !important;
}

/* Header Styles */
header.sticky-top {
    z-index: 1020;
    background-color: var(--white);
}

.top-bar {
    font-size: 0.8rem;
}

.top-bar-socials a {
    transition: color 0.2s ease;
}

.top-bar-socials a:hover {
    color: var(--blue) !important;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    margin-right: 1.5rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--blue) !important;
}

/* Offcanvas Customization */
.offcanvas {
    width: 300px;
}

.offcanvas-header {
    border-bottom: 1px solid #eee;
}

.offcanvas-body .nav-link {
    font-size: 1rem;
    padding: 0.8rem 1.7rem !important;
    margin-right: 0;
}

.navbar-socials a {
    font-size: 1.2rem;
}

.navbar-socials a:hover {
    color: var(--blue) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 700px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--dark-bg);
}

#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.84);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.btn-acme {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-acme:hover {
    background: var(--white);
    color: var(--dark-bg);
}

/* Features Section Styles */
#features {
    background: var(--green);
}

/* Secure Experiences Link Animation */
#secure-experiences a i {
    transition: transform 0.3s ease;
}

#secure-experiences a:hover i {
    transform: translateX(5px);
}

#secure-experiences .secure-image-wrapper {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#about h2 span {
    display: inline-block;
}

#about .border-primary {
    border-color: var(--blue) !important;
}

.container-custom {
    max-width: 1400px;
}

.feature-icon i {
    transition: all 0.3s ease;
}

.feature-text h6 {
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.feature-text p {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.lead {
    font-weight: 400;
}

.about-us-text {
    background-color: rgba(1, 130, 194, 0.1);
    padding: 30px 20px;
    /* border-radius: 10px; */
}

.about-img img {
    height: 527px;
    object-fit: cover;
    border-radius: 27px;
}

#secure-experiences {
    background: #f9f9f9;
}

#secure-experiences .secure-image-wrapper img {
    height: 600px;
    object-fit: cover;
}

@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .feature-text {
        text-align: center !important;
    }
}

.about-us-content span {
    font-weight: 600;
}



/* Segments Section Styles */
.segments-section {
    background-color: var(--white);
    padding: 0 0 80px 0;
}

.segments-subtitle {
    color: var(--primary-red);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.segments-title {
    color: var(--black);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 60px;
}

.segment-tabs-row {
    margin-bottom: 60px;
}

.segment-nav-link {
    background-color: #fbf7f9 !important;
    border: none !important;
    border-radius: 17px !important;
    padding: 33px 15px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%;
    color: var(--primary-red);
}

.segment-nav-link .segment-icon {
    width: 32px;
    height: 32px;
    fill: var(--primary-red);
    transition: all 0.3s ease;
}

.segment-nav-link span {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.segment-nav-link.active {
    background-color: var(--primary-red) !important;
    position: relative;
}

/* .segment-nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--navy-blue);
} */

.segment-nav-link.active .segment-icon {
    fill: var(--white);
}

.segment-nav-link.active span {
    color: var(--white);
}

.segment-pane-title {
    color: var(--black);
    font-size: clamp(2.3rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
}

.segment-description {
    color: rgba(0, 0, 0, 0.75);
    font-size: 16px;
    font-weight: 400;
    line-height: 147%;
    margin: 0 0 16px;
}

.segment-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    list-style: none;
    padding-left: 0;
}

.segment-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
    font-weight: 700;
    font-size: 15px;
}

.segment-list li svg {
    min-width: 26px;
    min-height: 26px;
    max-width: 26px;
    fill: var(--primary-red);
}

.segment-image-composition {
    position: relative;
    /* padding-left: 20px; */
}

/* .segment-image-composition::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    background-color: var(--navy-blue);
    z-index: 1;
    height: 91%;
} */

.segment-img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.segment-img-caption {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-top: 20px;
}

.ongoing-projects .project-card-ongoing {
    background: var(--white);
    border: none;
    border-radius: 0;
    padding: 0;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ongoing-projects .project-card-ongoing {
    background: var(--white);
    border: none;
    border-radius: 0;
    padding: 0;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ongoing-projects .project-card-ongoing:hover {
    transform: scale(1.03);
}

.ongoing-projects .project-card-ongoing img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card-ongoing .card-body {
    padding: 20px 0 20px 0;
}

.project-card-ongoing .project-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 0;
}

.project-card-ongoing .badge-custom {
    background: #fff;
    color: #555;
    font-size: 12px;
    border-radius: 20px;
    padding: 5px 12px;
    border: 1px solid #dbdbdb;
}

.project-card-ongoing .project-desc {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
}

/* .project-card-ongoing .underline {
    width: 40px;
    height: 3px;
    background: var(--blue);
    margin: 5px 0 15px;
} */


/* Chosen By Section Styles */
.chosen-by {
    background-color: var(--white);
}

.chosen-by h2 {
    font-size: clamp(2.1rem, 3.5vw + 1rem, 3.4rem);
    color: var(--black);
    font-style: normal;
    font-weight: 700;
    line-height: 124%;
    max-width: 746px;
    margin-bottom: clamp(2rem, 2vw + 1rem, 2.5rem);
}

.chosen-img-wrapper img {
    max-width: 100%;
}

.chosen-content {
    margin-top: -100px;
}


.removal-across-brisbane {
    background: url(../images/hav-inqueries-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
    margin: 100px 0;
    height: auto;
}

.removal-across-brisbane h3 {
    color: #fff;
    font-size: 41px;
    font-style: normal;
    font-weight: 700;
    line-height: 98%;
    margin-bottom: 30px;
}

.enquiry-form {
    padding: 40px 50px;
    color: #fff;
}

.car-contact-form .form-control {
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFFDFC;
    height: 51px;
    margin-bottom: 0;
    padding: .375rem 1rem;
}

textarea.form-control {
    min-height: inherit;
    height: 150px !important;
    padding: 0.8rem 1rem !important;
}

.car-contact-form p {
    margin-bottom: 0;
}

.learn-more {
    color: var(--primary-red);
}

.learn-more:hover {
    color: var(--primary-red-hover);
}


/* Footer Section Styles */
.footer-section {
    background-color: #0c0c0c;
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-building-design {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
    animation: subtlePan 5s linear infinite alternate;
}

.footer-building-design img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

@keyframes subtlePan {
    0% {
        transform: translateX(-5%) scale(1.1);
        opacity: 0.1;
    }

    100% {
        transform: translateX(5%) scale(1.1);
        opacity: 0.1;
    }
}


.footer-container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-height: 60px;
    filter: invert(1);
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
    margin-bottom: 30px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background-color: #53627d;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

.footer-social-link:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.footer-widget-title::after {
    content: '';
    height: 2px;
    width: 30px;
    background-color: var(--white);
    opacity: 0.3;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    flex: 0 0 20px;
    color: #7bb5cc;
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: rgb(255 255 255);
}

.footer-contact-text {
    font-size: 14px;
    line-height: 1.5;
    color: #cbd5e0;
}

.footer-contact-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-text a:hover {
    color: var(--white);
}

.footer-bottom {
    background-color: #000000;
    padding: 25px 0;
    margin-top: 80px;
    text-align: center;
}

.copyright-text {
    font-size: 15px;
    color: #888;
    margin: 0;
}

@media (max-width: 991px) {
    .footer-section {
        padding: 60px 0 0;
    }

    .footer-bottom {
        margin-top: 60px;
    }
}


.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 0;
}

/* Inner Page Hero Section Styles */
.inner-page-hero {
    position: relative;
    height: 440px;
    background: url(../images/inner-page-banner.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.inner-page-hero .container {
    padding-top: 12rem;
}

.inner-breadcrumb {
    margin-bottom: 1rem;
}

.inner-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inner-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
}

.inner-breadcrumb .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary);
}

.inner-breadcrumb .breadcrumb-item.active {
    color: var(--white);
}

.inner-breadcrumb .breadcrumb-separator {
    color: var(--white);
    font-size: 14px;
    list-style: none;
}

.inner-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.inner-page-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    text-transform: capitalize;
}

/* Humble Beginnings & Mission Section */
.humble-beginnings h2 {
    color: #1a1a1a;
}

.mission-vision-values .card h3 {
    font-size: 1.75rem;
    color: #1a1a1a;
}

.mission-vision-values .card-img-top {
    transition: transform 0.5s ease;
}

.mission-vision-values .card:hover .card-img-top {
    transform: scale(1.05);
}

.mission-vision-values ol {
    counter-reset: custom-counter;
    list-style: none;
    padding-left: 0;
}

.mission-vision-values ol li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 17px;
    margin-bottom: 10px;
}

.mission-vision-values ol li::before {
    content: counter(custom-counter) ". ";
    position: absolute;
    left: -8px;
    color: #333;
}

/* Contact Page Styles */
.get-in-touch .contact-icon i {
    font-size: 1.25rem;
    color: var(--blue);
}

.contact-form-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
    background: #f9f9f9;
    border: 1px solid #e9e8e8;
}

.contact-form-wrapper .form-control:focus {
    background-color: var(--white);
    border-color: rgba(1, 129, 194, 0.2);
    box-shadow: 0 0 0 0.25rem rgba(1, 129, 194, 0.1);
}

.location-map iframe {
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.location-map iframe:hover {
    filter: grayscale(0);
}

#secure-experiences h5 {
    font-size: 1rem;
    line-height: 25px;
    font-weight: 600;
    --bs-text-opacity: 1;
    color: var(--bs-secondary-color) !important;
}

/* Rest Assured Section */
.rest-assured-card {
    transition: transform 0.4s ease;
    cursor: default;
}

.rest-assured-card:hover {
    transform: scale(1.03);
}

.rest-assured-card .card-content h3 {
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.rest-assured-card .card-content p {
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.rest-assured-card .card-overlay {
    transition: background 0.3s ease;
}

.rest-assured-card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.5) !important;
}

.rest-assured-section {
    background: #f9f9f9;
}
#about h2 br {
	display:none;
}