/* =========================================
   Google Font
   Download Poppins locally when preferred
========================================= */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");


/* =========================================
   Root Variables
========================================= */

:root {
    --primary-red: #d92332;
    --primary-red-dark: #b91523;
    --navy: #08084f;
    --navy-dark: #04043c;
    --navy-light: #11116f;
    --blue: #4774ef;
    --white: #ffffff;
    --light: #f6f7fb;
    --text: #14143b;
}


/* =========================================
   Reset
========================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

button,
a {
    transition: all 0.3s ease;
}


/* =========================================
   Header
========================================= */

.main-header {
    position: relative;
    z-index: 1000;
    background: var(--white);
    border-top: 6px solid var(--primary-red);
    box-shadow: 0 6px 25px rgba(8, 8, 79, 0.08);
}

.main-header .navbar {
    min-height: 92px;
    padding-top: 0;
    padding-bottom: 0;
}


/* =========================================
   Logo
========================================= */

.garage-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    padding: 0;
}

.garage-logo:hover {
    color: var(--navy);
}

.logo-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 8px 18px rgba(217, 35, 50, 0.25);
}

.logo-icon svg {
    width: 34px;
    height: 34px;
}

.logo-icon path {
    fill: none;
    stroke: var(--white);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.6px;
}

.logo-text small {
    margin-top: 7px;
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}


/* =========================================
   Navigation
========================================= */

.navbar-nav {
    gap: 22px;
}

.navbar-nav .nav-link {
    position: relative;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    padding: 35px 4px !important;
}

.navbar-nav .nav-link::after {
    position: absolute;
    content: "";
    left: 4px;
    right: 4px;
    bottom: 25px;
    height: 2px;
    border: 0;
    background: var(--primary-red);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-red);
}

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

.navbar-nav .dropdown-toggle::before {
    display: none;
}

.dropdown-menu {
    min-width: 250px;
    padding: 12px;
    border: 0;
    border-top: 3px solid var(--primary-red);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 18px 45px rgba(8, 8, 79, 0.16);
}

.dropdown-item {
    padding: 11px 14px;
    border-radius: 7px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 500;
}

.dropdown-item:hover {
    color: var(--white);
    background: var(--primary-red);
    transform: translateX(4px);
}


/* =========================================
   Header Actions
========================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 125px;
    min-height: 46px;
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--white);
    background: var(--blue);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(71, 116, 239, 0.25);
}

.book-btn:hover {
    color: var(--white);
    background: var(--primary-red);
    transform: translateY(-3px);
}

.header-phone {
    position: relative;
    min-height: 86px;
    min-width: 280px;
    margin-right: -48px;
    padding: 15px 42px 15px 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    color: var(--white);
    background: var(--navy);
    border-bottom-left-radius: 28px;
}

.header-phone::before {
    position: absolute;
    content: "";
    left: -43px;
    top: 0;
    width: 70px;
    height: 100%;
    background: var(--navy);
    transform: skewX(31deg);
    border-bottom-left-radius: 25px;
    z-index: -1;
}

.header-phone:hover {
    color: var(--white);
    background: var(--navy-light);
}

.phone-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-red);
    animation: phonePulse 2s infinite;
}

.phone-icon svg {
    width: 23px;
    height: 23px;
}

.phone-icon path {
    fill: var(--white);
}

.header-phone span:last-child {
    display: flex;
    flex-direction: column;
}

.header-phone small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
}

.header-phone strong {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}


/* =========================================
   Mobile Toggle
========================================= */

.navbar-toggler {
    width: 46px;
    height: 42px;
    padding: 8px;
    border: 0;
    border-radius: 8px;
    background: var(--navy);
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}


/* =========================================
   Hero Section
========================================= */

.garage-hero {
    position: relative;
    min-height: 790px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(
            90deg,
            rgba(4, 4, 60, 1) 0%,
            rgba(8, 8, 79, 0.97) 20%,
            rgba(8, 8, 79, 0.78) 44%,
            rgba(109, 15, 58, 0.52) 72%,
            rgba(128, 10, 39, 0.48) 100%
        ),
        url("../images/garage-door-hero.webp") center right / cover no-repeat;
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
}

.garage-hero::before {
    position: absolute;
    content: "";
    inset: 0;
    background:
        radial-gradient(
            circle at 40% 75%,
            rgba(217, 35, 50, 0.33),
            transparent 34%
        );
    pointer-events: none;
}

.garage-hero::after {
    position: absolute;
    content: "";
    right: -100px;
    bottom: -190px;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.min-vh-lg-hero {
    min-height: 790px;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
    padding-left: 120px;
    animation: heroFadeUp 0.9s ease both;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-subtitle span {
    width: 38px;
    height: 3px;
    border-radius: 20px;
    background: var(--primary-red);
}

.hero-content h1 {
    margin: 0;
    max-width: 800px;
    color: var(--white);
    font-size: clamp(58px, 6.3vw, 105px);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -5px;
}

.hero-content h1 span {
    display: block;
}

.hero-bottom-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: center;
    margin-top: 28px;
}


/* =========================================
   Garage Decoration
========================================= */

.garage-decoration {
    position: relative;
    width: 265px;
    height: 150px;
}

.garage-outline {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.garage-outline path {
    fill: none;
    stroke: var(--white);
    stroke-width: 9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.spring-part {
    position: absolute;
    left: 72px;
    top: 40px;
    width: 130px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: springFloat 3s ease-in-out infinite;
}

.spring-ring {
    position: relative;
    width: 31px;
    height: 58px;
    margin-left: -9px;
    border: 10px solid #298de8;
    border-radius: 50%;
    box-shadow:
        inset -4px -3px 5px rgba(0, 0, 0, 0.25),
        0 6px 8px rgba(0, 0, 0, 0.18);
}

.ring-two,
.ring-four {
    border-color: #43b5ff;
    transform: rotate(12deg);
}

.spring-center {
    position: absolute;
    right: -3px;
    width: 34px;
    height: 54px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffbd14, #e57800);
    box-shadow: inset -6px -4px 7px rgba(0, 0, 0, 0.2);
}


/* =========================================
   Hero Text and Buttons
========================================= */

.hero-description {
    max-width: 480px;
}

.hero-description p {
    margin: 0 0 23px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.discover-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 6px 8px 6px 28px;
    border-radius: 40px;
    color: var(--white);
    background: var(--primary-red);
    font-size: 25px;
    font-weight: 600;
    overflow: hidden;
}

.discover-btn::before {
    position: absolute;
    content: "";
    inset: 0;
    background: var(--white);
    transform: translateX(-105%);
    transition: transform 0.35s ease;
}

.discover-btn span {
    position: relative;
    z-index: 2;
}

.discover-btn:hover::before {
    transform: translateX(0);
}

.discover-btn:hover {
    color: var(--navy);
}

.arrow-circle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: 23px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
}

.arrow-circle svg {
    width: 19px;
    height: 19px;
}

.arrow-circle path {
    fill: none;
    stroke: var(--navy);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-call-btn {
    display: none;
    min-height: 50px;
    padding: 14px 22px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 30px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

.mobile-call-btn:hover {
    color: var(--navy);
    background: var(--white);
}


/* =========================================
   Social Sidebar
========================================= */

.social-sidebar {
    position: absolute;
    z-index: 8;
    left: 65px;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transform: translateY(-50%);
}

.follow-text {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.follow-line {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, 0.35);
}

.social-sidebar a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
}

.social-sidebar a:hover {
    color: var(--white);
    background: var(--primary-red);
    transform: translateY(-3px);
}



/* =========================================
   Service Indicator
========================================= */

.service-indicator {
    position: absolute;
    z-index: 8;
    right: 53px;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
}

.indicator-number {
    color: var(--white);
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
}

.indicator-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    line-height: 1.5;
    text-transform: uppercase;
}


/* =========================================
   Decorative Lines
========================================= */

.hero-line {
    position: absolute;
    z-index: 2;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.line-one {
    left: -250px;
    bottom: -380px;
    width: 850px;
    height: 850px;
}

.line-two {
    left: 230px;
    bottom: -520px;
    width: 950px;
    height: 950px;
}


/* =========================================
   Animations
========================================= */

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes phonePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(217, 35, 50, 0.4);
    }

    50% {
        box-shadow: 0 0 0 11px rgba(217, 35, 50, 0);
    }
}

@keyframes springFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-4deg);
    }

    50% {
        transform: translateY(-9px) rotate(4deg);
    }
}

@keyframes openerMove {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}


/* =========================================
   Large Desktop
========================================= */

@media (min-width: 1400px) {

    .garage-hero .container {
        max-width: 1450px;
    }

}


/* =========================================
   Laptop
========================================= */

@media (max-width: 1399.98px) {

    .navbar-nav {
        gap: 14px;
    }

    .navbar-nav .nav-link {
        font-size: 13px;
    }

    .header-phone {
        min-width: 240px;
    }

    .hero-content {
        padding-left: 95px;
    }

    .hero-content h1 {
        font-size: 76px;
    }

    .opener-decoration {
        right: -40px;
        transform: scale(0.82);
    }

}


/* =========================================
   Tablet / Navbar Collapse
========================================= */

@media (max-width: 1199.98px) {

    .main-header .navbar {
        min-height: 82px;
    }

    .navbar-collapse {
        position: absolute;
        top: 81px;
        left: 15px;
        right: 15px;
        padding: 22px;
        border-radius: 0 0 16px 16px;
        background: var(--white);
        box-shadow: 0 20px 40px rgba(8, 8, 79, 0.18);
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar-nav .nav-link {
        padding: 13px 5px !important;
        border-bottom: 1px solid #eeeeF4;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        box-shadow: none;
        border-top-width: 2px;
    }

    .header-actions {
        margin-top: 20px;
    }

    .header-phone {
        min-width: auto;
        min-height: 58px;
        margin-right: 0;
        padding: 8px 18px;
        border-radius: 35px;
    }

    .header-phone::before {
        display: none;
    }

    .phone-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .garage-hero {
        min-height: 730px;
    }

    .min-vh-lg-hero {
        min-height: 730px;
    }

    .hero-content {
        max-width: 720px;
        padding-left: 70px;
    }

    .hero-content h1 {
        font-size: 68px;
    }

    .hero-bottom-content {
        grid-template-columns: 225px 1fr;
    }

    .garage-decoration {
        width: 220px;
    }

    .opener-decoration {
        right: -80px;
        bottom: -10px;
        opacity: 0.9;
        transform: scale(0.72);
    }

}


/* =========================================
   Medium Tablet
========================================= */

@media (max-width: 991.98px) {

    .garage-hero {
        min-height: auto;
        padding: 110px 0 95px;
        background-position: 66% center;
    }

    .garage-hero::before {
        background:
            linear-gradient(
                90deg,
                rgba(4, 4, 60, 0.98),
                rgba(8, 8, 79, 0.88),
                rgba(99, 14, 49, 0.6)
            );
    }

    .min-vh-lg-hero {
        min-height: auto;
    }

    .hero-content {
        max-width: 700px;
        padding-left: 60px;
    }

    .hero-content h1 {
        font-size: 62px;
        letter-spacing: -3px;
    }

    .hero-bottom-content {
        grid-template-columns: 200px 1fr;
    }

    .garage-decoration {
        width: 195px;
        transform: scale(0.9);
        transform-origin: left center;
    }

    .social-sidebar {
        left: 25px;
    }

    .opener-decoration {
        opacity: 0.55;
    }

}


/* =========================================
   Mobile
========================================= */

@media (max-width: 767.98px) {

    .main-header {
        border-top-width: 4px;
    }

    .main-header .navbar {
        min-height: 72px;
    }

    .navbar-collapse {
        top: 71px;
    }

    .logo-icon {
        width: 44px;
        height: 44px;
    }

    .logo-icon svg {
        width: 29px;
        height: 29px;
    }

    .logo-text {
        font-size: 17px;
    }

    .logo-text small {
        font-size: 9px;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .book-btn,
    .header-phone {
        width: 100%;
    }

    .garage-hero {
        padding: 90px 0 75px;
        border-radius: 0 0 22px 22px;
        background-position: 62% center;
    }

    .garage-hero::before {
        position: absolute;
        content: "";
        inset: 0;
        background:
            linear-gradient(
                90deg,
                rgba(4, 4, 60, 0.98),
                rgba(8, 8, 79, 0.92),
                rgba(8, 8, 79, 0.68)
            );
    }

    .hero-content {
        padding-left: 0;
        text-align: center;
    }

    .hero-subtitle {
        justify-content: center;
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: clamp(43px, 13vw, 59px);
        line-height: 1.02;
        letter-spacing: -2.5px;
    }

    .hero-bottom-content {
        display: block;
        margin-top: 32px;
    }

    .garage-decoration {
        width: 220px;
        height: 120px;
        margin: 0 auto 20px;
        transform-origin: center;
    }

    .spring-part {
        left: 58px;
        top: 26px;
        transform: scale(0.88);
    }

    .hero-description {
        max-width: 590px;
        margin: auto;
    }

    .hero-description p {
        font-size: 13px;
        line-height: 1.7;
    }

    .hero-buttons {
        justify-content: center;
    }

    .mobile-call-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .social-sidebar {
        display: none;
    }

    .opener-decoration {
        display: none;
    }

}


/* =========================================
   Small Mobile
========================================= */

@media (max-width: 479.98px) {

    .garage-hero {
        padding: 75px 0 65px;
    }

    .hero-subtitle {
        letter-spacing: 0;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .garage-decoration {
        width: 190px;
    }

    .spring-part {
        left: 42px;
        transform: scale(0.76);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .discover-btn,
    .mobile-call-btn {
        width: 100%;
        justify-content: center;
    }

    .discover-btn {
        padding-left: 22px;
    }

    .arrow-circle {
        position: absolute;
        right: 6px;
    }

}


/* =========================================
   Garage Door Checkup Section
========================================= */

.garage-checkup-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #ffffff;
}

.garage-checkup-section::before {
    position: absolute;
    content: "";
    left: -130px;
    top: 220px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(217, 35, 50, 0.035);
    pointer-events: none;
}

.garage-checkup-section::after {
    position: absolute;
    content: "";
    right: -170px;
    bottom: 80px;
    width: 370px;
    height: 370px;
    border: 1px solid rgba(8, 8, 79, 0.06);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================
   Heading
========================================= */

.garage-checkup-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 58px;
}

.garage-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 18px;
    padding: 7px 13px;
    border: 1px solid rgba(8, 8, 79, 0.12);
    border-radius: 30px;
    color: var(--navy);
    background: #ffffff;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(8, 8, 79, 0.05);
}

.label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(217, 35, 50, 0.11);
}

.garage-checkup-heading h2 {
    max-width: 900px;
    margin: 0 auto;
    color: var(--navy);
    font-size: clamp(38px, 4.8vw, 68px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -2.7px;
}

.garage-checkup-heading h2 span {
    display: block;
}


/* =========================================
   Technician Image
========================================= */

.garage-technician-image {
    position: relative;
    width: 100%;
    max-width: 505px;
    height: 310px;
    margin-bottom: 70px;
    overflow: visible;
}

.garage-technician-image::before {
    position: absolute;
    content: "";
    left: -17px;
    bottom: -17px;
    width: 150px;
    height: 110px;
    border-left: 4px solid var(--primary-red);
    border-bottom: 4px solid var(--primary-red);
    border-radius: 0 0 0 35px;
    opacity: 0.8;
    z-index: 0;
}

.garage-technician-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 48px 48px 48px 12px;
    box-shadow: 0 25px 55px rgba(8, 8, 79, 0.15);
}

.image-corner-shape {
    position: absolute;
    z-index: 3;
    right: -2px;
    bottom: -2px;
    width: 118px;
    height: 72px;
    border-radius: 42px 0 0 0;
    background: #ffffff;
}

.technician-status {
    position: absolute;
    z-index: 5;
    right: -45px;
    bottom: 21px;
    min-width: 225px;
    padding: 12px 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(8, 8, 79, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 17px 40px rgba(8, 8, 79, 0.14);
    backdrop-filter: blur(10px);
}

.status-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: #ffffff;
    background: var(--primary-red);
}

.status-icon svg {
    width: 23px;
    height: 23px;
}

.status-icon path,
.status-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.technician-status > span:last-child {
    display: flex;
    flex-direction: column;
}

.technician-status small {
    margin-bottom: 2px;
    color: #7c849c;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.technician-status strong {
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}


/* =========================================
   Services List
========================================= */

.garage-services-list {
    position: relative;
    z-index: 3;
    max-width: 550px;
    border-top: 1px solid #e6e8ef;
}

.garage-service-row {
    position: relative;
    min-height: 80px;
    padding: 15px 10px 15px 15px;
    display: grid;
    grid-template-columns: 55px 1fr 34px;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    border-bottom: 1px solid #e6e8ef;
    overflow: hidden;
}

.garage-service-row::before {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(217, 35, 50, 0.08),
            rgba(217, 35, 50, 0)
        );
    transform: translateX(-102%);
    transition: transform 0.4s ease;
}

