/* --- Global Configuration Reset & Modern Architecture --- */
:root {
    --primary-red: #ff2a2a;       /* Sharp Red Identity */
    --logo-box-bg: #111111;       /* True Solid Dark Black */
    --whatsapp-green: #00E676;    /* Glowing Green Button UI */
    --whatsapp-hover: #00C853;
    
    /* Specified Typography Configuration Rules */
    --font-headings: 'Archivo Black', 'IBM Plex Sans', sans-serif;
    --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

body {
    font-family: var(--font-body);
    background-color: #f8f9fa;
    color: #111111;
    overflow-x: hidden;
}

/* Base Mapping Rule for Headers */
h1, .hero-heading, .brand-title {
    font-family: var(--font-headings);
    font-weight: normal; 
}

.custom-badge-title {
    font-family: var(--font-headings);
}

/* Global Helpers */
.tracking-wide { letter-spacing: 0.5px; }
.tracking-wider { letter-spacing: 1px; }
.tracking-widest { letter-spacing: 1.5px; }
.fs-9px {font-size: 9px !important;/* color: #fff; */}
.fs-11px {font-size: 13px !important;}

/* --- Top Info Bar Continuous Marquee Layout --- */
.top-info-bar-scroll {
    background-color: var(--primary-red);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.ticker-content span {
    padding: 0 25px;
    letter-spacing: 0.8px;
}

.ticker-dot {
    font-size: 5px !important;
    opacity: 0.7;
    display: inline-block;
    padding: 0 !important;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Clean Navigation Layout Architecture --- */
.main-header {
    border-bottom: 2px solid #000;
    border-top: 2px solid #000;
}

.logo-box {
    background-color: #e11d24;
    color: #ffffff;
    width: 40px;
    font-weight: 500;
    border: 2px solid #000;
    height: 40px;
    font-family: var(--font-headings);
    font-size: 24px;
    border-radius: 0px;
    line-height: 1;
}

.brand-title {
    font-size: 16px;
    color: #111111;
    letter-spacing: 0.3px;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 12px;
    color: #3c3c3c;
    font-weight: 500;
    letter-spacing: 1.8px;
    margin-top: 1px;
}

.navbar-nav .nav-link {
    color: #111111 !important;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--primary-red) !important;
}

/* Header Component Buttons UI */
.btn-whatsapp-header {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    border-radius: 0px;
    border: 2px solid #000;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    /* border: none; */
    transition: all 0.2s ease-in-out;
}

.btn-whatsapp-header:hover {
    background-color: var(--whatsapp-hover);
    color: #ffffff;
}

.btn-call-header {
    background-color: var(--primary-red);
    color: #ffffff;
    border-radius: 0px;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: 2px solid #000;
    padding: 8px 18px;
    /* border: none; */
    transition: all 0.2s ease-in-out;
}

.btn-call-header:hover {
    background-color: #c9141b;
    color: #ffffff;
}

/* --- Premium Optimized Hero Section Layout --- */
.hero-section {
    min-height: 85vh;
    background-color: #0f0f0f;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Dynamic Heavy Dark Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(12,12,12,0.92) 0%, rgba(18,18,18,0.78) 100%);
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.badge-live {
    background-color: var(--primary-red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border: 1px solid #fff;
    padding: 6px 12px;
    border-radius: 0px;
}

.live-dot {
    width: 7px;
    height: 7px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
}

.hero-heading {
    letter-spacing: -0.5px;
    line-height: 1.05;
}

.text-danger-custom {
    color: var(--primary-red);
}

.text-light-muted {
    color: #e5e5e5;
}

.hero-description strong {
    color: #ffffff;
}

/* Wide Structured Interactive Interface Buttons */
.btn-call-hero {
    background-color: var(--primary-red);
    color: #ffffff;
    border-radius: 0px;
    border: none;
    font-size: 15px;
    border: 2px solid #ffffff;
    padding: 14px 14px;
    transition: background 0.2s ease;
}

.btn-call-hero:hover {
    background-color: #c9141b;
    color: #ffffff;
}

.btn-whatsapp-hero {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    border-radius: 0px;
    border: 2px solid #ffffff;
    /* border: none; */
    font-size: 15px;
    padding: 14px 28px;
    transition: background 0.2s ease;
}

.btn-whatsapp-hero:hover {
    background-color: var(--whatsapp-hover);
    color: #ffffff;
}

/* Feature Badge Dynamic Cards styling */
.feature-card {
    background-color: rgba(18, 18, 18, 0.45);
    border-left: 3px solid var(--primary-red);
    border-radius: 0 4px 4px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.card-icon {
    color: var(--primary-red);
    font-size: 22px;
}

/* --- Precision Recovery Window Frame Mockup --- */
.recovery-unit-frame {
    border: 2px solid #ffffff;
    border-radius: 0px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.yellow-dot {
    background-color: #FFD54F;
}

/*.frame-img-container {
    height: 310px;
}*/

.frame-main-img {
    height: 100%;
    border: 2px solid red;
    object-fit: cover;
    height: 370px;
}

.frame-phone-badge {
    position: absolute;
    bottom: 12px;
    border: 2px solid goldenrod;
    right: 12px;
    background-color: #000;
    padding: 5px 14px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0px;
}

/* Structural Bottom Red Layout Border Accent Line */
.hero-bottom-accent-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-red);
    z-index: 3;
}

/* --- Right Side Fixed Floating Action UI Buttons System --- */
.floating-fixed-actions-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99999;
}

.action-fixed-btn {
    width: 46px;
    height: 46px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    position: relative;
    transition: transform 0.2s ease;
}

.action-fixed-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.wa-fixed-btn {
    background-color: var(--whatsapp-green);
}

.call-fixed-btn {
    background-color: var(--primary-red);
}

/* WhatsApp Rays Wave/Pulse Animation Effect */
.ray-pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--whatsapp-green);
    border-radius: 0px;
    z-index: -1;
    animation: pushRaysWave 2s infinite ease-out;
}

@keyframes pushRaysWave {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* --- Complete Responsive Configuration Breakpoints --- */
@media (max-width: 1199.98px) {
    .navbar-collapse {
        background-color: #ffffff;
        padding: 15px;
        border-radius: 4px;
        margin-top: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    .navbar-nav .nav-link { padding-top: 6px !important; padding-bottom: 6px !important; }
    .hero-btn-group .btn { padding: 12px 20px; font-size: 14px; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .frame-img-container { height: 270px; }
    .hero-heading { font-size: 2.6rem; }
}

@media (max-width: 767.98px) {
    .hero-heading { font-size: 2.1rem; }
    .hero-description { font-size: 13px; }
    .frame-img-container { height: 235px; }
    .floating-fixed-actions-container { bottom: 15px; right: 15px; }
    .action-fixed-btn { width: 42px; height: 42px; font-size: 18px; }
}
/* --- Ditto Match Trust Badges Grid System --- */

.custom-badge-container {
    margin-top: 25px !important;
}

.info-badge-box {
    background-color: rgb(30 30 30 / 45%); /* Dark semi-transparent box background */
    border: 2px solid rgba(255, 255, 255, 0.15); /* Thin subtle outer border as per image */
    border-radius: 2px; /* Super sharp edges */
    padding: 19px 20px; /* Generous top-to-bottom breathing space */
    text-align: left; /* Left-aligned elements matching screenshot */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* min-height: 145px; */ /* Fixed proportional structural depth */
    transition: background-color 0.2s ease-in-out;
}

/* Yellow Icons Configuration */
.badge-icon-yellow {
    color: #FFC107; /* Core identity yellow from your crop image */
    font-size: 20px; /* Precise scale */
    line-height: 1;
    margin-bottom: 14px; /* Space between icon and big typography */
    display: inline-block;
}

/* Structural Big Bold Text via Archivo Black */
.badge-main-heading {
    font-family: 'Archivo Black', 'IBM Plex Sans', sans-serif;
    color: #ffffff;
    font-size: 20px; /* Clean impactful layout scale */
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

/* Subtitles/Labels Formatting */
.badge-sub-text {
    font-family: 'IBM Plex Sans', -apple-system, sans-serif;
    color: #aaaaaa; /* Muted contrast grey labels */
    font-size: 10px; /* Tightly structured label font scaling */
    font-weight: 500;
    letter-spacing: 1.2px; /* Spaced tracking character flow */
    text-uppercase: uppercase;
    margin-bottom: 0 !important;
}

/* Responsive Structural Overrides */
@media (max-width: 767.98px) {
    .info-badge-box {
        padding: 18px 16px;
        min-height: 125px;
    }
    .badge-main-heading {
        font-size: 15px;
    }
    .badge-icon-yellow {
        font-size: 22px;
        margin-bottom: 10px;
    }
}
.frame-phone-badge a
{
    color: gold!important;
    letter-spacing: 1px;
}
/* ==========================================================================
   SECTION 01 - COMPLETE ROADSIDE ASSISTANCE SERVICES MATRIX
   ========================================================================== */

/* Header Typography Elements */
.services-tag-prefix {
    color: var(--primary-red);
    font-size: 13px;
    letter-spacing: 1px;
}

.services-main-title {
    font-family: var(--font-headings);
    color: #111111;
    line-height: 1.05;
    letter-spacing: -0.5px;
    font-size: 45px; /* Proportional scale matching crop images */
}

.services-top-desc {
    font-size: 16px;
    /* max-width: 440px; */
}

/* Outer Border Wrapper Setup to align the crisp 1px borders seamlessly */
.services-grid-border-wrapper {
    border-top: 2px solid #111111;
    border-left: 2px solid #111111;
}

/* Core Structural Service Matrix Card Layout */
.service-matrix-card {
    background-color: #ffffff;
    border-right: 2px solid #111111;
    border-bottom: 2px solid #111111;
    padding: 35px 30px;
    /* min-height: 340px; */ /* Aligns depth layout evenly */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
                color 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    cursor: pointer;
}

/* Card Header Block Elements */
.card-matrix-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

/* Distinctive Colored Icon Containers */
.matrix-icon-box {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    border: 2px solid #000;
    justify-content: center;
    border-radius: 0px;
    font-size: 20px;
    color: #ffffff;
    transition: background-color 0.25s ease;
}

/* Dynamic Specific Colors mapping from crop file */
.bg-warning-custom { background-color: #FFC107; color: #111111 !important; }
.bg-danger-custom { background-color: var(--primary-red); }

/* Upper Corner Navigation Icon Arrow */
.matrix-arrow {
    font-size: 18px;
    color: #aaaaaa;
    transition: color 0.25s ease, transform 0.25s ease;
}

/* Card Inner Content Structure */
.matrix-card-title {
    font-family: var(--font-headings);
    color: #111111;
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.matrix-card-text {
    font-size: 13px;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Text Based Navigation Anchors Link */
.matrix-cta-link {
    font-size: 11px;
    font-weight: 700;
    color: #888888;
    text-decoration: none;
    letter-spacing: 0.8px;
    display: inline-block;
    transition: color 0.25s ease;
}

/* --------------------------------------------------------------------------
   DYNAMO MATRIX HOVER / ACTIVE LAYOUT SYSTEM (Blackout Effect Matching Crop)
   -------------------------------------------------------------------------- */

/* Force explicit rule properties globally on hover state trigger */
.service-matrix-card:hover,
.service-matrix-card.item-active-hover {
    background-color: #111111 !important;
    color: #ffffff !important;
}

.service-matrix-card:hover .matrix-card-title,
.service-matrix-card.item-active-hover .matrix-card-title {
    color: #ffffff !important;
}

.service-matrix-card:hover .matrix-card-text,
.service-matrix-card.item-active-hover .matrix-card-text {
    color: #cccccc !important;
}

.service-matrix-card:hover .matrix-arrow,
.service-matrix-card.item-active-hover .matrix-arrow {
    color: #ffffff !important;
    transform: translate(2px, -2px);
}

.service-matrix-card:hover .matrix-cta-link,
.service-matrix-card.item-active-hover .matrix-cta-link {
    color: #ffffff !important;
}

/* Transforming icon color structure gracefully on hover */
.service-matrix-card:hover .matrix-icon-box,
.service-matrix-card.item-active-hover .matrix-icon-box {
    background-color: gold;
    color: #000000 !important;
}

/* Target Specific Override for Card 1 vehicle recovery logo to become white on active hover */
.service-matrix-card.item-active-hover .matrix-icon-box {
    background-color: #FFC107 !important;
    color: #111111 !important;
}
.service-matrix-card:hover .matrix-icon-box.bg-warning-custom {
    background-color: #FFC107 !important;
    color: #111111 !important;
}

/* Bottom Note text padding scaling adjustment */
.services-footer-note {
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-top: 1px;
    text-align: justify;
}

/* Responsive Overrides Rules Breakpoints */
@media (max-width: 991.98px) {
    .services-main-title { font-size: 32px; }
    .service-matrix-card { min-height: 300px; padding: 25px; }
}

@media (max-width: 575.98px) {
    .services-main-title { font-size: 26px; }
    .service-matrix-card { min-height: auto; }
}
/* ==========================================================================
   SECTION 02 - WHY CHOOSE US (MATH PLUS GRID LAYOUT SYSTEM)
   ========================================================================== */

.why-choose-section {
    background-color: #0c0c0c; /* Smooth charcoal deep black background */
    
    /* Pure CSS Technical Grid & Plus Pattern Generator */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px; /* Precise layout square proportions */
    background-position: center center;
    overflow: hidden;
}

/* Typography Elements Styling */
.why-tag-prefix {
    color: #FFC107; /* Bright contrast layout sub-tag indicator */
    font-size: 13px;
    letter-spacing: 1px;
}

.why-main-title {
    font-family: var(--font-headings);
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -0.5px;
    font-size: 50px;
}

.why-left-desc {
    font-size: 16px;
    color: #cccccc !important;
    line-height: 1.6;
    margin-bottom: 20px!important;
}

/* --- Live Status Box Dynamic Style --- */
.live-status-box {
    background-color: rgba(15, 15, 15, 0.6);
    border: 1px solid #222222; /* Clean thin border framing */
    border-radius: 2px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.status-label {
    color: #888888 !important;
}

/* Flashing Alert Indicator Engine */
.status-flash-dot {
    width: 8px;
    height: 8px;
    background-color: #FFC107; /* Vibrant status color match */
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #FFC107;
    animation: flashStatus 1.8s infinite ease-in-out;
}

@keyframes flashStatus {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* --- Right Side Fine Border 2x2 Matrix System --- */
.why-matrix-wrapper {
    /* Outlines outer bounding walls to balance cells cross borders */
    border-top: 1px solid #222222;
    border-left: 1px solid #222222;
}

.why-matrix-cell {
    border-right: 1px solid #222222;
    border-bottom: 1px solid #222222;
    transition: background-color 0.3s ease;
}

/* Subtle inner cell containment hover shift */
.why-matrix-cell:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.matrix-cell-content {
    padding: 50px 35px; /* Deep proportional padding flow matrix */
}

/* Linear Red Icons Architecture */
.cell-icon-red {
    color: var(--primary-red);
    font-size: 24px;
    line-height: 1;
    display: inline-block;
}

.cell-title {
    font-family: var(--font-body);
    font-weight: 700; /* Clean heavy sans bold font scale */
    font-size: 18px;
    letter-spacing: 0.3px;
}

.cell-text {
    font-size: 14px;
    color: #aaaaaa !important;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   RESPONSIVE LAYOUT OVERRIDES BREAKPOINTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .why-main-title { font-size: 36px; }
    .matrix-cell-content { padding: 35px 25px; }
}

@media (max-width: 991.98px) {
    .why-choose-section { background-size: 40px 40px; } /* Slightly compressed grid on smaller screens */
    .live-status-box { margin-bottom: 20px; }
}

@media (max-width: 575.98px) {
    .why-main-title { font-size: 28px; }
    .matrix-cell-content { padding: 30px 20px; }
    /* Fix horizontal grid lines collision on single cell stacks */
    .why-matrix-wrapper { border-left: none; border-top: none; }
    .why-matrix-cell { border-left: 1px solid #222222; border-top: 1px solid #222222; }
}
/* ==========================================================================
   SECTION 03 - AREA COVERAGE LIST SYSTEM
   ========================================================================== */

.bg-light-gray {
    background-color: #f6f6f6; /* Matching precise off-white light tone from screenshot */
}

/* Typography tokens layout styling */
.coverage-tag-prefix {
    color: var(--primary-red);
    font-size: 13px;
    letter-spacing: 1px;
}

.coverage-main-title {
    font-family: var(--font-headings);
    color: #111111;
    line-height: 1.05;
    letter-spacing: -0.5px;
    font-size: 50px;
}

.coverage-left-desc {
    font-size: 14px;
    line-height: 1.6;
}

/* Image graphic asset frame wrapper */
.coverage-img-wrapper {
    border-radius: 2px;
    max-width: 100%;
}

.local-landmark-img {
    height: 259px;
    border: 2px solid #000;
    border-radius: none;
    object-position: center;
    filter: contrast(1.02) brightness(0.98);
}

/* --- Suburbs Main Floating Frame Layout Box --- */
.suburbs-card-frame {
    background-color: #fafafa !important; /* Extremely flat aesthetic layout tint */
    border: 2px solid #111111; /* Matching crisp solid outer boundary rule from image */
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.suburbs-card-title {
    font-family: var(--font-body);
    font-size: 15px;
    color: #111111;
    letter-spacing: 0.5px;
}

/* --- Precision Bullets Formatting Engine --- */
.suburb-ul-list li {
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    padding: 8px 0; /* Tight balanced item baseline padding rule */
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03); /* Subtle internal rows spacing delimiter */
}

/* Red Square Bullet Token Generator mimicking screenshot exactly */
.red-square-bullet {
    width: 6px;
    height: 6px;
    background-color: var(--primary-red);
    display: inline-block;
    margin-right: 12px;
    flex-shrink: 0;
    border-radius: 1px;
}

/* Dashed separator border for verification footer link */
.border-top-dashed {
    border-top: 1px dashed #dddddd;
}

.suburbs-footer-notice p {
    line-height: 1.5;
    letter-spacing: 0.5px;
    font-size: 13px;
}

/* ==========================================================================
   RESPONSIVE LAYOUT OVERRIDES BREAKPOINTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .coverage-main-title { font-size: 36px; }
    .suburbs-card-frame { padding: 30px !important; }
}

@media (max-width: 991.98px) {
    .local-landmark-img { height: 200px; margin-bottom: 10px; }
}

@media (max-width: 575.98px) {
    .coverage-main-title { font-size: 28px; }
    .suburbs-card-frame { padding: 20px !important; }
    .suburb-ul-list li {padding: 6px 0;font-size: 12px;width: 50%;float: left;}
    .suburbs-list-grid .col {
        margin-bottom: 0; /* Merges list flow seamlessly on single stacked column mobile viewport */
    }
}
.suburbs-footer-notice a
{
    text-decoration: underline!important;
    font-weight: 500;
}
/* ==========================================================================
   SECTION 04 - INTERACTIVE REQUEST RECOVERY FORM SYSTEM
   ========================================================================== */

.request-tag-prefix {
    color: var(--primary-red);
    font-size: 13px;
    letter-spacing: 1px;
}

.request-main-title {
    font-family: var(--font-headings);
    color: #111111;
    line-height: 1.05;
    letter-spacing: -0.5px;
    font-size: 50px;
}

.request-left-desc {
    font-size: 14px;
    line-height: 1.6;
}

/* --- Quick Actions Full Width Buttons Custom Styles --- */
.btn-form-call {
    border: 2px solid #000;
    background-color: var(--primary-red);
    color: #ffffff;
    border-radius: 0px;
    font-size: 14px;
    letter-spacing: 0.5px;
    /* border: none; */
}
.btn-form-call:hover { background-color: #c9141b; color: #ffffff; }

.btn-form-wa {
    border: 2px solid #000;
    background-color: var(--whatsapp-green);
    color: #ffffff;
    border-radius: 0px;
    font-size: 14px;
    letter-spacing: 0.5px;
    /* border: none; */
}
.btn-form-wa:hover { background-color: var(--whatsapp-hover); color: #ffffff; }

/* Announcement Box */
.hours-card {
    background-color: #ffffff;
    border: 2px solid #111111;
    border-radius: 0px;
}

/* --- Form Framework Elements Styling --- */
.main-form-frame {
    border: 2px solid #111111; /* Matching crisp solid frame borders rule from screenshot */
    border-radius: 0px;
}

.form-matrix-label {
    font-size: 11px;
    color: #111111;
    letter-spacing: 0.8px;
}

/* Clean Matrix Input Custom Elements */
.matrix-input, .matrix-select, .matrix-textarea {
    background-color: #fcfcfc;
    border: 2px solid #dedede;
    border-radius: 0px !important;
    font-size: 14px;
    color: #111111;
    font-weight: 600;
    padding: 14px 16px;
}

.matrix-input:focus, .matrix-select:focus, .matrix-textarea:focus {
    border-color: #111111;
    box-shadow: none;
    background-color: #ffffff;
}

/* Geolocation Custom Button Trigger Overrides */
.location-input-group .matrix-input {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.btn-dark-detect {
    background-color: #111111;
    color: #ffffff;
    border: none;
    font-size: 11px;
    letter-spacing: 0.5px;
    padding: 0 20px;
    border-radius: 4px !important;
    transition: background 0.2s ease;
}

.btn-dark-detect:hover {
    background-color: #2a2a2a;
    color: #ffffff;
}

/* Complex Big Submit Button Design Engine */
.btn-submit-whatsapp {
    background-color: var(--whatsapp-green);
    color: #ffffff;
    border: none;
    border-radius: 0px;
    border: 2px solid #000;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-align: left;
    min-width: 200px;
    transition: background 0.2s ease;
}

.btn-submit-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    color: #ffffff;
}

/* ==========================================================================
   RESPONSIVE LAYOUT CONFIGURATIONS OVERRIDES
   ========================================================================== */
@media (max-width: 767.98px) {
    .location-input-group .matrix-input {
        border-radius: 4px !important;
    }
    .btn-dark-detect {
        padding: 14px;
        font-size: 12px;
        width: 100%;
    }
    .btn-submit-whatsapp {
        width: 100%;
        text-align: center;
    }
}
.hours-card h4
{
    font-weight: bold!important;
    font-size: 22px;
}
/* ==========================================================================
   PRODUCTION READY FOOTER STRUCTURE SYSTEM (IMAGE MATCH)
   ========================================================================== */

.bg-solid-black {
    background-color: #070707 !important; /* Pitch solid true black canvas */
}

/* Typography tokens definition rules */
.footer-brand-heading {
    font-family: var(--font-headings);
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.3px;
    font-size: 22px;
}

.footer-brand-text {
    color: #888888 !important;
    line-height: 1.5;
}

.fs-14px {
    font-size: 14px !important;
}

/* Color specific custom vector helpers for matching image exactly */
.text-success-custom { color: var(--whatsapp-green) !important; }
.text-white-muted { color: #dddddd; }

.footer-contact-list li {
    font-weight: 400;
    letter-spacing: 0.2px;
}

.footer-section-title {
    font-family: var(--font-body);
    font-weight: 700;
    color: #666666 !important; /* Subtle dark-grey header tracking */
    letter-spacing: 1.5px !important;
}

/* Quick Nav Menu formatting flow */
.footer-menu-links li a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-menu-links li a:hover {
    color: var(--primary-red);
}

/* --- SEO Service Tag Matrix Chips Grid --- */
.service-areas-chips-matrix {
    max-width: 480px;
}

.area-chip-tag {
    font-size: 12px;
    color: #cccccc;
    background-color: transparent;
    border: 1px solid #222222; /* Clean thin rectangular container box boundary */
    padding: 5px 12px;
    border-radius: 2px; /* Super crisp block edges */
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    cursor: default;
}

.area-chip-tag:hover {
    border-color: #555555;
    color: #ffffff;
}

/* --- Base Row Delimiter Framework --- */
.border-top-dark {
    border-top: 1px solid #1a1a1a; /* Very faint line dividing content */
}

.header-footprint-geo {
    color: #777777 !important;
    letter-spacing: 2px !important;
}

/* ==========================================================================
   RESPONSIVE LAYOUT OVERRIDES BREAKPOINTS
   ========================================================================== */
@media (max-width: 991.98px) {
    .footer-brand-heading { font-size: 20px; }
    .main-footer-section { padding-top: 40px !important; }
    .service-areas-chips-matrix { max-width: 100%; }
}

@media (max-width: 575.98px) {
    .input-group>.form-control, .input-group>.form-floating, .input-group>.form-select
    {
        width: 100%!important;
    }
    .brand-subtitle
    {
        font-size: 10px;
    }
    .brand-title
    {
        font-size: 14px;
    }
    .footer-brand-heading { font-size: 18px; }
    .footer-copyright-subrow {
        text-align: center;
        flex-direction: column;
    }
    .service-areas-chips-matrix {
        gap: 6px;
    }
    .area-chip-tag {
        padding: 4px 10px;
        font-size: 11px;
    }
}
/* ==========================================================================
   TOWING SERVICE PROFILE STYLING FRAMEWORK (IMAGE BLOCK MAPPING)
   ========================================================================== */

/* Theme Colors definitions specifically matching image palette */
:root {
    --dark-blue-text: #0B2240; /* Royal Deep Navy Blue from headers */
    --accent-orange: #E86B25;  /* Saturated Orange Indicator Hex code */
    --light-blue-bg: #F5F8FA;  /* Micro grey-blue canvas tone */
}

.text-dark-blue { color: var(--dark-blue-text); }
.text-orange-custom { color: var(--accent-orange); }

/* --- Service Page Hero Core Styles --- */
.service-inner-hero {
   /* background-color: #0A1C33;*/
    background-image: url(../images/service-main.png);
    background-position: center;
    padding-top: 40px;
    padding-bottom: 60px; /* Padding setup for wave mask clearance */
}

.inner-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    z-index: 1;
    opacity: 0.25; /* Image opacity balance matching screen background layer tint */
}

.inner-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #091C34 40%, rgba(9,28,52,0.6) 100%);
    z-index: 1;
}

/* Breadcrumbs Formatting Match */
.custom-breadcrumb .breadcrumb-item, 
.custom-breadcrumb .breadcrumb-item a {
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}
.custom-breadcrumb .breadcrumb-item.active {
    color: var(--accent-orange) !important; /* Accent path indicator token */
}
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4) !important;
    content: ">" !important; /* Specific symbol divider as per crop */
}

.service-title-h1 {
    line-height: 1.1;
    font-size: 38px;
    letter-spacing: -0.5px;
}

.service-hero-sub-text {
    font-size: 15px;
    line-height: 1.6;
}

/* Stripe Trust Badges Items Row styling */
.badge-circle-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange); /* Vibrant vector token mapping */
    font-size: 18px;
    flex-shrink: 0;
}

/* SVG Wave mask bottom element generator rules */
.wave-shape-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3;
}
.wave-shape-divider svg {
    position: relative;
    display: block;
    width: calc(102% + 18.3px);
    /* height: 55px; */
}
.wave-shape-divider .shape-fill {
    fill: #ffffff; /* Fuses smoothly with white canvas below */
}

/* --- Content Typography Segment Matrix --- */
.service-section-h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.service-body-para {
    font-size: 14.5px;
    color: #555555 !important;
}

/* Graphic elements layouts background pattern grid alignment */
.dot-matrix-pattern-bg {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(#dddddd 2px, transparent 2px);
    background-size: 12px 12px;
    z-index: 1;
    opacity: 0.8;
}

.service-graphic-img {
    max-height: 250px;
    object-fit: contain;
}

/* Custom Orange Bullet Point Matrix elements styling */
.orange-chevron-icon {
    color: var(--accent-orange);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
.fs-15px { font-size: 15px !important; }

/* --- Section 04: Linear WorkFlow Steps Framework --- */
.bg-light-blue-tint {
    background-color: var(--light-blue-bg);
}

.section-center-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 2.5px;
    background-color: var(--accent-orange); /* Small underline under header section */
}

/* Micro Badge Number Indicator Circle mapping precisely */
.step-badge-number {
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.line-height-md {
    line-height: 1.4;
    font-size: 12.5px;
}

/* Flex arrangement setup for workflow steps elements icons columns alignment */
.step-arrow-column {
    max-width: 30px;
    padding: 0;
}

/* --- Section 05: Clean Accordion Blocks Engineering --- */
.faq-section-title {
    color: var(--dark-blue-text);
}

.custom-faq-item {
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.01);
}

/* Overriding traditional accordion design parameters to match image exactly */
.custom-faq-btn {
    background-color: #ffffff !important;
    color: var(--dark-blue-text) !important;
    font-size: 14.5px;
    font-weight: 600;
    padding: 16px 20px;
    border: none !important;
    box-shadow: none !important;
}

/* Icon layout engine override via Bootstrap Pseudo indicators to mimic (+) and (-) signals */
.custom-faq-btn::after {
    background-image: none !important;
    content: "\F62A"; /* Custom BI plus circle token mapping */
    font-family: "bootstrap-icons" !important;
    color: var(--dark-blue-text);
    font-size: 18px;
    transform: none !important;
    font-weight: bold;
}

.custom-faq-btn:not(.collapsed)::after {
    content: "\F4FE" !important; /* Custom BI minus circle toggle token mapping */
    color: var(--dark-blue-text);
}

.custom-faq-body {
    padding: 0 20px 20px 20px;
    font-size: 13.5px;
    background-color: #ffffff;
}

/* --- Responsive Configurations Rules Breakpoints --- */
@media (max-width: 1199.98px) {
    .service-title-h1 { font-size: 32px; }
    .steps-flex-layout { gap: 20px !important; }
    .step-arrow-column { display: none !important; } /* Hides arrows on multi-row wraps */
}

@media (max-width: 767.98px) {
    .service-title-h1 { font-size: 26px; }
    .service-hero-sub-text { font-size: 14px; }
    .badge-item-row { margin-bottom: 5px; }
    .service-graphic-img { margin-top: 15px; max-height: 200px; }
    .custom-faq-btn { font-size: 13.5px; padding: 14px 15px; }
    .custom-faq-body { padding: 0 15px 15px 15px; font-size: 13px; }
}
/* ==========================================================================
   BLOG HUB PROFILE LAYOUT SYSTEM (IMAGE ANALYSIS MATCH)
   ========================================================================== */

/* Outer Universal Border Rule to maintain consistent style tokens */
.border-custom {
    border: 1px solid #111111 !important;
    border-radius: 2px !important;
}

.blog-tag-prefix {
    color: var(--primary-red);
    font-size: 13px;
    letter-spacing: 1px;
}

.fw-black {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 900;
}

/* --- Featured Big Card UI Formatting --- */
.featured-card-wrapper {
    box-shadow: 0 4px 25px rgba(0,0,0,0.02);
    margin-top: 11px;
}

.featured-img-frame {
    border: 1px solid #222222;
    border-radius: 1px;
}

.featured-main-img {
    height: 340px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.featured-card-wrapper:hover .featured-main-img {
    transform: scale(1.02);
}

.featured-title-h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    font-size: 24px;
    letter-spacing: -0.3px;
}
.hover-red-text:hover {
    color: var(--primary-red) !important;
}

.author-avatar-mini {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 11px;
    letter-spacing: -0.2px;
}

.fs-11px { font-size: 11px !important; }
.fs-12px { font-size: 12px !important; }
.fs-13px { font-size: 13px !important; }
.fs-10px { font-size: 10px !important; letter-spacing: 0.5px; }

/* --- Recent Article Post Card Matrix Grid --- */
.section-subheading-border {
    position: relative;
    padding-bottom: 10px;
    font-size: 18px;
    border-bottom: 1px solid #111111;
}

.blog-article-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}
.blog-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card-img-holder {
    border-bottom: 1px solid #111111;
}
.card-img-holder img {
    height: 190px;
    object-fit: cover;
}

.card-post-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}
.card-post-title a {
    color: var(--dark-blue-text);
    transition: color 0.15s ease;
}
.card-post-title a:hover {
    color: var(--primary-red);
}

.bg-light-flat {
    background-color: #fcfcfc !important;
}

/* --- Premium Square Blog Pagination Elements --- */
.custom-blog-pagination .page-item .page-link {
    color: #111111;
    border: 1px solid #111111;
    margin: 0 3px;
    font-weight: 600;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 2px !important;
    transition: all 0.2s ease;
}
.custom-blog-pagination .page-item.active .page-link {
    background-color: #111111 !important;
    border-color: #111111 !important;
    color: #ffffff !important;
}
.custom-blog-pagination .page-item:not(.active):hover .page-link {
    background-color: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-red);
}

/* --- Sidebar Widgets Formatting Components --- */
.widget-title {
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 1px dashed #cccccc;
}

.sidebar-search-input {
    border: 1px solid #111111;
    border-radius: 2px;
    padding: 10px 45px 10px 12px;
    font-size: 13px;
}
.sidebar-search-input:focus {
    box-shadow: none;
    border-color: var(--primary-red);
}

.category-sidebar-list li {
    border-bottom: 1px solid #f0f0f0;
}
.category-sidebar-list li:last-child {
    border: none;
}
.category-sidebar-list li a {
    display: block;
    padding: 10px 0;
    font-size: 13.5px;
    color: #333333;
    font-weight: 500;
    transition: padding-left 0.2s ease, color 0.2s ease;
}
.category-sidebar-list li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

/* Mini Post Items Stack */
.border-bottom-dashed {
    border-bottom: 1px dashed #dddddd;
}
.mini-post-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border: 1px solid #111111;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

/* ==========================================================================
   RESPONSIVE LAYOUT OVERRIDES BREAKPOINTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .featured-main-img { height: 280px; }
    .featured-title-h2 { font-size: 20px; }
}

@media (max-width: 991.98px) {
    .featured-main-img { height: 240px; }
    .blog-sidebar-wrapper { margin-top: 20px; }
}

@media (max-width: 575.98px) {
    .blog-featured-section { padding-top: 30px !important; }
    .featured-main-img { height: 180px; }
    .featured-title-h2 { font-size: 18px; }
    .card-img-holder img { height: 160px; }
    .custom-blog-pagination .page-link { padding: 5px 10px; font-size: 12px; }
}
/* ==========================================================================
   BLOG SINGLE/DETAIL ARTICLE UI LAYOUT (PIXEL DITTO SETUP)
   ========================================================================== */

/* Outer frame standard delimiter token */
.border-custom-dark {
    border: 1px solid #111111 !important;
}

/* Custom styled breadcrumbs path mapping */
.blog-detail-breadcrumb .breadcrumb-item, 
.blog-detail-breadcrumb .breadcrumb-item a {
    color: var(--dark-blue-text) !important;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}
.blog-detail-breadcrumb .breadcrumb-item.active {
    color: #888888 !important;
}
.blog-detail-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #999999 !important;
    content: ">" !important;
}

.blog-main-title-h1 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700 !important;
    line-height: 1.15;
    font-size: 34px;
    letter-spacing: -0.5px;
}

.border-bottom-faint {
    border-bottom: 1px solid #eeeeee;
}

.blog-single-meta-strip .meta-item-txt {
    font-size: 13px;
    font-weight: 500;
    color: #666666;
}

/* Central Article Image Scaling dimensions */
.single-post-main-img {
    height: 360px;
    width: 100%;
}

/* Copy Block Typography Formatting layout */
.single-post-rich-text p {
    font-size: 14.5px;
    color: #444444 !important;
    line-height: 1.7;
}

/* Inline Quote callout block */
.border-start-danger {
    border-left: 4px solid var(--primary-red) !important;
}

/* --- Widget Components Layering Layouts --- */
.bg-navy-blue-cta {
    background-color: #051429 !important; /* Deep heavy dark corporate blue tint */
}

.text-light-muted-opaque {
    color: #b0c2d4 !important;
    font-size: 13px;
}

/* Premium Bright Saturated Call Action Element */
.btn-emergency-sidebar-call {
    background-color: #FF5500 !important; /* High exposure direct fire orange */
    border: none;
    font-size: 16px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease-in-out;
}
.btn-emergency-sidebar-call:hover {
    background-color: #e04b00 !important;
}

/* Recent Posts Stack Alignment Engine */
.side-post-thumb-img {
    width: 75px;
    height: 52px;
    object-fit: cover;
    border: 1px solid #111111;
}

.side-post-heading-h5 {
    font-size: 13px;
    line-height: 1.3;
}
.side-post-heading-h5 a {
    color: var(--dark-blue-text);
    transition: color 0.15s ease;
}
.side-post-heading-h5 a:hover {
    color: var(--primary-red);
}

/* ==========================================================================
   RESPONSIVE LAYOUT OVERRIDES BREAKPOINTS
   ========================================================================== */
@media (max-width: 1199.98px) {
    .blog-main-title-h1 { font-size: 28px; }
    .single-post-main-img { height: 300px; }
}

@media (max-width: 991.98px) {
    .blog-sidebar-sticky-system { margin-top: 25px; }
    .single-post-main-img { height: 260px; }
}

@media (max-width: 575.98px) {
    .blog-detail-layout-section { padding-top: 30px !important; }
    .blog-main-title-h1 { font-size: 22px; }
    .single-post-main-img { height: 190px; }
    .single-post-rich-text p { font-size: 13.5px; }
    .sidebar-widget { padding: 20px !important; }
}