/* ======================================== */
/* GLOBAL RESET & BASE STYLES               */
/* ======================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #222222;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ======================================== */
/* CONTAINER                                */
/* ======================================== */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======================================== */
/* SCROLL-TRIGGERED ANIMATIONS              */
/* ======================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.15s;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================== */
/* SECTION: HEADER SECTION                  */
/* ======================================== */

.main-header {
    width: 100%;
    height: 120px;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8e8e8;
    transition: box-shadow 0.3s ease;
}

.main-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.2;
    color: #222222;
    padding: 8px 14px;
    border-radius: 4px;
    position: relative;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: #C1291C;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: #C1291C;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: #C1291C;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
    color: #ffffff;
    background-color: #C1291C;
    padding: 12px 22px;
    border-radius: 5px;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.nav-cta-btn:hover {
    background-color: #a01f14;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}

.ham-bar {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #222222;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open .ham-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open .ham-bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .ham-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background-color: #0B2346;
    z-index: 999;
    padding: 20px 0 28px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li a {
    display: block;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #ffffff;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-list li a:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: #f0a09a;
}

.mobile-nav-phone-link {
    display: block;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #C1291C;
    text-align: center;
    margin-top: 20px;
    padding: 12px 24px;
}

/* ======================================== */
/* SECTION: HERO SECTION                    */
/* ======================================== */

.hero {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 35, 70, 0.78) 0%,
        rgba(11, 35, 70, 0.50) 60%,
        rgba(0, 0, 0, 0.30) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 620px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 28px;
}

.hero-phone-btn {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    color: #ffffff;
    background-color: #C1291C;
    padding: 16px 32px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
    transition: background-color 0.2s ease, transform 0.15s ease;
    box-shadow: 0 4px 20px rgba(193, 41, 28, 0.45);
}

.hero-phone-btn:hover {
    background-color: #a01f14;
    transform: translateY(-2px);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
}

.hero-badges li {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.90);
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-check {
    color: #C1291C;
    font-size: 16px;
}

/* ======================================== */
/* SECTION 1: SERVING BAR                   */
/* ======================================== */

.serving-bar {
    width: 100%;
    background: linear-gradient(135deg, #0B2346 0%, #142f5a 100%);
    padding: 26px 20px;
    text-align: center;
}

.serving-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.serving-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    color: #ffffff;
}

.serving-sub {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.82);
}

/* ======================================== */
/* SECTION 1: ICON CARDS                    */
/* ======================================== */

.icon-cards-section {
    width: 100%;
    padding: 50px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.icon-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 30px;
    text-align: center;
    background-color: #ffffff;
    border-right: 1px solid #e8e8e8;
    transition: background-color 0.2s ease;
}

.icon-card:last-child {
    border-right: none;
}

.icon-card:hover {
    background-color: #fafafa;
}

.icon-card-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.icon-card-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    color: #0B2346;
}

/* ======================================== */
/* SECTION 2 & 3: CONTENT TWO-COL SECTIONS  */
/* ======================================== */

.content-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

.content-section.alt-bg {
    background-color: #f4f6f9;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.col-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section-heading {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.25;
    color: #0B2346;
}

.col-text p {
    font-size: 17px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
    color: #333333;
}

.section-subheading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.10em;
    line-height: 1.4;
    color: #C1291C;
    text-transform: uppercase;
    margin-top: -8px;
}

.inline-phone-link {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: inherit;
    color: #C1291C;
    text-decoration: none;
    transition: color 0.2s ease;
}

.inline-phone-link:hover {
    color: #a01f14;
}

.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.check-list li {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.5;
    color: #222222;
    padding-left: 24px;
    position: relative;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #C1291C;
    font-weight: 700;
    font-size: 15px;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-list.two-col-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.service-list li {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 1.5;
    color: #333333;
    padding-left: 18px;
    position: relative;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #C1291C;
    font-weight: 700;
}

.service-list-detailed {
    gap: 14px;
}

.service-list-detailed li {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: #333333;
    padding-left: 18px;
}

.col-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    object-fit: cover;
}

.col-image-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-img,
.col-image img.badge-img {
    max-width: 300px;
    border-radius: 0;
    box-shadow: none;
}

/* ======================================== */
/* SECTION 4: SERVICE MAP + DIAMOND         */
/* ======================================== */

.map-diamond-grid {
    align-items: center;
}