.garage-service-row:hover::before,
.garage-service-row.active::before {
    transform: translateX(0);
}

.service-number,
.service-title,
.service-arrow {
    position: relative;
    z-index: 2;
}

.service-number {
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.service-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.service-arrow {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    justify-self: end;
    border-radius: 50%;
    color: var(--navy);
    font-size: 17px;
    transition: all 0.3s ease;
}

.garage-service-row.active .service-number,
.garage-service-row.active .service-title {
    color: var(--primary-red);
}

.garage-service-row:hover {
    color: var(--primary-red);
}

.garage-service-row:hover .service-number {
    color: var(--primary-red);
}

.garage-service-row:hover .service-arrow,
.garage-service-row.active .service-arrow {
    color: #ffffff;
    background: var(--primary-red);
    transform: rotate(45deg);
}


/* =========================================
   Right Content
========================================= */

.garage-checkup-content {
    position: relative;
    z-index: 3;
    padding: 24px 0 35px;
}

.garage-checkup-content p {
    margin: 0 0 17px;
    color: #747d94;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.85;
}

.content-action-row {
    margin-top: 27px;
    padding-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid #e5e7ee;
}


/* =========================================
   Call Button
========================================= */

.garage-book-button {
    position: relative;
    min-height: 55px;
    padding: 6px 7px 6px 27px;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    border-radius: 40px;
    background: var(--primary-red);
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    box-shadow: 0 13px 28px rgba(217, 35, 50, 0.22);
}

.garage-book-button::before {
    position: absolute;
    content: "";
    inset: 0;
    background: var(--navy);
    transform: translateX(-103%);
    transition: transform 0.4s ease;
}

.garage-book-button:hover::before {
    transform: translateX(0);
}

.garage-book-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.garage-book-button > span {
    position: relative;
    z-index: 2;
}

.button-arrow {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    margin-left: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: #ffffff;
}

.button-arrow svg {
    width: 18px;
    height: 18px;
}

.button-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   Reviews
========================================= */

.garage-review-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.review-avatars {
    display: flex;
    align-items: center;
}

.review-avatars > span {
    width: 31px;
    height: 31px;
    margin-left: -8px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #e8eaf1;
}

.review-avatars > span:first-child {
    margin-left: 0;
}

.review-avatars img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-avatars .review-plus {
    color: #ffffff;
    background: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

.garage-review-box small {
    margin-top: 6px;
    color: var(--navy);
    font-size: 9px;
    font-weight: 600;
}


/* =========================================
   Diagnostics Image Card
========================================= */

.garage-diagnostics-card {
    position: relative;
    min-height: 555px;
    margin-top: 27px;
    overflow: hidden;
    border-radius: 28px;
    background: var(--navy);
    box-shadow: 0 25px 60px rgba(8, 8, 79, 0.17);
}

.garage-diagnostics-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
}

.garage-diagnostics-card:hover img {
    transform: scale(1.07);
}

.diagnostics-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 79, 0.02) 0%,
            rgba(8, 8, 79, 0.16) 38%,
            rgba(217, 35, 50, 0.88) 78%,
            rgba(163, 20, 42, 0.98) 100%
        );
}

.diagnostics-content {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 38px 42px 36px;
    color: #ffffff;
}

.diagnostics-number {
    display: block;
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 44px;
    font-weight: 500;
    line-height: 1;
}

.diagnostics-line {
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.35);
}

.diagnostics-content h3 {
    margin: 0 0 13px;
    color: #ffffff;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.25;
}

.diagnostics-content p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 11px;
    font-weight: 400;
    line-height: 1.65;
}

.diagnostics-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   Hover Animation
========================================= */

.garage-technician-image {
    animation: garageImageFloat 5s ease-in-out infinite;
}

@keyframes garageImageFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {

    .garage-checkup-section {
        padding: 95px 0;
    }

    .garage-checkup-heading h2 {
        font-size: 53px;
    }

    .garage-technician-image {
        max-width: 460px;
        height: 290px;
    }

    .technician-status {
        right: -20px;
    }

    .service-title {
        font-size: 15px;
    }

    .garage-diagnostics-card {
        min-height: 590px;
    }

}


@media (max-width: 991.98px) {

    .garage-checkup-heading {
        margin-bottom: 45px;
    }

    .garage-technician-image {
        max-width: 610px;
        height: 350px;
        margin: 0 auto 65px;
    }

    .garage-services-list {
        max-width: none;
        margin-bottom: 45px;
    }

    .garage-checkup-content {
        padding-top: 0;
    }

    .garage-diagnostics-card {
        min-height: 620px;
    }

}


@media (max-width: 767.98px) {

    .garage-checkup-section {
        padding: 75px 0;
    }

    .garage-checkup-heading h2 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .garage-checkup-heading h2 span {
        display: inline;
    }

    .garage-technician-image {
        height: 290px;
        margin-bottom: 85px;
    }

    .garage-technician-image img {
        border-radius: 30px 30px 30px 10px;
    }

    .technician-status {
        right: 15px;
        bottom: -55px;
    }

    .garage-service-row {
        min-height: 70px;
        grid-template-columns: 42px 1fr 30px;
        padding-left: 5px;
    }

    .service-title {
        font-size: 14px;
    }

    .content-action-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .garage-review-box {
        align-items: flex-start;
    }

    .garage-diagnostics-card {
        min-height: 670px;
        border-radius: 22px;
    }

    .diagnostics-content {
        padding: 30px 25px;
    }

    .diagnostics-content h3 {
        font-size: 21px;
    }

    .diagnostics-content p {
        font-size: 10.5px;
    }

}


@media (max-width: 479.98px) {

    .garage-checkup-heading h2 {
        font-size: 33px;
    }

    .garage-technician-image {
        height: 240px;
    }

    .technician-status {
        left: 12px;
        right: 12px;
        min-width: 0;
    }

    .garage-service-row {
        grid-template-columns: 35px 1fr 27px;
        gap: 7px;
    }

    .service-number {
        font-size: 11px;
    }

    .service-title {
        font-size: 13px;
    }

    .garage-book-button {
        width: 100%;
        justify-content: center;
    }

    .button-arrow {
        position: absolute;
        right: 6px;
    }

    .garage-diagnostics-card {
        min-height: 750px;
    }

    .diagnostics-number {
        font-size: 36px;
    }

}


/* =========================================
   Garage Door Team Section
========================================= */

.garage-team-section {
    position: relative;
    padding: 115px 0 105px;
    overflow: hidden;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #04043c 0%,
            #08084f 44%,
            #0a0a63 68%,
            #31083d 100%
        );
    isolation: isolate;
}

.garage-team-section::before {
    position: absolute;
    content: "";
    inset: 0;
    z-index: -5;
   
    opacity: 0.6;
}

.garage-team-section::after {
    position: absolute;
    content: "";
    inset: 0;
    z-index: -4;
    background:
        radial-gradient(
            circle at 92% 42%,
            rgba(217, 35, 50, 0.42),
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(71, 116, 239, 0.18),
            transparent 36%
        );
}


/* =========================================
   Decorative Background
========================================= */

.garage-team-glow {
    position: absolute;
    z-index: -3;
    display: block;
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}

.glow-left {
    left: -190px;
    bottom: -150px;
    width: 450px;
    height: 450px;
    background: rgba(71, 116, 239, 0.14);
}

.glow-right {
    right: -180px;
    top: 180px;
    width: 470px;
    height: 470px;
    background: rgba(217, 35, 50, 0.23);
}

.garage-team-circle {
    position: absolute;
    z-index: -2;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
}

.circle-one {
    left: -330px;
    bottom: -510px;
    width: 900px;
    height: 900px;
}

.circle-two {
    right: -280px;
    top: -350px;
    width: 750px;
    height: 750px;
}


/* =========================================
   Label
========================================= */

.garage-team-label-wrap {
    padding-top: 10px;
}

.garage-team-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.garage-team-label span {
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 0 5px rgba(217, 35, 50, 0.13);
}


/* =========================================
   Heading
========================================= */

.garage-team-heading {
    position: relative;
    z-index: 3;
    max-width: 850px;
}

.garage-team-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 5vw, 73px);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -3px;
}

.garage-team-heading h2 span {
    display: block;
}

.garage-team-heading p {
    max-width: 670px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   Main Row
========================================= */

.garage-team-main-row {
    position: relative;
    z-index: 3;
    margin-top: 75px;
}


/* =========================================
   Statistics Card
========================================= */

.garage-statistics-card {
    position: relative;
    min-height: 520px;
    padding: 42px 40px 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 29px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.015)
        );
    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.garage-statistics-card::before {
    position: absolute;
    content: "";
    left: -70px;
    top: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(71, 116, 239, 0.12);
    filter: blur(12px);
}

.garage-stat-item {
    position: relative;
    z-index: 2;
}

.garage-stat-item strong {
    display: block;
    margin-bottom: 9px;
    color: #ffffff;
    font-size: 58px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -2px;
}

.garage-stat-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.garage-stat-divider {
    width: 100%;
    height: 1px;
    margin: 38px 0;
    background: rgba(255, 255, 255, 0.23);
}


/* =========================================
   Small Image
========================================= */

.garage-small-image {
    position: relative;
    z-index: 2;
    height: 170px;
    margin-top: 43px;
    overflow: hidden;
    border-radius: 19px;
}

