/* Custom Styles */
:root {
    /* Fonts */
    --font-inter: 'Inter', sans-serif;
    --font-cursive: 'Dancing Script', cursive;

    /* Colors */
    --black: #000000;
    --white: #ffffff;
    --brand-red: #e32b13;
    --brand-gold: #f2ba13;
    --gray-text: #555;
    --light-gray: #f2f2f2;
    --primary: #097FB4;

    /* Spacing */
    --spacing-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.5s ease;
}

.btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.03);
}

body {
    font-family: var(--font-inter);
    color: var(--black);
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    background-color: var(--white);
    box-shadow: 0 5px 11px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 99;
}

.site-header .navbar-nav .nav-link {
    color: var(--black);
    font-size: 15px;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.site-header .navbar-nav .nav-link:hover {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.site-header .navbar-nav .nav-item {
    position: relative;
    margin: 0 5px;
}

.site-header .navbar-nav .nav-link.active {
    color: var(--primary);
}

.site-header .navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: var(--primary);
}

.header-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.header-social .social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--black);
}

.header-social .social-link:hover {
    transform: translateY(-2px);
}

.header-social .social-link:hover svg {
    fill: var(--primary);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Carousel Styles */
#heroCarousel .carousel-item {
    height: 85vh;
    min-height: 500px;
    position: relative;
}

.hero-img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#heroCarousel .carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 20, 35, 0.45);
    /* Dark cinematic overlay */
    z-index: 1;
}

.hero-caption {
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 10%;
    right: 10%;
}

.hero-cursive {
    font-family: var(--font-cursive);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 0px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: var(--white);
    font-weight: 500;
}

/* Property Slider Section */
.border-dashed {
    border: 1px dashed rgba(0, 0, 0, 0.15) !important;
}

.border-dashed-inner {
    border-left: 1px dashed rgba(0, 0, 0, 0.15) !important;
    border-right: 1px dashed rgba(0, 0, 0, 0.15) !important;
    border-top: none !important;
    border-bottom: none !important;
}

.property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.property-card .feature-item {
    flex: 1;
}

.property-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

.action-btn {
    color: var(--brand-gold) !important;
}

.action-btn:hover {
    background-color: var(--brand-gold) !important;
    color: var(--white) !important;
}

/* Swiper Controls Customization */
.property-prev,
.property-next {
    background-color: var(--white) !important;
    color: var(--brand-gold) !important;
    width: 40px !important;
    height: 40px !important;
    top: 40% !important;
}

.property-prev::after,
.property-next::after {
    font-size: 1.25rem !important;
    font-weight: 900;
}

.property-prev {
    left: 50px !important;
    transform: translateX(-40%) !important;
}

.property-next {
    right: 50px !important;
    transform: translateX(40%) !important;
}

.property-prev:hover,
.property-next:hover {
    background-color: var(--brand-gold) !important;
    color: var(--white) !important;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    background-color: var(--primary) !important;
    opacity: 0.25 !important;
    width: 24px !important;
    height: 8px !important;
    border-radius: 4px !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
    opacity: 1 !important;
}

.swiper-pagination {
    bottom: 0 !important;
}

.property-section .container-fluid {
    padding: 0 50px;
}

/* About Section Styles */
.about-section {
    background-color: #030303 !important;
    /* Extremely dark matching design */
}

.about-cursive {
    font-family: var(--font-cursive);
    color: var(--primary);
    font-size: 1.7rem;
}

.about-title {
    color: var(--primary);
    font-family: var(--font-primary);
    line-height: 1.3;
    font-size: 2.2rem;
}

.bg-brand {
    background-color: var(--primary);
}

.text-brand {
    color: var(--primary) !important;
}

.border-brand {
    border-color: var(--primary) !important;
}

.text-light-alpha {
    color: rgba(255, 255, 255, 0.85);
}

.letter-spacing-1 {
    letter-spacing: 3px;
    font-weight: bold;
}

.about-image-grid img {
    min-height: 250px;
}

/* Latest Listings Section Styles */
.ribbon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 85px;
    height: 85px;
    overflow: hidden;
    z-index: 2;
    border-top-left-radius: 0.375rem;
    /* Match card radius approx */
}

.ribbon {
    position: absolute;
    top: 15px;
    left: -25px;
    width: 120px;
    background: var(--brand-gold);
    color: #fff;
    text-align: center;
    padding: 3px 0;
    transform: rotate(-45deg);
    font-size: 0.70rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Counters Section Styles */
.counters-section {
    background-color: #f7f7f7 !important;
}

.counter-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.counter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--primary);
}