.map-img,
.col-image img.map-img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.diamond-logo {
    width: 65%;
    height: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.county-heading {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.3;
    color: #0B2346;
}

.county-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.county-list li {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: #222222;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pin-icon {
    font-size: 18px;
    flex-shrink: 0;
    color: #C1291C;
    line-height: 1;
}

/* ======================================== */
/* SECTION 5: BRAND LOGO SCROLL             */
/* ======================================== */

.brands-section {
    width: 100%;
    padding: 36px 0;
    background-color: #ffffff;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
}

.brands-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.brands-track {
    display: flex;
    width: max-content;
    animation: brandsScroll 28s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brands-set {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

.brands-set img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 0.80;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.brands-set img:hover {
    opacity: 1;
}

@keyframes brandsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ======================================== */
/* SECTION: FAT FOOTER SECTION              */
/* ======================================== */

.fat-footer {
    width: 100%;
    background: linear-gradient(135deg, #0B2346 0%, #142f5a 100%);
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.footer-heading {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.footer-company-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 6px;
}

.footer-address {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 18px;
}

.footer-phone {
    display: block;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.2;
    color: #C1291C;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.footer-phone:hover {
    color: #e8382a;
}

.footer-email {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: #ffffff;
}

.footer-map-col iframe {
    display: block;
    border-radius: 6px;
}

.footer-hours {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 4px;
}

.footer-hours-note {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    margin-bottom: 18px;
}

.footer-licenses {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-licenses p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.60);
}

/* ======================================== */
/* SECTION: COPYRIGHT FOOTER BAR            */
/* ======================================== */

.copyright-bar {
    width: 100%;
    background-color: #071729;
    padding: 14px 0;
}

.copyright-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright-inner p {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

.copyright-inner a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.2s ease;
}

.copyright-inner a:hover {
    color: #ffffff;
}

/* ======================================== */
/* MOBILE STICKY PHONE BAR                  */
/* ======================================== */

.mobile-sticky-phone {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background-color: #C1291C;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    text-decoration: none;
    box-shadow: 0 -3px 16px rgba(0, 0, 0, 0.25);
    transition: background-color 0.2s ease;
}

.mobile-sticky-phone:hover {
    background-color: #a01f14;
    color: #ffffff;
}

/* ======================================== */
/* RESPONSIVE STYLES                        */
/* ======================================== */

@media (max-width: 1024px) {
    .two-col-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-map-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    /* Header: mobile height 74px */
    .main-header {
        height: 74px;
    }

    .logo {
        height: 50px;
    }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .mobile-sticky-phone {
        display: flex;
    }

    /* Hero */
    .hero {
        height: 560px;
    }

    .hero-title {
        font-size: 32px;
        font-weight: 900;
        letter-spacing: -0.01em;
        line-height: 1.15;
        color: #ffffff;
    }

    .hero-subtitle {
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0.01em;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.92);
    }

    .hero-phone-btn {
        font-size: 16px;
        font-weight: 800;
        letter-spacing: 0.05em;
        line-height: 1;
        color: #ffffff;
        padding: 14px 24px;
    }

    .hero-badges {
        flex-direction: column;
        gap: 8px;
    }

    /* Icon Cards: stack to single column */
    .icon-cards-grid {
        grid-template-columns: 1fr;
    }

    .icon-card {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
        padding: 28px 20px;
    }

    .icon-card:last-child {
        border-bottom: none;
    }

    /* Two-col sections: stack */
    .two-col-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Flip order: image comes after text on mobile */
    .col-image {
        order: 2;
    }

    .col-text {
        order: 1;
    }

    .map-diamond-grid .col-image {
        order: 1;
    }

    .map-diamond-grid .col-text {
        order: 2;
    }

    .badge-img {
        max-width: 220px;
        margin: 0 auto;
    }

    .section-heading {
        font-size: 22px;
        font-weight: 800;
        letter-spacing: 0.03em;
        line-height: 1.3;
        color: #0B2346;
    }

    .service-list.two-col-list {
        grid-template-columns: 1fr;
    }

    /* Serving bar */
    .serving-title {
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 0.08em;
        line-height: 1.3;
        color: #ffffff;
    }

    .serving-sub {
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.03em;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.82);
    }

    /* Content sections */
    .content-section {
        padding: 50px 0;
    }

    /* Footer: single column */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-map-col {
        grid-column: auto;
    }

    .footer-phone {
        font-size: 22px;
        font-weight: 900;
        letter-spacing: 0.02em;
        line-height: 1.2;
        color: #C1291C;
    }

    .fat-footer {
        padding: 46px 0 80px;
    }

    /* Give breathing room above sticky bar */
    body {
        padding-bottom: 0;
    }

    .copyright-inner p {
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 0.01em;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.45);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 480px;
    }

    .hero-title {
        font-size: 26px;
        font-weight: 900;
        letter-spacing: -0.01em;
        line-height: 1.2;
        color: #ffffff;
    }

    .hero-phone-btn {
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 0.04em;
        line-height: 1;
        color: #ffffff;
        padding: 12px 18px;
        width: 100%;
        justify-content: center;
    }

    .brands-set {
        gap: 40px;
    }

    .brands-set img {
        height: 28px;
    }
}

/* ======================================== */
/* SUB-PAGE TITLE BAR                       */
/* ======================================== */

.page-title-bar {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.page-title-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-title-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 35, 70, 0.82) 0%,
        rgba(11, 35, 70, 0.55) 60%,
        rgba(0, 0, 0, 0.32) 100%
    );
    z-index: 1;
}

.page-title-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.page-title-text {
    max-width: 600px;
}

.page-title-text h1 {
    font-size: 46px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.page-title-phone {
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    color: #ffffff;
    background-color: #C1291C;
    padding: 14px 28px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 20px rgba(193, 41, 28, 0.45);
}

.page-title-phone:hover {
    background-color: #a01f14;
    color: #ffffff;
}

.page-title-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    list-style: none;
}

.page-title-badges li {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.07em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.90);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ======================================== */
/* SUB-PAGE TITLE BAR - RESPONSIVE          */
/* ======================================== */

@media (max-width: 768px) {
    .page-title-bar {
        height: 340px;
    }

    .page-title-text h1 {
        font-size: 28px;
        font-weight: 900;
        letter-spacing: 0.04em;
        line-height: 1.15;
        color: #ffffff;
    }

    .page-title-phone {
        font-size: 17px;
        font-weight: 800;
        letter-spacing: 0.04em;
        line-height: 1;
        color: #ffffff;
        padding: 12px 20px;
    }

    .page-title-badges {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .page-title-bar {
        height: 300px;
    }

    .page-title-text h1 {
        font-size: 24px;
        font-weight: 900;
        letter-spacing: 0.03em;
        line-height: 1.2;
        color: #ffffff;
    }
}