.garage-small-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.garage-small-image:hover img {
    transform: scale(1.08);
}

.garage-small-image::after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(4, 4, 60, 0.85)
        );
}

.small-image-badge {
    position: absolute;
    z-index: 3;
    left: 15px;
    bottom: 13px;
    padding: 7px 12px;
    color: #ffffff;
    border-radius: 20px;
    background: var(--primary-red);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}


/* =========================================
   Main Team Image
========================================= */

.garage-team-image-box {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 31px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.31);
}

.garage-team-image-box > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.9s ease;
}

.garage-team-image-box:hover > img {
    transform: scale(1.06);
}

.team-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 4, 60, 0.02) 30%,
            rgba(4, 4, 60, 0.22) 64%,
            rgba(4, 4, 60, 0.92) 100%
        );
}


/* =========================================
   Top Floating Card
========================================= */

.team-image-top-card {
    position: absolute;
    z-index: 4;
    right: 25px;
    top: 25px;
    min-width: 235px;
    padding: 13px 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    background: rgba(4, 4, 60, 0.58);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    animation: teamCardFloat 4s ease-in-out infinite;
}

.top-card-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--primary-red),
            var(--primary-red-dark)
        );
}

.top-card-icon svg {
    width: 25px;
    height: 25px;
}

.top-card-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.team-image-top-card > span:last-child {
    display: flex;
    flex-direction: column;
}

.team-image-top-card small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.69);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.team-image-top-card strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   Bottom Image Content
========================================= */

.team-image-bottom {
    position: absolute;
    z-index: 4;
    left: 35px;
    right: 35px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.team-bottom-text {
    display: flex;
    align-items: center;
    gap: 17px;
}

.team-bottom-number {
    color: #ffffff;
    font-size: 43px;
    font-weight: 500;
    line-height: 1;
}

.team-bottom-text > div {
    padding-left: 17px;
    border-left: 1px solid rgba(255, 255, 255, 0.33);
}

.team-bottom-text small {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.team-bottom-text strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.team-call-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--primary-red);
    box-shadow: 0 12px 30px rgba(217, 35, 50, 0.38);
}

.team-call-icon svg {
    width: 23px;
    height: 23px;
}

.team-call-icon path {
    fill: currentColor;
}

.team-call-icon:hover {
    color: var(--navy);
    background: #ffffff;
    transform: rotate(10deg) scale(1.08);
}


/* =========================================
   Action Button
========================================= */

.garage-team-action {
    margin-top: 31px;
}

.garage-discover-button {
    position: relative;
    min-height: 57px;
    padding: 6px 7px 6px 27px;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    border-radius: 40px;
    background: var(--primary-red);
    font-size: 14px;
    font-weight: 600;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(217, 35, 50, 0.28);
}

.garage-discover-button::before {
    position: absolute;
    content: "";
    inset: 0;
    background: #ffffff;
    transform: translateX(-103%);
    transition: transform 0.4s ease;
}

.garage-discover-button:hover::before {
    transform: translateX(0);
}

.garage-discover-button:hover {
    color: var(--navy);
    transform: translateY(-3px);
}

.garage-discover-button > span {
    position: relative;
    z-index: 2;
}

.discover-arrow {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    margin-left: 21px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: #ffffff;
}

.discover-arrow svg {
    width: 18px;
    height: 18px;
}

.discover-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   Spring Decoration
========================================= */

.garage-spring-decoration {
    position: absolute;
    z-index: 3;
    right: -45px;
    bottom: -40px;
    width: 325px;
    pointer-events: none;
    filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.38));
    animation: springDecorationFloat 4.5s ease-in-out infinite;
}

.garage-spring-decoration img {
    width: 100%;
    height: auto;
    display: block;
}


/* =========================================
   Animations
========================================= */

@keyframes teamCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }

}

@keyframes springDecorationFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-13px) rotate(2deg);
    }

}


/* =========================================
   Responsive
========================================= */

@media (max-width: 1399.98px) {

    .garage-team-heading h2 {
        font-size: 60px;
    }

    .garage-spring-decoration {
        right: -90px;
        width: 290px;
    }

}


@media (max-width: 1199.98px) {

    .garage-team-section {
        padding: 100px 0 90px;
    }

    .garage-team-heading h2 {
        font-size: 52px;
    }

    .garage-statistics-card {
        padding: 35px 28px 22px;
    }

    .garage-stat-item strong {
        font-size: 50px;
    }

    .garage-team-image-box {
        min-height: 465px;
    }

    .garage-spring-decoration {
        width: 245px;
        opacity: 0.75;
    }

}


@media (max-width: 991.98px) {

    .garage-team-label-wrap {
        margin-bottom: 25px;
    }

    .garage-team-heading h2 {
        font-size: 52px;
    }

    .garage-team-main-row {
        margin-top: 55px;
    }

    .garage-statistics-card {
        min-height: auto;
    }

    .garage-small-image {
        height: 240px;
    }

    .garage-team-image-box {
        min-height: 510px;
    }

    .garage-spring-decoration {
        display: none;
    }

}


@media (max-width: 767.98px) {

    .garage-team-section {
        padding: 78px 0 72px;
    }

    .garage-team-heading h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .garage-team-heading h2 span {
        display: inline;
    }

    .garage-team-heading p {
        font-size: 13px;
    }

    .garage-statistics-card {
        padding: 30px 24px 22px;
        border-radius: 22px;
    }

    .garage-stat-item strong {
        font-size: 45px;
    }

    .garage-stat-divider {
        margin: 28px 0;
    }

    .garage-small-image {
        height: 210px;
        margin-top: 32px;
    }

    .garage-team-image-box {
        min-height: 450px;
        border-radius: 23px;
    }

    .team-image-top-card {
        left: 18px;
        right: 18px;
        top: 18px;
        min-width: 0;
    }

    .team-image-bottom {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .team-bottom-text strong {
        font-size: 13px;
    }

    .garage-team-action {
        text-align: center;
    }

}


@media (max-width: 479.98px) {

    .garage-team-heading h2 {
        font-size: 34px;
    }

    .garage-team-main-row {
        margin-top: 42px;
    }

    .garage-team-image-box {
        min-height: 440px;
    }

    .team-image-top-card {
        padding: 11px 13px;
    }

    .top-card-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .team-image-bottom {
        align-items: flex-end;
    }

    .team-bottom-number {
        font-size: 34px;
    }

    .team-bottom-text {
        gap: 10px;
    }

    .team-bottom-text > div {
        padding-left: 10px;
    }

    .team-bottom-text small {
        font-size: 7px;
    }

    .team-bottom-text strong {
        font-size: 11px;
    }

    .team-call-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
    }

    .garage-discover-button {
        width: 100%;
        justify-content: center;
    }

    .discover-arrow {
        position: absolute;
        right: 6px;
    }

}



/* =========================================
   Garage Contact Section
========================================= */

.garage-contact-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #f8f9fd 0%,
            #ffffff 100%
        );
}

.garage-contact-section::before {
    position: absolute;
    content: "";
    left: -180px;
    bottom: -230px;
    width: 500px;
    height: 500px;
    border: 70px solid rgba(8, 8, 79, 0.025);
    border-radius: 50%;
    pointer-events: none;
}

.garage-contact-section::after {
    position: absolute;
    content: "";
    right: -130px;
    top: 90px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(217, 35, 50, 0.035);
    filter: blur(3px);
    pointer-events: none;
}

.contact-decoration {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.contact-decoration-one {
    left: 6%;
    top: 17%;
    width: 14px;
    height: 14px;
    border: 3px solid var(--primary-red);
}

.contact-decoration-two {
    right: 8%;
    bottom: 13%;
    width: 21px;
    height: 21px;
    border: 4px solid var(--blue);
}


/* =========================================
   Heading
========================================= */

.garage-contact-heading {
    position: relative;
    z-index: 3;
    margin-bottom: 55px;
}

.garage-contact-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 15px;
    color: var(--navy);
    border: 1px solid rgba(8, 8, 79, 0.12);
    border-radius: 30px;
    background: #ffffff;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(8, 8, 79, 0.05);
}

.garage-contact-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 0 5px rgba(217, 35, 50, 0.11);
}

.garage-contact-heading h2 {
    max-width: 800px;
    margin: 0 auto;
    color: var(--navy);
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -3px;
}

.garage-contact-heading h2 span {
    display: block;
    color: var(--primary-red);
}

.garage-contact-heading p {
    max-width: 650px;
    margin: 21px auto 0;
    color: #717b91;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   Wrapper
========================================= */

.garage-contact-wrapper {
    position: relative;
    z-index: 4;
    overflow: hidden;
    border: 1px solid rgba(8, 8, 79, 0.07);
    border-radius: 35px;
    background: #ffffff;
    box-shadow: 0 35px 80px rgba(8, 8, 79, 0.13);
}


/* =========================================
   Map Column
========================================= */

.garage-map-column {
    position: relative;
    height: 100%;
    min-height: 825px;
    overflow: hidden;
    background: var(--navy);
}

.garage-map-column iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(15%);
}

.garage-map-column::after {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 79, 0.02) 45%,
            rgba(8, 8, 79, 0.8) 100%
        );
    pointer-events: none;
}


/* =========================================
   Location Card
========================================= */

.map-location-card {
    position: absolute;
    z-index: 4;
    left: 30px;
    right: 30px;
    top: 30px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 19px;
    background: rgba(8, 8, 79, 0.86);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.location-card-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--primary-red),
            var(--primary-red-dark)
        );
    box-shadow: 0 10px 25px rgba(217, 35, 50, 0.32);
}

.location-card-icon svg {
    width: 26px;
    height: 26px;
}

.location-card-icon path,
.location-card-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.location-card-content {
    display: flex;
    flex-direction: column;
}

.location-card-content small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.location-card-content strong {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}


/* =========================================
   Map Bottom Information
========================================= */

.map-contact-info {
    position: absolute;
    z-index: 4;
    left: 30px;
    right: 30px;
    bottom: 30px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 21px;
    background: rgba(8, 8, 79, 0.87);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}

.map-info-item:hover {
    color: #ffffff;
}

.map-info-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--primary-red);
    animation: contactPhonePulse 2.2s infinite;
}

.map-info-icon svg {
    width: 22px;
    height: 22px;
}

.map-info-icon path {
    fill: currentColor;
}

.map-info-item > span:last-child {
    display: flex;
    flex-direction: column;
}

.map-info-item small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 9px;
}

.map-info-item strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.map-direction-button {
    min-height: 45px;
    padding: 11px 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    border-radius: 30px;
    background: #ffffff;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.map-direction-button svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.map-direction-button path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.map-direction-button:hover {
    color: #ffffff;
    background: var(--primary-red);
    transform: translateY(-3px);
}

.map-direction-button:hover svg {
    transform: translateX(4px);
}


/* =========================================
   Form Column
========================================= */

.garage-form-column {
    position: relative;
    height: 100%;
    min-height: 825px;
    padding: 55px 50px 45px;
    background: #ffffff;
}

.garage-form-column::before {
    position: absolute;
    content: "";
    right: -100px;
    top: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(217, 35, 50, 0.04);
    pointer-events: none;
}

.form-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 31px;
}

.form-heading > span {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.form-heading h3 {
    margin: 0 0 13px;
    color: var(--navy);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -1.2px;
}

.form-heading p {
    max-width: 530px;
    margin: 0;
    color: #747d92;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================
   Form
========================================= */

.garage-contact-form {
    position: relative;
    z-index: 3;
}

.garage-contact-form fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

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

.garage-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 11px;
    font-weight: 600;
}

.garage-input-box {
    position: relative;
}

.garage-input-box input,
.garage-input-box select,
.garage-input-box textarea {
    width: 100%;
    color: var(--navy);
    border: 1px solid #dfe2eb;
    outline: none;
    background: #f9faff;
    font-family: inherit;
    font-size: 12px;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.garage-input-box input,
.garage-input-box select {
    height: 54px;
    padding: 0 16px;
    border-radius: 13px;
}

.garage-input-box:has(.garage-input-icon) input {
    padding-left: 47px;
}

.garage-input-box textarea {
    min-height: 118px;
    padding: 15px 16px;
    resize: vertical;
    border-radius: 14px;
}

.garage-input-box input::placeholder,
.garage-input-box textarea::placeholder {
    color: #9ba2b3;
}

.garage-input-box input:focus,
.garage-input-box select:focus,
.garage-input-box textarea:focus {
    border-color: var(--primary-red);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(217, 35, 50, 0.08);
}

.garage-input-icon {
    position: absolute;
    z-index: 3;
    left: 16px;
    top: 50%;
    width: 20px;
    height: 20px;
    color: var(--primary-red);
    transform: translateY(-50%);
    pointer-events: none;
}

.garage-input-icon svg {
    width: 100%;
    height: 100%;
}

.garage-input-icon path,
.garage-input-icon circle,
.garage-input-icon rect {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.garage-select-box select {
    cursor: pointer;
}


/* =========================================
   Submit Button
========================================= */

.garage-submit-button {
    position: relative;
    width: 100%;
    min-height: 58px;
    margin-top: 7px;
    padding: 7px 8px 7px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 0;
    border-radius: 35px;
    background: var(--primary-red);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(217, 35, 50, 0.25);
}

.garage-submit-button::before {
    position: absolute;
    content: "";
    inset: 0;
    background: var(--navy);
    transform: translateX(-102%);
    transition: transform 0.4s ease;
}

.garage-submit-button:hover::before {
    transform: translateX(0);
}

.garage-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(8, 8, 79, 0.24);
}

.garage-submit-button > span {
    position: relative;
    z-index: 2;
}

.submit-button-icon {
    position: absolute !important;
    z-index: 3 !important;
    right: 7px;
    top: 7px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--navy);
    border-radius: 50%;
    background: #ffffff;
}

.submit-button-icon svg {
    width: 18px;
    height: 18px;
}

.submit-button-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   Form Note
========================================= */

.garage-form-note {
    position: relative;
    z-index: 3;
    margin-top: 22px;
    padding-top: 19px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-top: 1px solid #e7e9f0;
}

.form-note-icon {
    flex: 0 0 35px;
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: var(--navy);
}

.form-note-icon svg {
    width: 18px;
    height: 18px;
}

.form-note-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.garage-form-note p {
    margin: 0;
    color: #7f8799;
    font-size: 10px;
    line-height: 1.55;
}


/* =========================================
   Animation
========================================= */

@keyframes contactPhonePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(217, 35, 50, 0.45);
    }

    50% {
        box-shadow: 0 0 0 11px rgba(217, 35, 50, 0);
    }

}