/* Custom FAQ Accordion Styles */
.custom-accordion {
    border: 1px solid #dee2e6;
}

.custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0 !important;
}

.custom-accordion .accordion-item:last-child {
    border-bottom: none;
}

.custom-accordion .accordion-button {
    box-shadow: none !important;
    background-color: transparent !important;
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    outline: none !important;
}

.custom-accordion .accordion-button::after {
    display: none;
    /* Hide default collapse triangles */
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary) !important;
}

.custom-accordion .accordion-body {
    padding-top: 0;
    padding-bottom: 1.25rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* CTA Pattern Overlay */
.cta-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, #f8f9fa 12%, transparent 12.5%, transparent 87%, #f8f9fa 87.5%, #f8f9fa),
        linear-gradient(150deg, #f8f9fa 12%, transparent 12.5%, transparent 87%, #f8f9fa 87.5%, #f8f9fa),
        linear-gradient(30deg, rgba(235, 235, 235, 0.4) 12%, transparent 12.5%, transparent 87%, rgba(235, 235, 235, 0.4) 87.5%, rgba(235, 235, 235, 0.4)),
        linear-gradient(150deg, rgba(235, 235, 235, 0.4) 12%, transparent 12.5%, transparent 87%, rgba(235, 235, 235, 0.4) 87.5%, rgba(235, 235, 235, 0.4));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

/* Testimonials Section Styles */
.testimonials-section {
    background-color: #030303 !important;
}

.testimonial-card {
    background-color: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: #fff;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: scale(0.9);
    opacity: 0.5;
}

/* Active Highlight Properties */
.swiper-slide-active .testimonial-card {
    background-color: #fff;
    color: #000;
    transform: scale(1.05);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.swiper-slide-active .testimonial-card .text-white {
    color: #000 !important;
}

.swiper-slide-active .testimonial-card .opacity-75 {
    color: #6c757d !important;
    opacity: 1 !important;
}

/* Custom Outlined Quote Implementation */
.quote-icon-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primary);
}

.swiper-slide-active .testimonial-card .quote-icon-outline {
    -webkit-text-stroke: 1.5px #dee2e6;
}

/* News & Blogs Styles */
.blog-card {
    height: 300px;
    cursor: pointer;
}

.blog-card-img {
    transition: transform 0.6s ease;
}

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

.blog-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: 1;
}

.blog-title a {
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title a {
    color: var(--primary) !important;
}

.blog-meta i {
    color: var(--primary);
}

.top-1 {
    top: 1rem !important;
}

.start-1 {
    left: 1rem !important;
}

/* Footer Section Styles */
.footer-section {
    background-color: #050505 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links a {
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-links a:hover {
    color: var(--primary) !important;
    padding-left: 8px;
}

.footer-section social-link {
    transition: all 0.3s ease;
}

.footer-section .social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary) !important;
    color: #000 !important;
    transform: translateY(-5px);
}

.text-light-alpha {
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.contact-info i {
    text-shadow: 0 0 10px rgba(184, 153, 90, 0.3);
}


.page-header .btn-phone-number {
    border-radius: 60px;
    background: linear-gradient(90deg, #486d1c 0%, #74c406 137.88%);
    max-height: 68px;
    text-align: left;
}

.page-header .btn-phone-number .phone-icon img {
    max-width: 80px;
    height: 80px;
    width: 100%;
    object-fit: cover;
}

.phone-icon {
    margin-left: -36px;
}

.site-header .btn-phone-content {
    display: flex;
    flex-direction: column;
}

.site-header .btn-phone-number {
    text-decoration: none;
}

.site-header .btn-phone-content .no-call-charges {
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 128%;
    /* 20.48px */
}

.site-header .btn-phone-content .phone-number {
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 128%;
    text-decoration: none;
}

.site-header .btn-phone-number {
    border-radius: 60px;
    background: linear-gradient(90deg, #0a80b5 0%, #0a80b5 137.88%);
    max-height: 68px;
    text-align: left;
}

.site-header .btn-phone-number .phone-icon img {
    max-width: 80px;
    height: 80px;
    width: 100%;
    object-fit: cover;
}


.removal-across-brisbane {
    /* background: url(../images/21.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;
}