/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {

    .garage-contact-section {
        padding: 100px 0;
    }

    .garage-form-column {
        padding: 48px 35px 40px;
    }

    .map-contact-info {
        align-items: flex-start;
        flex-direction: column;
    }

}


@media (max-width: 991.98px) {

    .garage-contact-heading h2 {
        font-size: 53px;
    }

    .garage-map-column {
        min-height: 580px;
    }

    .garage-form-column {
        min-height: auto;
    }

    .map-contact-info {
        align-items: center;
        flex-direction: row;
    }

}


@media (max-width: 767.98px) {

    .garage-contact-section {
        padding: 78px 0;
    }

    .garage-contact-heading {
        margin-bottom: 40px;
    }

    .garage-contact-heading h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .garage-contact-wrapper {
        border-radius: 24px;
    }

    .garage-map-column {
        min-height: 550px;
    }

    .map-location-card {
        left: 17px;
        right: 17px;
        top: 17px;
    }

    .map-contact-info {
        left: 17px;
        right: 17px;
        bottom: 17px;
        align-items: flex-start;
        flex-direction: column;
    }

    .map-direction-button {
        width: 100%;
        justify-content: center;
    }

    .garage-form-column {
        padding: 40px 24px 35px;
    }

    .form-heading h3 {
        font-size: 29px;
    }

}


@media (max-width: 479.98px) {

    .garage-contact-heading h2 {
        font-size: 34px;
    }

    .garage-map-column {
        min-height: 620px;
    }

    .map-location-card {
        align-items: flex-start;
    }

    .location-card-icon {
        flex-basis: 45px;
        width: 45px;
        height: 45px;
    }

    .location-card-content strong {
        font-size: 11px;
    }

    .garage-form-column {
        padding: 35px 18px 30px;
    }

    .form-heading h3 {
        font-size: 26px;
    }

}



/* =========================================
   Installation Showcase
========================================= */

.gd-installation-showcase {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background: #f7f8fc;
}

.gd-installation-showcase::before {
    position: absolute;
    content: "";
    left: -170px;
    top: 200px;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(217, 35, 50, 0.045);
}

.gd-installation-showcase::after {
    position: absolute;
    content: "";
    right: -200px;
    bottom: -270px;
    width: 600px;
    height: 600px;
    border: 70px solid rgba(8, 8, 79, 0.025);
    border-radius: 50%;
}


/* =========================================
   Main Image
========================================= */

.gd-installation-image {
    position: relative;
    z-index: 2;
    min-height: 630px;
}

.gd-installation-image > img {
    width: 100%;
    height: 630px;
    display: block;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 30px 65px rgba(8, 8, 79, 0.16);
}

.gd-installation-image::before {
    position: absolute;
    content: "";
    left: -17px;
    top: 45px;
    width: 80px;
    height: 170px;
    border-left: 4px solid var(--primary-red);
    border-top: 4px solid var(--primary-red);
    border-radius: 30px 0 0 0;
}

.gd-installation-badge {
    position: absolute;
    left: -35px;
    bottom: 38px;
    min-width: 290px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(8, 8, 79, 0.08);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(8, 8, 79, 0.16);
    backdrop-filter: blur(12px);
}

.gd-badge-icon {
    flex: 0 0 51px;
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 14px;
    background: var(--primary-red);
}

.gd-badge-icon svg {
    width: 27px;
    height: 27px;
}

.gd-badge-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-installation-badge > span:last-child {
    display: flex;
    flex-direction: column;
}

.gd-installation-badge small {
    margin-bottom: 3px;
    color: #7e8699;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.gd-installation-badge strong {
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.gd-image-number {
    position: absolute;
    right: -15px;
    top: 35px;
    width: 112px;
    height: 112px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 24px;
    color: #ffffff;
    background: var(--navy);
    box-shadow: 0 18px 40px rgba(8, 8, 79, 0.25);
}

.gd-image-number span {
    font-size: 39px;
    font-weight: 600;
    line-height: 1;
}

.gd-image-number small {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 8px;
    line-height: 1.35;
    text-transform: uppercase;
}


/* =========================================
   Main Content
========================================= */

.gd-installation-content {
    position: relative;
    z-index: 3;
    padding-left: 25px;
}

.gd-section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 8px 15px;
    color: var(--navy);
    border: 1px solid rgba(8, 8, 79, 0.12);
    border-radius: 30px;
    background: #ffffff;
    font-size: 11px;
    font-weight: 600;
}

.gd-section-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 0 5px rgba(217, 35, 50, 0.11);
}

.gd-installation-content h2 {
    margin: 0 0 27px;
    color: var(--navy);
    font-size: clamp(42px, 4.7vw, 67px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -2.8px;
}

.gd-installation-content h2 span {
    display: block;
    color: var(--primary-red);
}

.gd-installation-content p {
    margin: 0 0 17px;
    color: #717a90;
    font-size: 13px;
    line-height: 1.85;
}

.gd-installation-actions {
    margin-top: 29px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 23px;
}


/* =========================================
   Buttons
========================================= */

.gd-primary-btn {
    position: relative;
    min-height: 56px;
    padding: 6px 7px 6px 26px;
    display: inline-flex;
    align-items: center;
    color: #ffffff;
    border-radius: 40px;
    background: var(--primary-red);
    font-size: 13px;
    font-weight: 600;
    overflow: hidden;
    box-shadow: 0 13px 30px rgba(217, 35, 50, 0.23);
}

.gd-primary-btn::before {
    position: absolute;
    content: "";
    inset: 0;
    background: var(--navy);
    transform: translateX(-103%);
    transition: transform 0.4s ease;
}

.gd-primary-btn:hover::before {
    transform: translateX(0);
}

.gd-primary-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.gd-primary-btn > span {
    position: relative;
    z-index: 2;
}

.gd-btn-arrow {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: 20px;
    display: grid;
    place-items: center;
    color: var(--navy);
    border-radius: 50%;
    background: #ffffff;
}

.gd-btn-arrow svg {
    width: 18px;
    height: 18px;
}

.gd-btn-arrow path,
.gd-text-link path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}

.gd-text-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.gd-text-link:hover {
    color: var(--primary-red);
}

.gd-text-link:hover svg {
    transform: translateX(5px);
}


/* =========================================
   Services Heading
========================================= */

.gd-overhead-heading-row {
    position: relative;
    z-index: 3;
    margin-top: 110px;
    margin-bottom: 42px;
}

.gd-overhead-heading > span {
    display: block;
    margin-bottom: 11px;
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
}

.gd-overhead-heading h3 {
    max-width: 760px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(38px, 4.5vw, 61px);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -2.4px;
}

.gd-overhead-call {
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(8, 8, 79, 0.08);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(8, 8, 79, 0.08);
}

.gd-call-circle {
    flex: 0 0 49px;
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: var(--primary-red);
}

.gd-call-circle svg {
    width: 22px;
    height: 22px;
}

.gd-call-circle path {
    fill: currentColor;
}

.gd-overhead-call > span:last-child {
    display: flex;
    flex-direction: column;
}

.gd-overhead-call small {
    color: #858da0;
    font-size: 9px;
}

.gd-overhead-call strong {
    color: var(--navy);
    font-size: 15px;
}


/* =========================================
   Service Rows
========================================= */

.gd-overhead-services {
    position: relative;
    z-index: 3;
    overflow: hidden;
    border: 1px solid #e2e5ed;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(8, 8, 79, 0.09);
}

.gd-overhead-item {
    position: relative;
    min-height: 155px;
    padding: 27px 30px;
    display: grid;
    grid-template-columns: 55px 66px 1fr 48px;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid #e6e8ef;
    overflow: hidden;
    transition: background 0.35s ease;
}

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

.gd-overhead-item::before {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(217, 35, 50, 0.09),
            rgba(217, 35, 50, 0)
        );
    transform: translateX(-102%);
    transition: transform 0.45s ease;
}

.gd-overhead-item:hover::before {
    transform: translateX(0);
}

.gd-service-number,
.gd-service-icon,
.gd-service-content,
.gd-service-arrow {
    position: relative;
    z-index: 2;
}

.gd-service-number {
    color: #a0a7b8;
    font-size: 13px;
    font-weight: 700;
}

.gd-service-icon {
    width: 61px;
    height: 61px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 17px;
    background: var(--navy);
    transition: all 0.35s ease;
}

.gd-service-icon svg {
    width: 29px;
    height: 29px;
}

.gd-service-icon path,
.gd-service-icon rect,
.gd-service-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-overhead-item:hover .gd-service-icon {
    background: var(--primary-red);
    transform: rotate(-6deg) scale(1.06);
}

.gd-service-content h4 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 600;
}

.gd-service-content p {
    max-width: 900px;
    margin: 0;
    color: #747d91;
    font-size: 12px;
    line-height: 1.75;
}

.gd-service-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    justify-self: end;
    color: var(--navy);
    border: 1px solid #dadee8;
    border-radius: 50%;
    background: #ffffff;
}

.gd-service-arrow svg {
    width: 18px;
    height: 18px;
}

.gd-service-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-overhead-item:hover .gd-service-arrow {
    color: #ffffff;
    border-color: var(--primary-red);
    background: var(--primary-red);
    transform: rotate(-35deg);
}


/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {

    .gd-installation-showcase {
        padding: 100px 0;
    }

    .gd-installation-image,
    .gd-installation-image > img {
        min-height: 570px;
        height: 570px;
    }

    .gd-installation-content h2 {
        font-size: 51px;
    }

}


@media (max-width: 991.98px) {

    .gd-installation-image,
    .gd-installation-image > img {
        min-height: 590px;
        height: 590px;
    }

    .gd-installation-image {
        max-width: 650px;
        margin: auto;
    }

    .gd-installation-content {
        padding-left: 0;
        margin-top: 25px;
    }

    .gd-overhead-heading-row {
        margin-top: 80px;
    }

    .gd-overhead-call {
        max-width: 320px;
        margin-top: 25px;
    }

    .gd-overhead-item {
        grid-template-columns: 45px 60px 1fr 45px;
    }

}


@media (max-width: 767.98px) {

    .gd-installation-showcase {
        padding: 78px 0;
    }

    .gd-installation-image,
    .gd-installation-image > img {
        min-height: 450px;
        height: 450px;
    }

    .gd-installation-badge {
        left: 15px;
        right: 15px;
        bottom: 18px;
        min-width: 0;
    }

    .gd-image-number {
        right: 15px;
        top: 15px;
    }

    .gd-installation-content h2 {
        font-size: 40px;
        letter-spacing: -1.6px;
    }

    .gd-installation-content h2 span {
        display: inline;
    }

    .gd-overhead-heading h3 {
        font-size: 39px;
        letter-spacing: -1.5px;
    }

    .gd-overhead-item {
        min-height: auto;
        padding: 25px 20px;
        grid-template-columns: 52px 1fr 40px;
        gap: 15px;
    }

    .gd-service-number {
        display: none;
    }

    .gd-service-icon {
        width: 52px;
        height: 52px;
    }

    .gd-service-content h4 {
        font-size: 16px;
    }

    .gd-service-content p {
        font-size: 11px;
    }

}


@media (max-width: 479.98px) {

    .gd-installation-image,
    .gd-installation-image > img {
        min-height: 380px;
        height: 380px;
    }

    .gd-image-number {
        display: none;
    }

    .gd-installation-content h2 {
        font-size: 34px;
    }

    .gd-installation-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .gd-primary-btn {
        width: 100%;
        justify-content: center;
    }

    .gd-btn-arrow {
        position: absolute;
        right: 6px;
    }

    .gd-overhead-heading h3 {
        font-size: 32px;
    }

    .gd-overhead-item {
        grid-template-columns: 1fr 38px;
    }

    .gd-service-icon {
        margin-bottom: 5px;
    }

    .gd-service-content {
        grid-column: 1;
    }

    .gd-service-arrow {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

}


/* =========================================
   Garage Door Reviews Section
========================================= */

.gd-reviews-section {
    position: relative;
    margin: 30px 20px;
    padding: 105px 0 85px;
    overflow: hidden;
    color: #ffffff;
    border-radius: 35px;
    background:
        linear-gradient(
            135deg,
            rgba(4, 4, 60, 0.96),
            rgba(8, 8, 79, 0.93),
            rgba(35, 8, 63, 0.9)
        ),
        url("../images/garage-door-review-background.webp")
        center / cover no-repeat;
    isolation: isolate;
}

.gd-reviews-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(
            circle at 32% 47%,
            rgba(217, 35, 50, 0.28),
            transparent 27%
        ),
        radial-gradient(
            circle at 88% 73%,
            rgba(71, 116, 239, 0.15),
            transparent 30%
        );
}

.gd-reviews-section::before {
    position: absolute;
    content: "";
    left: -260px;
    bottom: -510px;
    z-index: -1;
    width: 850px;
    height: 850px;
    border: 1px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
}

.gd-reviews-section::after {
    position: absolute;
    content: "";
    right: -210px;
    top: -320px;
    z-index: -1;
    width: 650px;
    height: 650px;
    border: 60px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}


/* =========================================
   Heading
========================================= */

.gd-reviews-heading {
    position: relative;
    z-index: 3;
    margin-bottom: 52px;
}

.gd-reviews-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 15px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.gd-reviews-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 0 5px rgba(217, 35, 50, 0.14);
}

.gd-reviews-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(43px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -2.8px;
}

.gd-reviews-heading h2 span {
    display: block;
}


/* =========================================
   Customer Image
========================================= */

.gd-review-image {
    position: relative;
    height: 390px;
    overflow: hidden;
    border-radius: 27px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.27);
}

.gd-review-image::after {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(4, 4, 60, 0.76)
        );
}

.gd-review-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        opacity 0.35s ease,
        transform 0.7s ease;
}

.gd-review-image:hover img {
    transform: scale(1.07);
}

.gd-review-image-badge {
    position: absolute;
    z-index: 3;
    left: 18px;
    right: 18px;
    bottom: 17px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 15px;
    background: rgba(4, 4, 60, 0.66);
    backdrop-filter: blur(12px);
}

.gd-image-check {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: var(--primary-red);
}

.gd-image-check svg {
    width: 20px;
    height: 20px;
}

.gd-image-check path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-review-image-badge > span:last-child {
    display: flex;
    flex-direction: column;
}

.gd-review-image-badge small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.gd-review-image-badge strong {
    color: #ffffff;
    font-size: 12px;
}


/* =========================================
   Review Card
========================================= */

.gd-review-card {
    position: relative;
    height: 390px;
    padding: 40px 45px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 27px;
    background:
        linear-gradient(
            145deg,
            rgba(8, 8, 79, 0.96),
            rgba(4, 4, 60, 0.91)
        );
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.27),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.gd-review-card::before {
    position: absolute;
    content: "";
    right: -100px;
    top: -100px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(217, 35, 50, 0.09);
}

.gd-review-card-top,
.gd-review-card-bottom,
.gd-review-card blockquote {
    position: relative;
    z-index: 2;
}

.gd-review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.gd-review-stars {
    display: flex;
    gap: 3px;
}

.gd-review-stars span {
    color: var(--primary-red);
    font-size: 22px;
}

.gd-quote-icon {
    color: #ffffff;
    font-size: 62px;
    font-family: Georgia, serif;
    font-weight: 700;
    line-height: 0.7;
}

.gd-review-card blockquote {
    margin: 17px 0 25px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.55;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.gd-review-card-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

.gd-review-person {
    display: flex;
    flex-direction: column;
}

.gd-review-person strong {
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.gd-review-person small {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}


/* =========================================
   Controls
========================================= */

.gd-review-controls {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 30px;
}

.gd-review-arrow {
    width: 54px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.gd-review-arrow + .gd-review-arrow {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.gd-review-arrow svg {
    width: 21px;
    height: 21px;
}

.gd-review-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-review-arrow:hover {
    color: #ffffff;
    background: var(--primary-red);
}


/* =========================================
   Ratings Bar
========================================= */

.gd-ratings-wrapper {
    position: relative;
    z-index: 3;
    margin-top: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(4, 4, 60, 0.74);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(14px);
}

.gd-rating-summary {
    height: 100%;
    min-height: 130px;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #4774ef,
            #365fd4
        );
}

.gd-rating-summary span {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
}

.gd-rating-summary strong {
    max-width: 310px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.25;
}

.gd-rating-platform {
    position: relative;
    height: 100%;
    min-height: 130px;
    padding: 25px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.gd-rating-platform::after {
    position: absolute;
    content: "";
    right: 0;
    top: 30px;
    bottom: 30px;
    width: 1px;
    background: rgba(255, 255, 255, 0.13);
}

.gd-rating-platform:last-child::after {
    display: none;
}

.gd-platform-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    font-size: 22px;
    font-weight: 700;
}

.gd-platform-icon svg {
    width: 25px;
    height: 25px;
}

.gd-platform-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-google-icon {
    color: #ffffff;
    background:
        conic-gradient(
            #4285f4,
            #34a853,
            #fbbc05,
            #ea4335,
            #4285f4
        );
}

.gd-platform-content {
    display: flex;
    flex-direction: column;
}

.gd-platform-content strong {
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.gd-platform-content small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 10px;
}


/* =========================================
   Decorative Icon
========================================= */

.gd-review-decoration {
    position: absolute;
    z-index: 3;
    right: 55px;
    top: 45px;
    width: 125px;
    opacity: 0.92;
    transform: rotate(-12deg);
    animation: gdReviewFloat 4s ease-in-out infinite;
}

.gd-review-decoration svg {
    width: 100%;
    height: auto;
}

.gd-review-decoration path,
.gd-review-decoration circle {
    fill: none;
    stroke: #f8c515;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   Review Change Animation
========================================= */

.gd-review-card.is-changing blockquote,
.gd-review-card.is-changing .gd-review-person {
    opacity: 0;
    transform: translateY(12px);
}

@keyframes gdReviewFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-12deg);
    }

    50% {
        transform: translateY(-12px) rotate(-7deg);
    }

}


/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {

    .gd-reviews-section {
        padding: 95px 0 80px;
    }

    .gd-reviews-heading h2 {
        font-size: 55px;
    }

    .gd-review-card {
        padding: 35px;
    }

    .gd-review-card blockquote {
        font-size: 17px;
    }

}


@media (max-width: 991.98px) {

    .gd-reviews-section {
        margin: 20px 12px;
    }

    .gd-review-image,
    .gd-review-card {
        height: 440px;
    }

    .gd-rating-platform::after {
        display: none;
    }

    .gd-rating-platform {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .gd-review-decoration {
        width: 90px;
        right: 20px;
    }

}


@media (max-width: 767.98px) {

    .gd-reviews-section {
        margin: 10px;
        padding: 75px 0 65px;
        border-radius: 25px;
    }

    .gd-reviews-heading h2 {
        font-size: 40px;
        letter-spacing: -1.7px;
    }

    .gd-reviews-heading h2 span {
        display: inline;
    }

    .gd-review-image {
        height: 390px;
    }

    .gd-review-card {
        height: auto;
        min-height: 420px;
        padding: 30px 24px;
    }

    .gd-review-card blockquote {
        font-size: 16px;
    }

    .gd-review-card-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .gd-rating-summary {
        min-height: 120px;
    }

    .gd-rating-platform {
        min-height: 105px;
        justify-content: flex-start;
    }

    .gd-review-decoration {
        display: none;
    }

}


@media (max-width: 479.98px) {

    .gd-reviews-heading h2 {
        font-size: 34px;
    }

    .gd-review-image {
        height: 340px;
    }

    .gd-review-card {
        min-height: 450px;
    }

    .gd-review-card blockquote {
        font-size: 15px;
    }

    .gd-review-card-top {
        align-items: center;
    }

    .gd-quote-icon {
        font-size: 48px;
    }

    .gd-rating-summary strong {
        font-size: 21px;
    }

}


/* =========================================
   Before / After and Coupon Section
========================================= */

.gd-before-offer-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f7fc 100%
        );
}

.gd-before-offer-section::before {
    position: absolute;
    content: "";
    left: -190px;
    top: 180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(217, 35, 50, 0.04);
    pointer-events: none;
}

.gd-before-offer-section::after {
    position: absolute;
    content: "";
    right: -220px;
    bottom: -300px;
    width: 650px;
    height: 650px;
    border: 70px solid rgba(8, 8, 79, 0.025);
    border-radius: 50%;
    pointer-events: none;
}

.gd-offer-shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}

.gd-offer-shape-one {
    left: 7%;
    top: 16%;
    width: 14px;
    height: 14px;
    border: 3px solid var(--primary-red);
}

.gd-offer-shape-two {
    right: 8%;
    bottom: 12%;
    width: 20px;
    height: 20px;
    border: 4px solid var(--blue);
}


/* =========================================
   Heading
========================================= */

.gd-before-offer-heading {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto 52px;
}

.gd-before-offer-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 15px;
    color: var(--navy);
    border: 1px solid rgba(8, 8, 79, 0.12);
    border-radius: 30px;
    background: #ffffff;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(8, 8, 79, 0.05);
}

.gd-before-offer-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 0 5px rgba(217, 35, 50, 0.12);
}

.gd-before-offer-heading h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -2.8px;
}

.gd-before-offer-heading h2 span {
    display: block;
    color: var(--primary-red);
}

.gd-before-offer-heading p {
    max-width: 680px;
    margin: 20px auto 0;
    color: #717a90;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   Comparison Card
========================================= */

.gd-comparison-card {
    position: relative;
    z-index: 3;
    height: 100%;
    min-height: 670px;
    overflow: hidden;
    border: 1px solid rgba(8, 8, 79, 0.08);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(8, 8, 79, 0.13);
}

.gd-comparison-slider {
    position: relative;
    width: 100%;
    height: 570px;
    overflow: hidden;
    background: var(--navy);
    cursor: ew-resize;
    user-select: none;
    touch-action: pan-y;
}

.gd-comparison-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.gd-before-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 50%;
    overflow: hidden;
}

.gd-before-image {
    max-width: none;
    width: 100vw;
}

.gd-comparison-slider::after {
    position: absolute;
    content: "";
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            180deg,
            rgba(8, 8, 79, 0.03),
            rgba(8, 8, 79, 0.12)
        );
    pointer-events: none;
}


/* =========================================
   Before / After Labels
========================================= */

.gd-comparison-label {
    position: absolute;
    z-index: 8;
    top: 24px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.17);
    backdrop-filter: blur(10px);
}

.gd-before-label {
    left: 24px;
    background: rgba(8, 8, 79, 0.82);
}

.gd-after-label {
    right: 24px;
    background: rgba(217, 35, 50, 0.88);
}


/* =========================================
   Comparison Range
========================================= */

.gd-comparison-range {
    position: absolute;
    z-index: 10;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
}


/* =========================================
   Divider
========================================= */

.gd-comparison-divider {
    position: absolute;
    z-index: 7;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #ffffff;
    transform: translateX(-50%);
    pointer-events: none;
    box-shadow: 0 0 15px rgba(8, 8, 79, 0.3);
}

.gd-divider-handle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 5px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    background: var(--primary-red);
    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.26),
        0 0 0 8px rgba(217, 35, 50, 0.16);
    transform: translate(-50%, -50%);
    animation: gdComparisonPulse 2.3s infinite;
}

.gd-divider-handle svg {
    width: 31px;
    height: 31px;
}

.gd-divider-handle path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   Comparison Footer
========================================= */

.gd-comparison-footer {
    min-height: 100px;
    padding: 20px 27px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
}

.gd-comparison-footer-icon {
    flex: 0 0 51px;
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 15px;
    background: var(--navy);
}

.gd-comparison-footer-icon svg {
    width: 26px;
    height: 26px;
}

.gd-comparison-footer-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-comparison-footer-text {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.gd-comparison-footer-text small {
    margin-bottom: 3px;
    color: var(--primary-red);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.gd-comparison-footer-text strong {
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
}

.gd-comparison-phone {
    padding: 11px 16px;
    color: #ffffff;
    border-radius: 30px;
    background: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.gd-comparison-phone:hover {
    color: #ffffff;
    background: var(--navy);
    transform: translateY(-3px);
}


/* =========================================
   Coupon
========================================= */

.gd-coupon-card {
    position: relative;
    z-index: 3;
    height: 100%;
    min-height: 670px;
    padding: 34px 32px 28px;
    overflow: hidden;
    color: #ffffff;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(217, 35, 50, 0.42),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            var(--navy-dark),
            var(--navy) 58%,
            #23104d
        );
    box-shadow:
        0 30px 70px rgba(8, 8, 79, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.gd-coupon-card:hover {
    transform: translateY(-9px);
    box-shadow:
        0 38px 80px rgba(8, 8, 79, 0.32),
        0 0 45px rgba(217, 35, 50, 0.18);
}

.gd-coupon-card::before,
.gd-coupon-card::after {
    position: absolute;
    content: "";
    top: 49%;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f6f7fb;
    transform: translateY(-50%);
}

.gd-coupon-card::before {
    left: -22px;
}

.gd-coupon-card::after {
    right: -22px;
}

.gd-coupon-circle {
    position: absolute;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.gd-coupon-circle.circle-top {
    right: -120px;
    top: -110px;
    width: 280px;
    height: 280px;
}

.gd-coupon-circle.circle-bottom {
    left: -110px;
    bottom: -140px;
    width: 300px;
    height: 300px;
}


/* =========================================
   Coupon Top
========================================= */

.gd-coupon-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gd-coupon-tag {
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 30px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.gd-coupon-scissors {
    color: var(--primary-red);
    font-size: 24px;
    transform: rotate(-15deg);
}


/* =========================================
   Coupon Saving
========================================= */

.gd-coupon-saving {
    position: relative;
    z-index: 2;
    margin-top: 35px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.gd-dollar-sign {
    margin-top: 12px;
    color: var(--primary-red);
    font-size: 37px;
    font-weight: 700;
}

.gd-coupon-saving strong {
    color: #ffffff;
    font-size: 126px;
    font-weight: 700;
    line-height: 0.86;
    letter-spacing: -9px;
}

.gd-off-text {
    margin: 13px 0 0 11px;
    padding: 8px 10px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--primary-red);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    transform: rotate(-7deg);
}


/* =========================================
   Coupon Text
========================================= */

.gd-coupon-card h3 {
    position: relative;
    z-index: 2;
    margin: 27px 0 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
}

.gd-coupon-card h3 span {
    display: block;
    color: var(--primary-red);
}

.gd-coupon-divider {
    position: relative;
    z-index: 2;
    margin: 25px 0;
    overflow: hidden;
    border-top: 2px dashed rgba(255, 255, 255, 0.25);
}

.gd-coupon-divider span {
    position: absolute;
    left: 50%;
    top: -5px;
    width: 42px;
    height: 8px;
    background: var(--navy);
    transform: translateX(-50%);
}


/* =========================================
   Terms
========================================= */

.gd-coupon-terms {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gd-coupon-terms li {
    position: relative;
    margin-bottom: 9px;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    line-height: 1.5;
}

.gd-coupon-terms li::before {
    position: absolute;
    content: "✓";
    left: 0;
    top: 0;
    color: var(--primary-red);
    font-weight: 800;
}


/* =========================================
   Company
========================================= */

.gd-coupon-company {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.gd-coupon-company small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gd-coupon-company strong {
    color: #ffffff;
    font-size: 14px;
}


/* =========================================
   Coupon Button
========================================= */

.gd-coupon-button {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 55px;
    margin-top: 22px;
    padding: 6px 7px 6px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 35px;
    background: var(--primary-red);
    font-size: 13px;
    font-weight: 700;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(217, 35, 50, 0.3);
}

.gd-coupon-button::before {
    position: absolute;
    content: "";
    inset: 0;
    background: var(--blue);
    transform: translateX(-102%);
    transition: transform 0.4s ease;
}

.gd-coupon-button:hover::before {
    transform: translateX(0);
}

.gd-coupon-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.gd-coupon-button > span {
    position: relative;
    z-index: 2;
}

.gd-coupon-button-icon {
    position: absolute !important;
    right: 6px;
    top: 6px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: #ffffff;
}

.gd-coupon-button-icon svg {
    width: 21px;
    height: 21px;
}

.gd-coupon-button-icon path {
    fill: currentColor;
}

.gd-coupon-number {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 14px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
}

.gd-coupon-number:hover {
    color: var(--primary-red);
}

.gd-coupon-code {
    position: relative;
    z-index: 2;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.gd-coupon-code span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.gd-coupon-code strong {
    padding: 5px 9px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 1px;
}


/* =========================================
   Animation
========================================= */

@keyframes gdComparisonPulse {

    0%,
    100% {
        box-shadow:
            0 14px 35px rgba(0, 0, 0, 0.26),
            0 0 0 0 rgba(217, 35, 50, 0.3);
    }

    50% {
        box-shadow:
            0 14px 35px rgba(0, 0, 0, 0.26),
            0 0 0 13px rgba(217, 35, 50, 0);
    }

}


/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {

    .gd-before-offer-section {
        padding: 95px 0;
    }

    .gd-comparison-card,
    .gd-coupon-card {
        min-height: 650px;
    }

    .gd-comparison-slider {
        height: 550px;
    }

    .gd-coupon-card {
        padding-left: 25px;
        padding-right: 25px;
    }

    .gd-coupon-saving strong {
        font-size: 106px;
    }

}


@media (max-width: 991.98px) {

    .gd-before-offer-heading h2 {
        font-size: 53px;
    }

    .gd-comparison-card,
    .gd-coupon-card {
        min-height: auto;
    }

    .gd-coupon-card {
        padding: 45px 45px 35px;
    }

    .gd-coupon-saving strong {
        font-size: 130px;
    }

}


@media (max-width: 767.98px) {

    .gd-before-offer-section {
        padding: 75px 0;
    }

    .gd-before-offer-heading {
        margin-bottom: 40px;
    }

    .gd-before-offer-heading h2 {
        font-size: 40px;
        letter-spacing: -1.7px;
    }

    .gd-before-offer-heading h2 span {
        display: inline;
    }

    .gd-comparison-card {
        border-radius: 23px;
    }

    .gd-comparison-slider {
        height: 480px;
    }

    .gd-comparison-footer {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .gd-comparison-phone {
        margin-left: 66px;
    }

    .gd-coupon-card {
        padding: 38px 28px 30px;
        border-radius: 23px;
    }

}


@media (max-width: 479.98px) {

    .gd-before-offer-heading h2 {
        font-size: 34px;
    }

    .gd-comparison-slider {
        height: 390px;
    }

    .gd-comparison-label {
        top: 15px;
        padding: 7px 11px;
        font-size: 9px;
    }

    .gd-before-label {
        left: 15px;
    }

    .gd-after-label {
        right: 15px;
    }

    .gd-divider-handle {
        width: 54px;
        height: 54px;
    }

    .gd-comparison-footer-text strong {
        font-size: 13px;
    }

    .gd-comparison-phone {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }

    .gd-coupon-saving strong {
        font-size: 108px;
    }

    .gd-coupon-card h3 {
        font-size: 26px;
    }

}





/* =========================================
   Location Services Section
========================================= */

.gd-location-services-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f7fc 100%
        );
    isolation: isolate;
}

.gd-location-services-section::before {
    position: absolute;
    content: "";
    left: -230px;
    bottom: -350px;
    z-index: -3;
    width: 700px;
    height: 700px;
    border: 75px solid rgba(8, 8, 79, 0.025);
    border-radius: 50%;
}

.gd-location-services-section::after {
    position: absolute;
    content: "";
    right: -180px;
    top: 120px;
    z-index: -3;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(217, 35, 50, 0.035);
}

.gd-location-glow {
    position: absolute;
    z-index: -2;
    display: block;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
}

.gd-location-glow-one {
    left: 8%;
    top: 16%;
    width: 180px;
    height: 180px;
    background: rgba(71, 116, 239, 0.08);
}

.gd-location-glow-two {
    right: 8%;
    bottom: 15%;
    width: 210px;
    height: 210px;
    background: rgba(217, 35, 50, 0.07);
}


/* =========================================
   Heading
========================================= */

.gd-location-heading {
    position: relative;
    z-index: 3;
}

.gd-location-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    padding: 8px 15px;
    color: var(--navy);
    border: 1px solid rgba(8, 8, 79, 0.12);
    border-radius: 30px;
    background: #ffffff;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(8, 8, 79, 0.05);
}

.gd-location-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 0 5px rgba(217, 35, 50, 0.11);
}

.gd-location-heading h2 {
    max-width: 850px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(43px, 5vw, 69px);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -2.9px;
}

.gd-location-heading h2 span {
    display: block;
    color: var(--primary-red);
}

.gd-location-heading p {
    max-width: 700px;
    margin: 20px 0 0;
    color: #727b90;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   Heading Contact
========================================= */

.gd-location-contact {
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(8, 8, 79, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 17px 40px rgba(8, 8, 79, 0.09);
}

.gd-location-phone-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 10px 25px rgba(217, 35, 50, 0.3);
    animation: gdLocationPhonePulse 2.2s infinite;
}

.gd-location-phone-icon svg {
    width: 23px;
    height: 23px;
}

.gd-location-phone-icon path {
    fill: currentColor;
}

.gd-location-contact-content {
    display: flex;
    flex-direction: column;
}

.gd-location-contact-content small {
    margin-bottom: 3px;
    color: #8990a1;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.gd-location-contact-content a {
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
}

.gd-location-contact-content a:hover {
    color: var(--primary-red);
}


/* =========================================
   Main Row
========================================= */

.gd-location-main-row {
    position: relative;
    z-index: 3;
    margin-top: 55px;
}


/* =========================================
   Areas Card
========================================= */

.gd-area-card {
    height: 100%;
    padding: 37px;
    border: 1px solid rgba(8, 8, 79, 0.07);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 28px 65px rgba(8, 8, 79, 0.1);
}

.gd-area-card-header {
    padding-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #e6e8ef;
}

.gd-area-card-header > div {
    display: flex;
    flex-direction: column;
}

.gd-area-card-header > div > span {
    margin-bottom: 7px;
    color: var(--primary-red);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.gd-area-card-header h3 {
    margin: 0;
    color: var(--navy);
    font-size: 29px;
    font-weight: 600;
    letter-spacing: -1px;
}

.gd-area-header-icon {
    flex: 0 0 59px;
    width: 59px;
    height: 59px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 18px;
    background: var(--navy);
}

.gd-area-header-icon svg {
    width: 28px;
    height: 28px;
}

.gd-area-header-icon path,
.gd-area-header-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   Area Grid
========================================= */

.gd-area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.gd-area-item {
    position: relative;
    min-height: 83px;
    padding: 16px 17px;
    display: grid;
    grid-template-columns: 35px 1fr 30px;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    border-bottom: 1px solid #e7e9ef;
    overflow: hidden;
}

.gd-area-item:nth-child(odd) {
    border-right: 1px solid #e7e9ef;
}

.gd-area-item::before {
    position: absolute;
    content: "";
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(217, 35, 50, 0.1),
            rgba(217, 35, 50, 0)
        );
    transform: translateX(-102%);
    transition: transform 0.4s ease;
}

.gd-area-item:hover::before {
    transform: translateX(0);
}

.gd-area-number,
.gd-area-name,
.gd-area-arrow {
    position: relative;
    z-index: 2;
}

.gd-area-number {
    color: #9ca3b3;
    font-size: 10px;
    font-weight: 700;
}

.gd-area-name {
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
}

.gd-area-arrow {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    justify-self: end;
    color: var(--navy);
    border-radius: 50%;
    font-size: 13px;
    transition: all 0.3s ease;
}

.gd-area-item:hover .gd-area-name,
.gd-area-item:hover .gd-area-number {
    color: var(--primary-red);
}

.gd-area-item:hover .gd-area-arrow {
    color: #ffffff;
    background: var(--primary-red);
    transform: rotate(45deg);
}


/* =========================================
   ZIP Card
========================================= */

.gd-zip-card {
    position: relative;
    height: 100%;
    min-height: 620px;
    padding: 38px 34px 30px;
    overflow: hidden;
    color: #ffffff;
    border-radius: 28px;
    background:
        radial-gradient(
            circle at 93% 5%,
            rgba(217, 35, 50, 0.42),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            var(--navy-dark),
            var(--navy) 58%,
            #26104e
        );
    box-shadow: 0 30px 70px rgba(8, 8, 79, 0.24);
}

.gd-zip-circle {
    position: absolute;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.gd-zip-circle-one {
    right: -120px;
    top: -100px;
    width: 280px;
    height: 280px;
}

.gd-zip-circle-two {
    left: -120px;
    bottom: -160px;
    width: 340px;
    height: 340px;
}


/* =========================================
   ZIP Top
========================================= */

.gd-zip-card-top {
    position: relative;
    z-index: 2;
    padding-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.gd-zip-icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: var(--navy);
    border-radius: 17px;
    background: #ffffff;
}

.gd-zip-icon svg {
    width: 29px;
    height: 29px;
}

.gd-zip-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-zip-card-top > span:last-child {
    display: flex;
    flex-direction: column;
}

.gd-zip-card-top small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.gd-zip-card-top strong {
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
}


/* =========================================
   ZIP Items
========================================= */

.gd-zip-list {
    position: relative;
    z-index: 2;
    margin-top: 18px;
}

.gd-zip-item {
    min-height: 105px;
    padding: 18px 0;
    display: grid;
    grid-template-columns: 92px 1fr 34px;
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.gd-zip-code {
    color: var(--primary-red);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -1px;
}

.gd-zip-details {
    display: flex;
    flex-direction: column;
}

.gd-zip-details strong {
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
}

.gd-zip-details small {
    color: rgba(255, 255, 255, 0.53);
    font-size: 9px;
}

.gd-zip-check {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    font-size: 12px;
}


/* =========================================
   Service Note
========================================= */

.gd-zip-service-note {
    position: relative;
    z-index: 2;
    margin-top: 23px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.045);
}

.gd-note-icon {
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 12px;
    background: var(--primary-red);
}

.gd-note-icon svg {
    width: 20px;
    height: 20px;
}

.gd-note-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-zip-service-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 9px;
    line-height: 1.6;
}


/* =========================================
   ZIP Button
========================================= */

.gd-zip-call-button {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 57px;
    margin-top: 23px;
    padding: 7px 8px 7px 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 35px;
    background: var(--primary-red);
    font-size: 12px;
    font-weight: 700;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(217, 35, 50, 0.3);
}

.gd-zip-call-button::before {
    position: absolute;
    content: "";
    inset: 0;
    background: var(--blue);
    transform: translateX(-102%);
    transition: transform 0.4s ease;
}

.gd-zip-call-button:hover::before {
    transform: translateX(0);
}

.gd-zip-call-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.gd-zip-call-button > span {
    position: relative;
    z-index: 2;
}

.gd-zip-button-arrow {
    position: absolute !important;
    right: 7px;
    top: 7px;
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    color: var(--navy);
    border-radius: 50%;
    background: #ffffff;
}

.gd-zip-button-arrow svg {
    width: 18px;
    height: 18px;
}

.gd-zip-button-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   Location Marquee
========================================= */

.gd-location-marquee {
    position: relative;
    z-index: 3;
    margin-top: 35px;
    overflow: hidden;
    border: 1px solid rgba(8, 8, 79, 0.07);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 15px 38px rgba(8, 8, 79, 0.07);
}

.gd-location-marquee-track {
    width: max-content;
    min-height: 69px;
    display: flex;
    align-items: center;
    animation: gdLocationMarquee 32s linear infinite;
}

.gd-location-marquee:hover .gd-location-marquee-track {
    animation-play-state: paused;
}

.gd-location-marquee-track span {
    padding: 0 25px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.gd-location-marquee-track i {
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 0 5px rgba(217, 35, 50, 0.1);
}


/* =========================================
   Animations
========================================= */

@keyframes gdLocationPhonePulse {

    0%,
    100% {
        box-shadow:
            0 10px 25px rgba(217, 35, 50, 0.3),
            0 0 0 0 rgba(217, 35, 50, 0.35);
    }

    50% {
        box-shadow:
            0 10px 25px rgba(217, 35, 50, 0.3),
            0 0 0 12px rgba(217, 35, 50, 0);
    }

}

@keyframes gdLocationMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {

    .gd-location-services-section {
        padding: 95px 0;
    }

    .gd-location-heading h2 {
        font-size: 56px;
    }

    .gd-area-card {
        padding: 30px;
    }

    .gd-area-name {
        font-size: 12px;
    }

    .gd-zip-card {
        padding-left: 27px;
        padding-right: 27px;
    }

}


@media (max-width: 991.98px) {

    .gd-location-contact {
        max-width: 350px;
        margin-top: 20px;
    }

    .gd-area-card,
    .gd-zip-card {
        height: auto;
    }

    .gd-zip-card {
        min-height: auto;
    }

}


@media (max-width: 767.98px) {

    .gd-location-services-section {
        padding: 75px 0;
    }

    .gd-location-heading h2 {
        font-size: 40px;
        letter-spacing: -1.7px;
    }

    .gd-location-heading h2 span {
        display: inline;
    }

    .gd-location-main-row {
        margin-top: 40px;
    }

    .gd-area-card {
        padding: 25px 20px;
        border-radius: 22px;
    }

    .gd-area-card-header h3 {
        font-size: 24px;
    }

    .gd-area-header-icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }

    .gd-area-grid {
        grid-template-columns: 1fr;
    }

    .gd-area-item:nth-child(odd) {
        border-right: 0;
    }

    .gd-zip-card {
        padding: 32px 24px 27px;
        border-radius: 22px;
    }

}


@media (max-width: 479.98px) {

    .gd-location-heading h2 {
        font-size: 34px;
    }

    .gd-location-contact {
        align-items: flex-start;
    }

    .gd-area-card-header {
        align-items: flex-start;
    }

    .gd-area-card-header h3 {
        font-size: 21px;
    }

    .gd-area-item {
        grid-template-columns: 30px 1fr 28px;
        padding-left: 7px;
        padding-right: 7px;
    }

    .gd-zip-item {
        grid-template-columns: 78px 1fr 29px;
    }

    .gd-zip-code {
        font-size: 22px;
    }

}



/* =========================================
   Garage Door FAQ Section
========================================= */

.gd-faq-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #f7f8fc 0%,
            #ffffff 100%
        );
    isolation: isolate;
}

.gd-faq-section::before {
    position: absolute;
    content: "";
    left: -230px;
    bottom: -320px;
    z-index: -3;
    width: 650px;
    height: 650px;
    border: 70px solid rgba(8, 8, 79, 0.025);
    border-radius: 50%;
}

.gd-faq-section::after {
    position: absolute;
    content: "";
    right: -170px;
    top: 110px;
    z-index: -3;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: rgba(217, 35, 50, 0.035);
}

.gd-faq-shape {
    position: absolute;
    z-index: -2;
    display: block;
    border-radius: 50%;
}

.gd-faq-shape-one {
    left: 7%;
    top: 15%;
    width: 15px;
    height: 15px;
    border: 3px solid var(--primary-red);
}

.gd-faq-shape-two {
    right: 8%;
    bottom: 14%;
    width: 21px;
    height: 21px;
    border: 4px solid var(--blue);
}


/* =========================================
   FAQ Intro
========================================= */

.gd-faq-intro {
    position: relative;
    z-index: 3;
    padding-right: 35px;
}

.gd-faq-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 8px 15px;
    color: var(--navy);
    border: 1px solid rgba(8, 8, 79, 0.12);
    border-radius: 30px;
    background: #ffffff;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(8, 8, 79, 0.05);
}

.gd-faq-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 0 0 5px rgba(217, 35, 50, 0.11);
}

.gd-faq-intro h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(43px, 4.7vw, 66px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -2.8px;
}

.gd-faq-intro h2 span {
    display: block;
    color: var(--primary-red);
}

.gd-faq-intro > p {
    max-width: 530px;
    margin: 24px 0 0;
    color: #717a90;
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================
   FAQ Contact
========================================= */

.gd-faq-contact-card {
    max-width: 330px;
    margin-top: 30px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(8, 8, 79, 0.08);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 17px 40px rgba(8, 8, 79, 0.09);
}

.gd-faq-contact-icon {
    flex: 0 0 51px;
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 10px 25px rgba(217, 35, 50, 0.3);
    animation: gdFaqPhonePulse 2.2s infinite;
}

.gd-faq-contact-icon svg {
    width: 23px;
    height: 23px;
}

.gd-faq-contact-icon path {
    fill: currentColor;
}

.gd-faq-contact-card > span:last-child {
    display: flex;
    flex-direction: column;
}

.gd-faq-contact-card small {
    margin-bottom: 3px;
    color: #8990a2;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.gd-faq-contact-card a {
    color: var(--navy);
    font-size: 18px;
    font-weight: 700;
}

.gd-faq-contact-card a:hover {
    color: var(--primary-red);
}


/* =========================================
   Decorative Garage Door
========================================= */

.gd-faq-decoration {
    position: relative;
    width: 330px;
    height: 220px;
    margin-top: 55px;
}

.gd-faq-door {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 185px;
    padding: 17px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    border: 8px solid var(--navy);
    border-radius: 22px 22px 8px 8px;
    background: #ffffff;
    box-shadow: 0 25px 55px rgba(8, 8, 79, 0.12);
    transform: rotate(-3deg);
}

.gd-faq-door-panel {
    border: 3px solid rgba(8, 8, 79, 0.15);
    border-radius: 8px;
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #edf0f8
        );
}

.gd-faq-question-mark {
    position: absolute;
    right: 0;
    top: 0;
    width: 115px;
    height: 115px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border: 9px solid #ffffff;
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            var(--primary-red),
            var(--primary-red-dark)
        );
    box-shadow: 0 20px 45px rgba(217, 35, 50, 0.28);
    font-size: 70px;
    font-weight: 700;
    animation: gdFaqFloat 4s ease-in-out infinite;
}


/* =========================================
   Accordion
========================================= */

.gd-faq-accordion {
    position: relative;
    z-index: 3;
}

.gd-faq-item {
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid rgba(8, 8, 79, 0.08) !important;
    border-radius: 22px !important;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(8, 8, 79, 0.07);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

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

.gd-faq-item:hover {
    border-color: rgba(217, 35, 50, 0.25) !important;
    box-shadow: 0 23px 52px rgba(8, 8, 79, 0.11);
    transform: translateY(-4px);
}


/* =========================================
   Accordion Button
========================================= */

.gd-faq-button {
    position: relative;
    min-height: 105px;
    padding: 23px 27px;
    display: grid !important;
    grid-template-columns: 52px 1fr 48px;
    align-items: center;
    gap: 17px;
    color: var(--navy) !important;
    border: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    font-family: inherit;
}

.gd-faq-button::after {
    display: none;
}

.gd-faq-button:not(.collapsed) {
    color: #ffffff !important;
    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        ) !important;
}

.gd-faq-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 15px;
    background: var(--navy);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.35s ease;
}

.gd-faq-button:not(.collapsed) .gd-faq-number {
    color: var(--primary-red);
    background: #ffffff;
    transform: rotate(-7deg);
}

.gd-faq-question {
    color: inherit;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.45;
}


/* =========================================
   FAQ Toggle Icon
========================================= */

.gd-faq-toggle-icon {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    justify-self: end;
    border: 1px solid #dfe2eb;
    border-radius: 50%;
    background: #ffffff;
}

.gd-faq-toggle-icon span {
    position: absolute;
    width: 15px;
    height: 2px;
    border-radius: 10px;
    background: var(--navy);
    transition: transform 0.35s ease;
}

.gd-faq-toggle-icon span:last-child {
    transform: rotate(90deg);
}

.gd-faq-button:not(.collapsed) .gd-faq-toggle-icon {
    border-color: var(--primary-red);
    background: var(--primary-red);
}

.gd-faq-button:not(.collapsed) .gd-faq-toggle-icon span {
    background: #ffffff;
}

.gd-faq-button:not(.collapsed)
.gd-faq-toggle-icon span:last-child {
    transform: rotate(0);
}


/* =========================================
   FAQ Answer
========================================= */

.gd-faq-answer {
    padding: 0 30px 29px 96px;
    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );
}

.gd-faq-answer p {
    margin: 0;
    padding-top: 22px;
    color: rgba(255, 255, 255, 0.74);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    line-height: 1.85;
}


/* =========================================
   Animations
========================================= */

@keyframes gdFaqPhonePulse {

    0%,
    100% {
        box-shadow:
            0 10px 25px rgba(217, 35, 50, 0.3),
            0 0 0 0 rgba(217, 35, 50, 0.35);
    }

    50% {
        box-shadow:
            0 10px 25px rgba(217, 35, 50, 0.3),
            0 0 0 12px rgba(217, 35, 50, 0);
    }

}

@keyframes gdFaqFloat {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-12px) rotate(-3deg);
    }

}


/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {

    .gd-faq-section {
        padding: 100px 0;
    }

    .gd-faq-intro h2 {
        font-size: 53px;
    }

    .gd-faq-button {
        grid-template-columns: 48px 1fr 44px;
        padding-left: 23px;
        padding-right: 23px;
    }

    .gd-faq-question {
        font-size: 15px;
    }

}


@media (max-width: 991.98px) {

    .gd-faq-intro {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .gd-faq-decoration {
        display: none;
    }

    .gd-faq-contact-card {
        margin-bottom: 20px;
    }

}


@media (max-width: 767.98px) {

    .gd-faq-section {
        padding: 78px 0;
    }

    .gd-faq-intro h2 {
        font-size: 40px;
        letter-spacing: -1.7px;
    }

    .gd-faq-intro h2 span {
        display: inline;
    }

    .gd-faq-button {
        min-height: 95px;
        grid-template-columns: 42px 1fr 40px;
        gap: 12px;
        padding: 20px 17px;
    }

    .gd-faq-number {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 11px;
    }

    .gd-faq-question {
        font-size: 14px;
    }

    .gd-faq-toggle-icon {
        width: 38px;
        height: 38px;
    }

    .gd-faq-answer {
        padding: 0 20px 24px;
    }

    .gd-faq-answer p {
        font-size: 12px;
    }

}


@media (max-width: 479.98px) {

    .gd-faq-intro h2 {
        font-size: 34px;
    }

    .gd-faq-button {
        min-height: 90px;
        grid-template-columns: 35px 1fr 34px;
        gap: 9px;
        padding: 17px 13px;
    }

    .gd-faq-number {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 9px;
    }

    .gd-faq-question {
        font-size: 12px;
    }

    .gd-faq-toggle-icon {
        width: 33px;
        height: 33px;
    }

    .gd-faq-toggle-icon span {
        width: 12px;
    }

}


/* =========================================
   Footer CTA
========================================= */

.gd-main-footer {
    position: relative;
    background: var(--navy-dark);
}

.gd-footer-cta-wrap {
    position: relative;
    z-index: 5;
    padding-top: 70px;
    background: #ffffff;
}

.gd-footer-cta {
    position: relative;
    margin-bottom: -78px;
    padding: 35px 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    border-radius: 27px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(217, 35, 50, 0.72),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy) 64%,
            #25104d
        );
    box-shadow: 0 25px 65px rgba(8, 8, 79, 0.25);
}

.gd-footer-cta::before {
    position: absolute;
    content: "";
    right: -100px;
    top: -130px;
    width: 300px;
    height: 300px;
    border: 45px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.gd-footer-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gd-footer-cta-icon {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 20px;
    background: var(--primary-red);
    box-shadow: 0 13px 30px rgba(217, 35, 50, 0.34);
}

.gd-footer-cta-icon svg {
    width: 34px;
    height: 34px;
}

.gd-footer-cta-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-footer-cta-content small {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gd-footer-cta-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(25px, 3vw, 40px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -1.4px;
}


/* =========================================
   Footer CTA Button
========================================= */

.gd-footer-cta-button {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    min-height: 59px;
    padding: 7px 8px 7px 27px;
    display: inline-flex;
    align-items: center;
    color: var(--navy);
    border-radius: 40px;
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
    overflow: hidden;
}

.gd-footer-cta-button::before {
    position: absolute;
    content: "";
    inset: 0;
    background: var(--primary-red);
    transform: translateX(-102%);
    transition: transform 0.4s ease;
}

.gd-footer-cta-button:hover::before {
    transform: translateX(0);
}

.gd-footer-cta-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.gd-footer-cta-button > span {
    position: relative;
    z-index: 2;
}

.gd-footer-cta-arrow {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    margin-left: 22px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 50%;
    background: var(--primary-red);
}

.gd-footer-cta-button:hover .gd-footer-cta-arrow {
    color: var(--navy);
    background: #ffffff;
}

.gd-footer-cta-arrow svg {
    width: 18px;
    height: 18px;
}

.gd-footer-cta-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   Main Footer
========================================= */

.gd-footer-main {
    position: relative;
    padding: 155px 0 0;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 93% 15%,
            rgba(217, 35, 50, 0.2),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            var(--navy-dark) 0%,
            var(--navy) 57%,
            #17104d 100%
        );
    isolation: isolate;
}

.gd-footer-main::before {
    position: absolute;
    content: "";
    left: -340px;
    bottom: -580px;
    z-index: -3;
    width: 900px;
    height: 900px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.gd-footer-main::after {
    position: absolute;
    content: "";
    right: -240px;
    top: -330px;
    z-index: -3;
    width: 670px;
    height: 670px;
    border: 65px solid rgba(255, 255, 255, 0.025);
    border-radius: 50%;
}

.gd-footer-glow {
    position: absolute;
    z-index: -2;
    display: block;
    border-radius: 50%;
    filter: blur(40px);
}

.gd-footer-glow-one {
    left: -120px;
    bottom: 10%;
    width: 320px;
    height: 320px;
    background: rgba(71, 116, 239, 0.12);
}

.gd-footer-glow-two {
    right: -100px;
    top: 24%;
    width: 330px;
    height: 330px;
    background: rgba(217, 35, 50, 0.16);
}


/* =========================================
   Footer Logo
========================================= */

.gd-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #ffffff;
}

.gd-footer-logo:hover {
    color: #ffffff;
}

.gd-footer-logo-icon {
    flex: 0 0 57px;
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-red);
    box-shadow: 0 12px 28px rgba(217, 35, 50, 0.31);
}

.gd-footer-logo-icon svg {
    width: 36px;
    height: 36px;
}

.gd-footer-logo-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-footer-logo-text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.6px;
}

.gd-footer-logo-text small {
    margin-top: 7px;
    color: var(--primary-red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.gd-footer-description {
    max-width: 440px;
    margin: 25px 0 28px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 12px;
    line-height: 1.85;
}


/* =========================================
   Contact List
========================================= */

.gd-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.gd-footer-contact-item {
    max-width: 430px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    transition: all 0.3s ease;
}

.gd-footer-contact-item:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(217, 35, 50, 0.12);
    transform: translateX(5px);
}

.gd-footer-contact-icon {
    flex: 0 0 41px;
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 12px;
    background: var(--primary-red);
}

.gd-footer-contact-icon svg {
    width: 20px;
    height: 20px;
}

.gd-footer-contact-icon path,
.gd-footer-contact-icon rect,
.gd-footer-contact-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-footer-contact-item > span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.gd-footer-contact-item small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.49);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.gd-footer-contact-item strong {
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    overflow-wrap: anywhere;
}


/* =========================================
   Footer Columns
========================================= */

.gd-footer-column {
    padding-top: 7px;
}

.gd-footer-column-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-red);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.gd-footer-column h3 {
    margin: 0 0 25px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
}

.gd-footer-service-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gd-footer-service-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gd-footer-service-list a {
    position: relative;
    min-height: 51px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 12px;
    line-height: 1.45;
}

.gd-footer-service-list a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: var(--primary-red);
    transition: width 0.35s ease;
}

.gd-footer-service-list a:hover::before {
    width: 100%;
}

.gd-footer-service-list a:hover {
    padding-left: 8px;
    color: #ffffff;
}

.gd-footer-service-list i {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 11px;
    font-style: normal;
    transition: all 0.3s ease;
}

.gd-footer-service-list a:hover i {
    background: var(--primary-red);
    transform: rotate(45deg);
}


/* =========================================
   Footer Info Card
========================================= */

.gd-footer-info-card {
    position: relative;
    padding: 27px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 22px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(13px);
}

.gd-footer-info-card::before {
    position: absolute;
    content: "";
    right: -70px;
    top: -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(217, 35, 50, 0.13);
}

.gd-footer-info-heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gd-footer-info-icon {
    flex: 0 0 49px;
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    color: #ffffff;
    border-radius: 14px;
    background: var(--primary-red);
}

.gd-footer-info-icon svg {
    width: 24px;
    height: 24px;
}

.gd-footer-info-icon path,
.gd-footer-info-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-footer-info-heading > div {
    display: flex;
    flex-direction: column;
}

.gd-footer-info-heading small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.49);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.gd-footer-info-heading strong {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.gd-footer-address {
    position: relative;
    z-index: 2;
    display: block;
    margin: 22px 0;
    padding-bottom: 21px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 11px;
    line-height: 1.75;
}

.gd-footer-address:hover {
    color: var(--primary-red);
}


/* =========================================
   Operating Hours
========================================= */

.gd-footer-hours {
    position: relative;
    z-index: 2;
}

.gd-footer-hours-title {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 9px;
}

.gd-footer-hours-title > span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: var(--primary-red);
    border-radius: 50%;
    background: rgba(217, 35, 50, 0.12);
}

.gd-footer-hours-title svg {
    width: 17px;
    height: 17px;
}

.gd-footer-hours-title path,
.gd-footer-hours-title circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gd-footer-hours-title strong {
    color: #ffffff;
    font-size: 13px;
}

.gd-footer-hours-row {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.gd-footer-hours-row span {
    color: rgba(255, 255, 255, 0.48);
    font-size: 9px;
    font-weight: 600;
}

.gd-footer-hours-row strong {
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
}


/* =========================================
   Footer Location Button
========================================= */

.gd-footer-location-button {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
    padding: 6px 7px 6px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 30px;
    background: var(--primary-red);
    font-size: 11px;
    font-weight: 700;
    overflow: hidden;
}

.gd-footer-location-button::before {
    position: absolute;
    content: "";
    inset: 0;
    background: var(--blue);
    transform: translateX(-102%);
    transition: transform 0.4s ease;
}

.gd-footer-location-button:hover::before {
    transform: translateX(0);
}

.gd-footer-location-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.gd-footer-location-button > span {
    position: relative;
    z-index: 2;
}

.gd-footer-location-arrow {
    position: absolute !important;
    right: 6px;
    top: 6px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--navy);
    border-radius: 50%;
    background: #ffffff;
}

.gd-footer-location-arrow svg {
    width: 17px;
    height: 17px;
}

.gd-footer-location-arrow path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   Bottom Footer
========================================= */

.gd-footer-bottom {
    margin-top: 65px;
    min-height: 85px;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gd-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.gd-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gd-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.gd-footer-bottom-links a:hover {
    color: var(--primary-red);
}

.gd-footer-bottom-links span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-red);
}


/* =========================================
   Responsive
========================================= */

@media (max-width: 1199.98px) {

    .gd-footer-cta {
        padding: 31px 34px;
    }

    .gd-footer-main {
        padding-top: 145px;
    }

    .gd-footer-info-card {
        margin-top: 15px;
    }

}


@media (max-width: 991.98px) {

    .gd-footer-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .gd-footer-cta-button {
        align-self: flex-start;
    }

    .gd-footer-company {
        margin-bottom: 15px;
    }

    .gd-footer-info-card {
        max-width: 520px;
    }

}


@media (max-width: 767.98px) {

    .gd-footer-cta-wrap {
        padding-top: 50px;
    }

    .gd-footer-cta {
        margin-bottom: -65px;
        padding: 27px 22px;
        border-radius: 22px;
    }

    .gd-footer-cta-content {
        align-items: flex-start;
    }

    .gd-footer-cta-icon {
        flex-basis: 55px;
        width: 55px;
        height: 55px;
        border-radius: 16px;
    }

    .gd-footer-cta-content h2 {
        font-size: 26px;
    }

    .gd-footer-main {
        padding-top: 125px;
    }

    .gd-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .gd-footer-bottom-links {
        flex-wrap: wrap;
    }

}


@media (max-width: 479.98px) {

    .gd-footer-cta-content {
        flex-direction: column;
    }

    .gd-footer-cta-button {
        width: 100%;
        justify-content: center;
    }

    .gd-footer-cta-arrow {
        position: absolute;
        right: 7px;
    }

    .gd-footer-logo-text {
        font-size: 20px;
    }

    .gd-footer-contact-item strong {
        font-size: 9px;
    }

    .gd-footer-info-card {
        padding: 22px 18px;
    }

    .gd-footer-bottom-links {
        gap: 10px;
    }

}


/* FORM WRAPPER */
form.CUS {
    max-width: 900px;
    width: 100%;
    margin: 20px auto;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: system-ui, sans-serif;
}

/* FLEX FIELDSET */
form.CUS fieldset {
    display: flex;
    flex-wrap: wrap;
    border: none;
    padding: 0;
    margin: 0;
}

/* BASE BLOCK STYLE */
form.CUS fieldset > p {
    width: 100%;
    padding: 10px;
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

/* Universal input/select styling */
form.CUS input,
form.CUS select,
form.CUS textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 33.333%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 33.333%;
}

/* ===============================
   SERVICE NEEDED TEXTAREA
=============================== */
form.CUS fieldset > p:nth-of-type(7) {
    width: 100%;
}

/* ===============================
   SERVICE DATE (Month, Day, Year)
   â†’ ALL 3 IN ONE ROW
=============================== */

/* Make the 8th <p> (Service Date block) a flex row */
form.CUS fieldset > p:nth-of-type(8) {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: flex-start;
}

/* Month, Day, Year = 3 equal flex columns */
form.CUS fieldset > p:nth-of-type(8) select#service_date,
form.CUS fieldset > p:nth-of-type(8) select#service_day,
form.CUS fieldset > p:nth-of-type(8) input#service_year {
    flex: 1 1 0;
    width: auto;          /* flex handles width */
    margin-top: 6px;
}

/* ===============================
   SERVICE TIME (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(9) {
    width: 100%;
}

/* ===============================
   SUBMIT BUTTON (Full width)
=============================== */
form.CUS fieldset > p:nth-of-type(10) {
    width: 100%;
}

form.CUS input[type="submit"] {
    width: 100%;
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

form.CUS input[type="submit"]:hover {
    background: #1d4ed8;
}

/* Hide honeypot */
form.CUS input.subject {
    display: none;
}

/* ===============================
   MOBILE RESPONSIVE (stack fields)
=============================== */
@media (max-width: 600px) {

    form.CUS fieldset > p {
        width: 100%;
        padding: 6px 0;
    }

    /* Month, Day, Year full width stacked on mobile */
    form.CUS fieldset > p:nth-of-type(8) {
        flex-direction: column;
        gap: 6px;
    }

    form.CUS fieldset > p:nth-of-type(8) select#service_date,
    form.CUS fieldset > p:nth-of-type(8) select#service_day,
    form.CUS fieldset > p:nth-of-type(8) input#service_year {
        flex: none;
        width: 100% !important;
    }
/* ===============================
   ROW 1: Name, Phone, Address
=============================== */
form.CUS fieldset > p:nth-of-type(1),
form.CUS fieldset > p:nth-of-type(2),
form.CUS fieldset > p:nth-of-type(3) {
    width: 100%;
}

/* ===============================
   ROW 2: City, State, Zip Code
=============================== */
form.CUS fieldset > p:nth-of-type(4),
form.CUS fieldset > p:nth-of-type(5),
form.CUS fieldset > p:nth-of-type(6) {
    width: 100%;
}
}