/*
 * * University Park TX Garage Doors
 * * Organized CSS
 * *
 * * Main sections:
 * * 01. Root / Global
 * * 02. Header / Navbar
 * * 03. About
 * * 04. Hero
 * * 05. Services
 * * 06. Why Choose / Process
 * * 07. FAQ
 * * 08. Showcase
 * * 09. Testimonials
 * * 10. Footer
 * * 11. Brands
 * * 12. Garage Solutions
 * * 13. Offers
 * * 14. Professional Service
 * * 15. Contact
 * * 16. Subpage Hero
 * *
 * * Notes:
 * * - Original selector/rule order is preserved to avoid changing cascade behavior.
 * * - Excess blank space and inconsistent indentation were normalized.
 * * - The malformed trailing comma in the hero overlay gradient was corrected.
 */

:root {
    --dark: #2E2910;
    --green: #2C5745;
    --beige: #EBE3A7;
    --orange: #EB7D00;
    --white: #ffffff;
    --body-bg: #f7f6ee;
}

/*
 * * =========================
 * * GENERAL
 * * =========================
 */

body {
    margin: 0;
    background: var(--body-bg);
    color: var(--dark);
    font-family: Arial, Helvetica, sans-serif;
}

/*
 * * =========================
 * * NAVBAR
 * * =========================
 */

.site-header {
    position: relative;
    z-index: 9999;
}

.main-navbar {
    min-height: 6.5rem;
    padding: 1rem 0;
    background: #ffffff;
}

.main-navbar .container {
    display: flex;
    align-items: center;
}

/*
 * * =========================
 * * LOGO
 * * =========================
 */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    color: var(--dark);
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--dark);
}

.logo-icon {
    display: flex;
    width: 4.5rem;
    height: 3rem;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    color: var(--dark);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.06rem;
}

/*
 * * =========================
 * * NAVIGATION
 * * =========================
 */

.navbar-collapse {
    display: flex;
    align-items: center;
    flex: 1;
}

.main-navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    list-style: none;
}

.main-navbar .nav-item {
    position: relative;
}

.main-navbar .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.8rem 0;
    color: var(--dark);
    background: transparent;
    border: 0;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/*
 * * =========================
 * * DROPDOWN
 * * =========================
 */

.main-navbar .dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    z-index: 9999;
    display: block;
    min-width: 17rem;
    padding: 0.65rem;
    margin: 0;
    list-style: none;
    background: var(--white);
    border: 1px solid rgba(46, 41, 16, 0.1);
    border-radius: 0.85rem;
    box-shadow: 0 1rem 2.5rem rgba(46, 41, 16, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.75rem);
    pointer-events: none;
    transition: opacity 0.25s ease,
 visibility 0.25s ease,
 transform 0.25s ease;
}

/* * Desktop dropdown opening */

.main-navbar .dropdown:hover > .dropdown-menu,
.main-navbar .dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.main-navbar .dropdown:hover > .dropdown-toggle,
.main-navbar .dropdown:focus-within > .dropdown-toggle {
    color: var(--orange);
}

.main-navbar .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.75rem 0.9rem;
    color: var(--dark);
    border-radius: 0.55rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease,
 background 0.3s ease;
}

.main-navbar .dropdown-item:hover,
.main-navbar .dropdown-item:focus {
    color: var(--white);
    background: var(--green);
}

/* * CSS arrow */

.main-navbar .dropdown-toggle::after {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    margin-left: 0.25rem;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s ease;
}

.main-navbar .dropdown:hover > .dropdown-toggle::after,
.main-navbar .dropdown:focus-within > .dropdown-toggle::after {
    transform: rotate(225deg) translate(-1px, -1px);
}

/*
 * * =========================
 * * RIGHT SIDE
 * * =========================
 */

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.navbar-phone__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    color: var(--green);
    border: 1px solid rgba(46, 41, 16, 0.16);
    border-radius: 50%;
}

.navbar-phone__icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.navbar-phone span {
    display: block;
    margin-bottom: 0.15rem;
    color: #858585;
    font-size: 0.7rem;
}

.navbar-phone a {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 8.5rem;
    min-height: 3rem;
    padding: 0.8rem 1.6rem;
    color: #ffffff;
    background: var(--orange);
    border-radius: 3rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.3s ease,
 transform 0.3s ease;
}

.navbar-cta:hover {
    color: #ffffff;
    background: var(--green);
    transform: translateY(-2px);
}

/*
 * * =========================
 * * CSS MOBILE TOGGLE
 * * =========================
 */

.nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.navbar-toggler {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0.65rem;
    cursor: pointer;
    border: 0;
}

.navbar-toggler span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 0.32rem 0;
    background: var(--dark);
    transition: transform 0.3s ease,
 opacity 0.3s ease;
}

/*
 * * ================================
 * * ABOUT SECTION
 * * ================================
 */

.about-section {
    position: relative;
    overflow: hidden;
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
    background: #f8f8f8;
}

/*
 * * ================================
 * * LEFT MEDIA
 * * ================================
 */

.about-section__media {
    position: relative;
    min-height: 39rem;
    max-width: 36rem;
    margin: 0 auto;
}

.about-section__image {
    position: absolute;
    overflow: hidden;
    border-radius: 1.5rem;
}

.about-section__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section__image--one {
    left: 0;
    bottom: 0;
    width: 46%;
    height: 80%;
}

.about-section__image--two {
    top: 0;
    right: 1%;
    width: 52%;
    height: 48%;
}

.about-section__image--three {
    right: 1%;
    bottom: 0;
    width: 52%;
    height: 48%;
}

/*
 * * ================================
 * * CENTER BADGE
 * * ================================
 */

.about-section__badge {
    position: absolute;
    top: 48%;
    left: 48%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9rem;
    height: 9rem;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.12);
    transform: translate(-50%, -50%);
}

.about-section__badge-text {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: aboutBadgeRotate 18s linear infinite;
}

.about-section__badge-text text {
    fill: #777777;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.11rem;
    text-transform: uppercase;
}

.about-section__badge-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.2rem;
    height: 5.2rem;
    color: #ffffff;
    background: var(--orange, #ff2727);
    border-radius: 50%;
    font-size: 1.7rem;
    box-shadow: 0 0.7rem 1.5rem rgba(255, 39, 39, 0.25);
}

@keyframes aboutBadgeRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/*
 * * ================================
 * * RIGHT CONTENT
 * * ================================
 */

.about-section__content {
    padding-left: 1.5rem;
}

.about-section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    color: #181818;
    background: #ffffff;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 0.3rem 1.2rem rgba(0, 0, 0, 0.035);
}

.about-section__eyebrow span {
    width: 0.45rem;
    height: 0.45rem;
    background: var(--orange, #ff2727);
    border-radius: 50%;
}

.about-section__content h2 {
    max-width: 38rem;
    margin: 0 0 1.6rem;
    color: #111111;
    font-size: clamp(2rem, 3.3vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.09rem;
}

.about-section__intro {
    max-width: 40rem;
    margin: 0;
    color: #777777;
    font-size: 1rem;
    line-height: 1.9;
}

.about-section__divider {
    width: 100%;
    height: 1px;
    margin: 2.2rem 0;
    background: #dddddd;
}

/*
 * * ================================
 * * FEATURES
 * * ================================
 */

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature__icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    color: var(--orange, #ff2727);
    background: #ffffff;
    border-radius: 50%;
    font-size: 1.35rem;
    box-shadow: 0 0.6rem 1.5rem rgba(0, 0, 0, 0.04);
}

.about-feature__content h3 {
    margin: 0 0 0.35rem;
    color: #222222;
    font-size: 1.1rem;
    font-weight: 800;
}

.about-feature__content p {
    margin: 0;
    color: #888888;
    font-size: 0.92rem;
    line-height: 1.7;
}

/*
 * * ================================
 * * BOTTOM CTA
 * * ================================
 */

.about-section__bottom {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.about-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 11rem;
    padding: 0.4rem 0.45rem 0.4rem 1.5rem;
    color: #ffffff;
    background: var(--orange, #ff2727);
    border-radius: 3rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease,
 background 0.3s ease;
}

.about-section__btn:hover {
    color: #ffffff;
    background: var(--green, #172f24);
    transform: translateY(-2px);
}

.about-section__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    color: var(--orange, #ff2727);
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.about-section__btn:hover .about-section__btn-icon {
    transform: rotate(-45deg);
}

.about-section__bottom-line {
    width: 1px;
    height: 3.5rem;
    background: #dddddd;
}

/*
 * * ================================
 * * PHONE
 * * ================================
 */

.about-section__phone {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.about-section__phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    color: #ffffff;
    background: #111111;
    border-radius: 50%;
    font-size: 1.05rem;
}

.about-section__phone span {
    display: block;
    margin-bottom: 0.15rem;
    color: #969696;
    font-size: 0.8rem;
}

.about-section__phone a {
    color: #252525;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
}

.about-section__phone a:hover {
    color: var(--orange, #ff2727);
}

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

/*
 * * =========================
 * * MOBILE
 * * =========================
 */

/*
 * * =========================
 * * SMALL MOBILE
 * * =========================
 */

/*
 * * =========================
 * * HERO
 * * =========================
 */

.hero-section {
    padding-bottom: 1.5rem;
}

.hero-section__wrapper {
    position: relative;
    min-height: 46rem;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1.25rem;
}

.hero-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
 90deg,
 rgba(46, 41, 16, 0.2) 0%,
 rgba(46, 41, 16, 0.3) 92%);
}

.hero-section__overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
 0deg,
 rgba(16, 18, 11, 0.78) 0%,
 transparent 55%
 );
}

.hero-section__container {
    z-index: 2;
    min-height: 52rem;
}

.hero-section__content {
    padding: 18rem 0 4rem;
}

/*
 * * =========================
 * * TRUSTED BADGE
 * * =========================
 */

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.55rem 1.4rem 0.55rem 0.8rem;
    color: #ffffff;
    background: rgba(235, 227, 167, 0.14);
    border: 1px solid rgba(235, 227, 167, 0.25);
    border-radius: 3rem;
    backdrop-filter: blur(0.8rem);
}

.trusted-badge__avatars {
    display: flex;
    align-items: center;
}

.trusted-badge__avatars img,
.trusted-badge__plus {
    width: 2rem;
    height: 2rem;
    margin-left: -0.45rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.trusted-badge__avatars img:first-child {
    margin-left: 0;
}

.trusted-badge__avatars img {
    object-fit: cover;
}

.trusted-badge__plus {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--orange);
    font-size: 1.2rem;
    font-weight: 400;
}

.trusted-badge > span {
    font-size: 0.9rem;
    font-weight: 600;
}

/*
 * * =========================
 * * HERO HEADING
 * * =========================
 */

.hero-section h1 {
    max-width: 70rem;
    margin: 0;
    color: #ffffff;
    font-size: clamp(4.2rem, 4.3vw, 4.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.3rem;
}

.hero-section__divider {
    width: 70%;
    height: 1px;
    margin: 2rem 0;
    background: rgba(235, 227, 167, 0.35);
}

/*
 * * =========================
 * * HERO BOTTOM
 * * =========================
 */

.hero-section__bottom {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-section__bottom p {
    max-width: 31rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* * Button */

.hero-button {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    gap: 1rem;
    padding: 0.45rem 0.45rem 0.45rem 1.5rem;
    color: #ffffff;
    background: var(--orange);
    border-radius: 3rem;
    font-size: 1.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease,
 transform 0.3s ease;
}

.hero-button:hover {
    color: #ffffff;
    background: var(--green);
    transform: translateY(-3px);
}

.hero-button__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    color: var(--orange);
    background: #ffffff;
    border-radius: 50%;
}

.hero-button:hover .hero-button__icon {
    color: var(--green);
}

.hero-button__icon svg {
    width: 1.15rem;
    height: 1.15rem;
}

.services-section {
    --primary: #2e2910;
    --accent: #fcaf2f;
    --white: #ffffff;
    --light: #f7f7f4;
    --text: #5d5d57;
    --border: #ecece6;
    position: relative;
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}

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

.services-section__heading {
    max-width: 48rem;
    margin-bottom: 3.5rem;
}

.services-section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    margin-bottom: 1.2rem;
    background: var(--light);
    border-radius: 50rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.services-section__label-dot {
    width: 0.45rem;
    height: 0.45rem;
    flex: 0 0 0.45rem;
    border-radius: 50%;
    background: var(--accent);
}

.services-section__title {
    margin: 0;
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 700;
}

/*
 * * =========================
 * * Service Card
 * * =========================
 */

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

.services-section__heading {
    max-width: 48rem;
    margin-bottom: 3.5rem;
}

.services-section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    margin-bottom: 1.2rem;
    background: var(--light);
    border-radius: 50rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.services-section__label-dot {
    width: 0.45rem;
    height: 0.45rem;
    flex: 0 0 0.45rem;
    border-radius: 50%;
    background: var(--accent);
}

.services-section__title {
    margin: 0;
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 700;
}

/*
 * * =========================
 * * Service Card
 * * =========================
 */

.service-card {
    position: relative;
    min-height: 38rem;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    /* reserve space for bottom image */
    padding-bottom: 13.5rem;
    background: #f7f7f4;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.4s ease,
 box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1.2rem 2.5rem rgba(46, 41, 16, 0.2);
}

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

.service-card__top {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.service-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcaf2f;
    color: #2e2910;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: transform 0.35s ease,
 background 0.35s ease,
 color 0.35s ease;
}

.service-card:hover .service-card__icon {
    transform: rotate(8deg);
}

/*
 * * =========================
 * * Watermark
 * * =========================
 */

.service-card__watermark {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(46, 41, 16, 0.06);
    font-size: 4rem;
    transition: color 0.35s ease;
}

.service-card:hover .service-card__watermark {
    color: rgba(255, 255, 255, 0.13);
}

/*
 * * =========================
 * * Title
 * * =========================
 */

.service-card__title {
    position: relative;
    z-index: 4;
    display: block;
    margin-bottom: 0.75rem;
    color: #2e2910;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.35s ease;
}

.service-card:hover .service-card__title {
    color: #ffffff;
}

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

.service-card__text {
    position: relative;
    z-index: 4;
    margin-bottom: 0;
    color: #666666;
    font-size: 1rem;
    transition: color 0.35s ease;
}

.service-card:hover .service-card__text {
    color: rgba(255, 255, 255, 0.9);
}

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

.service-card__image {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    height: 19rem;
    z-index: 2;
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    transition: left 0.55s ease,
 right 0.55s ease,
 bottom 0.55s ease,
 top 0.55s ease,
 height 0.55s ease,
 border-radius 0.55s ease;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

/* * Dark overlay over image */

.service-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
 180deg,
 rgba(46, 41, 16, 0.38) 0%,
 rgba(46, 41, 16, 0.67) 50%,
 rgba(46, 41, 16, 0.92) 100%
 );
    opacity: 0;
    transition: opacity 0.45s ease;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 28rem;
    padding: 1.5rem;
    padding-bottom: 13.5rem;
    background: #f7f7f4;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.4s ease,
 box-shadow 0.4s ease,
 padding 0.55s ease;
}

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

.service-card__content {
    position: relative;
    z-index: 4;
    transition: margin 0.55s ease,
 transform 0.55s ease;
}

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

.service-card__image {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    height: 11rem;
    z-index: 2;
    display: block;
    border-radius: 1rem;
    overflow: hidden;
    transition: left 0.55s ease,
 right 0.55s ease,
 bottom 0.55s ease,
 top 0.55s ease,
 height 0.55s ease,
 border-radius 0.55s ease;
}

.service-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.65s ease;
}

/* * Overlay */

.service-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
 180deg,
 rgba(46, 41, 16, 0.15) 0%,
 rgba(46, 41, 16, 0.45) 45%,
 rgba(46, 41, 16, 0.95) 100%
 );
    opacity: 0;
    transition: opacity 0.45s ease;
}

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

.service-card:hover {
    /* Remove space reserved for old bottom image */
    padding-bottom: 1.5rem;
    transform: translateY(-0.5rem);
    box-shadow: 0 1.2rem 2.5rem rgba(46, 41, 16, 0.2);
}

/* * Image becomes full background */

.service-card:hover .service-card__image {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 1.25rem;
}

.service-card:hover .service-card__image img {
    transform: scale(1.06);
}

.service-card:hover .service-card__image::after {
    opacity: 1;
}

/*
 * * =========================
 * * WHOLE CONTENT TO BOTTOM
 * * =========================
 */

.service-card:hover .service-card__content {
    margin-top: auto;
}

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

.service-card__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.service-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcaf2f;
    color: #2e2910;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: transform 0.35s ease;
}

.service-card:hover .service-card__icon {
    transform: rotate(8deg);
}

.service-card__watermark {
    position: absolute;
    top: 0;
    right: 0;
    color: rgba(46, 41, 16, 0.06);
    font-size: 4rem;
    transition: color 0.35s ease;
}

.service-card:hover .service-card__watermark {
    color: rgba(255, 255, 255, 0.15);
}

/*
 * * =========================
 * * Title
 * * =========================
 */

.service-card__title {
    display: block;
    margin-bottom: 0.75rem;
    color: #2e2910;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.35s ease;
}

.service-card:hover .service-card__title {
    color: #ffffff;
}

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

.service-card__text {
    margin-bottom: 0;
    color: #666666;
    font-size: 1rem;
    transition: color 0.35s ease;
}

.service-card:hover .service-card__text {
    color: rgba(255, 255, 255, 0.9);
}

/*
 * * =========================
 * * Hover:
 * * image grows bottom -> top
 * * =========================
 */

.service-card:hover .service-card__image {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 1.25rem;
}

.service-card:hover .service-card__image img {
    transform: scale(1.06);
}

.service-card:hover .service-card__image::after {
    opacity: 1;
}

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

/*
 * * =========================
 * * Marquee
 * * =========================
 */

.services-marquee {
    position: relative;
    width: 100%;
    padding: 1.65rem 0;
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.services-marquee__track {
    display: flex;
    width: max-content;
    animation: garageServicesMarquee 26s linear infinite;
}

.services-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.services-marquee__group span {
    padding: 0 2.6rem;
    color: var(--white);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.services-marquee__group i {
    color: var(--accent);
    font-size: 1.3rem;
}

.services-marquee:hover .services-marquee__track {
    animation-play-state: paused;
}

@keyframes garageServicesMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

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

/*
 * * =========================
 * * FLOATING FEATURE CARD
 * * =========================
 */

.roof-feature-card {
    position: absolute;
    z-index: 4;
    right: 9%;
    bottom: 4rem;
    width: min(21rem, 28vw);
    padding: 1rem;
    color: #ffffff;
    background: rgba(46, 41, 16, 0.22);
    border: 1px solid rgba(235, 227, 167, 0.08);
    border-radius: 1.25rem;
    backdrop-filter: blur(0.5rem);
}

.roof-feature-card__image {
    overflow: hidden;
    border-radius: 1rem;
}

.roof-feature-card__image img {
    display: block;
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.roof-feature-card:hover .roof-feature-card__image img {
    transform: scale(1.05);
}

.roof-feature-card__footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 0.4rem 0.25rem;
}

.roof-feature-card__title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.roof-feature-card__icon {
    display: flex;
    width: 3rem;
    height: 3rem;
    color: var(--beige);
}

.roof-feature-card__icon svg {
    width: 100%;
    height: 100%;
}

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

.why-choose-garage-door {
    --primary: #2E2910;
    --accent: #FCAF2F;
    --light: #F7F6F1;
    --white: #ffffff;
    --text: #666666;
    --muted: #8b8b8b;
    position: relative;
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}

.why-choose-garage-door__heading {
    max-width: 44rem;
    margin-bottom: 4rem;
}

.why-choose-garage-door__label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    margin-bottom: 1rem;
    background: var(--light);
    border-radius: 50rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.why-choose-garage-door__label-dot {
    width: 0.45rem;
    height: 0.45rem;
    flex: 0 0 0.45rem;
    border-radius: 50%;
    background: var(--accent);
}

.why-choose-garage-door__title {
    margin: 0;
    color: #111111;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
}

.why-choose-garage-door__side {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.why-choose-garage-door__item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.why-choose-garage-door__side--left .why-choose-garage-door__item {
    justify-content: flex-end;
    text-align: right;
}

.why-choose-garage-door__side--right .why-choose-garage-door__item {
    justify-content: flex-start;
    text-align: left;
}

.why-choose-garage-door__item-content {
    max-width: 16rem;
}

.why-choose-garage-door__item-title {
    margin-bottom: 0.7rem;
    color: #20242c;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.why-choose-garage-door__item-content p {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

.why-choose-garage-door__item-icon {
    width: 5.25rem;
    height: 5.25rem;
    flex: 0 0 5.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    color: var(--green);
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.why-choose-garage-door__item:hover .why-choose-garage-door__item-icon {
    transform: translateY(-0.35rem);
    background: var(--accent);
    color: var(--primary);
}

.why-choose-garage-door__arrow {
    position: absolute;
    top: -2.4rem;
    color: #1d4961;
    font-size: 2.9rem;
    line-height: 1;
    opacity: 0.85;
}

.why-choose-garage-door__side--left .why-choose-garage-door__arrow {
    right: 3.6rem;
    transform: scaleX(-1) rotate(14deg);
}

.why-choose-garage-door__side--right .why-choose-garage-door__arrow {
    left: 3.6rem;
    transform: rotate(14deg);
}

.why-choose-garage-door__center {
    position: relative;
}

.why-choose-garage-door__image-wrap {
    max-width: 27rem;
    margin: 0 auto;
}

.why-choose-garage-door__image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.why-choose-garage-door__cta {
    margin: 0 auto;
    margin-top: -1.2rem;
    max-width: 33rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--white);
    border-radius: 50rem;
    text-decoration: none;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

.why-choose-garage-door__cta-avatar {
    width: 3.3rem;
    height: 3.3rem;
    flex: 0 0 3.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff2f2f;
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
}

.why-choose-garage-door__cta-text {
    color: #333333;
    font-size: 1rem;
    line-height: 1.5;
}

.why-choose-garage-door__cta-text strong {
    margin-left: 0.35rem;
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
}

.why-choose-garage-door__shape {
    position: absolute;
    color: rgba(46, 41, 16, 0.04);
    z-index: 0;
    pointer-events: none;
}

.why-choose-garage-door__shape--left {
    top: 2rem;
    left: 2rem;
    font-size: 12rem;
}

.why-choose-garage-door__shape--right {
    right: 2rem;
    bottom: 2rem;
    font-size: 10rem;
}

.how-it-works {
    --primary: #2e2910;
    --accent: #fcaf2f;
    --white: #ffffff;
    --light: #f7f7f4;
    --text: #74746f;
    padding: 6rem 0;
    background: var(--light);
}

/*
 * * =========================
 * * Left Content
 * * =========================
 */

.how-it-works__content {
    position: relative;
}

.how-it-works__label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    margin-bottom: 1.5rem;
    background: var(--white);
    color: var(--primary);
    border-radius: 50rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.how-it-works__label-dot {
    width: 0.45rem;
    height: 0.45rem;
    flex: 0 0 0.45rem;
    background: var(--accent);
    border-radius: 50%;
}

.how-it-works__title {
    max-width: 38rem;
    margin-bottom: 1.75rem;
    color: var(--primary);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 700;
}

.how-it-works__description {
    max-width: 35rem;
    margin-bottom: 2rem;
    color: var(--text);
    font-size: 1rem;
}

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

.how-it-works__image {
    position: relative;
    max-width: 36rem;
    margin-top: 1rem;
}

.how-it-works__image img {
    display: block;
    width: 100%;
    height: 25rem;
    object-fit: contain;
}

/*
 * * =========================
 * * Steps
 * * =========================
 */

.how-it-works__steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/*
 * * =========================
 * * Step Card
 * * =========================
 */

.how-it-works__step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 2rem 2.2rem;
    background: var(--white);
    border: 1px solid rgba(46, 41, 16, 0.04);
    border-radius: 1.8rem;
    overflow: hidden;
    transition: transform 0.35s ease,
 box-shadow 0.35s ease,
 background 0.35s ease;
}

.how-it-works__step:hover {
    transform: translateX(0.5rem);
    box-shadow: 0 1rem 2.5rem rgba(46, 41, 16, 0.08);
}

/*
 * * =========================
 * * Number
 * * =========================
 */

.how-it-works__number {
    width: 3.3rem;
    height: 3.3rem;
    flex: 0 0 3.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 800;
    transition: transform 0.35s ease,
 background 0.35s ease,
 color 0.35s ease;
}

.how-it-works__step:hover .how-it-works__number {
    transform: rotate(-8deg) scale(1.05);
    background: var(--primary);
    color: var(--accent);
}

/*
 * * =========================
 * * Step Content
 * * =========================
 */

.how-it-works__step-content {
    flex: 1;
}

.how-it-works__step-title {
    margin-bottom: 0.65rem;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 700;
}

.how-it-works__step-content p {
    max-width: 27rem;
    margin: 0;
    color: var(--text);
    font-size: 0.9rem;
}

/*
 * * =========================
 * * Decorative Hover Line
 * * =========================
 */

.how-it-works__step::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.25rem;
    background: var(--accent);
    transition: width 0.4s ease;
}

.how-it-works__step:hover::after {
    width: 100%;
}

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

/*
 * * =========================
 * * FAQ Section
 * * =========================
 */

.faq-section {
    --primary: #2e2910;
    --accent: #fcaf2f;
    --white: #ffffff;
    --light: #f7f7f4;
    --text: #74746f;
    --border: #e9e7df;
    padding: 6rem 0;
    background: var(--light);
}

/*
 * * =========================
 * * Left Side
 * * =========================
 */

.faq-section__left {
    display: flex;
    flex-direction: column;
}

.faq-section__label {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    margin-bottom: 1.5rem;
    background: var(--white);
    border-radius: 50rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.faq-section__dot {
    width: 0.45rem;
    height: 0.45rem;
    background: var(--accent);
    border-radius: 50%;
}

.faq-section__title {
    max-width: 32rem;
    margin: 0 0 3rem;
    color: var(--primary);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
}

/*
 * * =========================
 * * Contact Box
 * * =========================
 */

.faq-section__contact {
    margin-top: auto;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
}

.faq-section__contact-title {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.faq-section__contact p {
    max-width: 30rem;
    margin-bottom: 1.8rem;
    color: var(--text);
    font-size: 1rem;
}

/*
 * * =========================
 * * FAQ Button
 * * =========================
 */

.faq-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.45rem 0.45rem 0.45rem 1.4rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s ease,
 background 0.3s ease;
}

.faq-section__btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-0.2rem);
}

.faq-section__btn-icon {
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    transition: transform 0.35s ease;
}

.faq-section__btn:hover .faq-section__btn-icon {
    transform: rotate(45deg);
}

/*
 * * =========================
 * * Accordion
 * * =========================
 */

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    overflow: hidden;
}

.faq-accordion .accordion-header {
    margin: 0;
}

.faq-accordion .accordion-button {
    position: relative;
    padding: 1.8rem 5rem 1.8rem 2rem;
    background: var(--white);
    color: var(--primary);
    box-shadow: none;
    font-size: 1.15rem;
    font-weight: 700;
}

/* * Remove Bootstrap default arrow */

.faq-accordion .accordion-button::after {
    display: none;
}

/* * Custom Circle Arrow */

.faq-accordion .accordion-button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.7rem;
    width: 2.8rem;
    height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    background: var(--light);
    color: var(--primary);
    border-radius: 50%;
    font-family: "Font Awesome 6 Free";
    font-size: 0.8rem;
    font-weight: 900;
    transition: transform 0.35s ease,
 background 0.35s ease,
 color 0.35s ease;
}

/* * Open State */

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary);
}

.faq-accordion .accordion-button:not(.collapsed)::before {
    content: "";
    background: var(--accent);
    color: var(--primary);
}

/* * Answer */

.faq-accordion .accordion-body {
    max-width: 42rem;
    padding: 0 5rem 1.8rem 2rem;
    color: var(--text);
    font-size: 1rem;
}

/* * Hover */

.faq-accordion .accordion-item {
    transition: transform 0.3s ease,
 box-shadow 0.3s ease,
 border-color 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    transform: translateX(0.25rem);
    border-color: rgba(252, 175, 47, 0.5);
    box-shadow: 0 0.8rem 2rem rgba(46, 41, 16, 0.05);
}

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

.garage-showcase {
    --primary: #2e2910;
    --accent: #fcaf2f;
    --white: #ffffff;
    padding: 1rem 0;
    background: #f7f7f4;
}

/*
 * * =========================
 * * Garage Showcase
 * * =========================
 */

.garage-showcase {
    --primary: #2e2910;
    --accent: #fcaf2f;
    --white: #ffffff;
    --light: #f7f7f4;
    padding: 1rem 0;
    background: var(--light);
}

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

.garage-showcase__wrapper {
    position: relative;
    min-height: 43rem;
    display: flex;
    align-items: stretch;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1.8rem;
    overflow: hidden;
}

/*
 * * =========================
 * * Overlay
 * * =========================
 */

.garage-showcase__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
 180deg,
 rgba(8, 8, 8, 0.25) 0%,
 rgba(8, 8, 8, 0.5) 45%,
 rgba(8, 8, 8, 0.92) 100%
 );
}

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

.garage-showcase__content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 7rem 5rem 0;
}

/*
 * * =========================
 * * Center
 * * =========================
 */

.garage-showcase__center {
    max-width: 55rem;
    margin: auto auto 4rem;
    text-align: center;
}

/*
 * * =========================
 * * Circle Button
 * * =========================
 */

.garage-showcase__circle-btn {
    position: relative;
    width: 10rem;
    height: 10rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    background: var(--accent);
    border-radius: 50%;
    overflow: hidden;
    text-decoration: none;
    transform: scale(1);
    transition: transform 0.35s ease,
 background 0.35s ease,
 box-shadow 0.35s ease;
}

.garage-showcase__circle-btn:hover {
    transform: scale(1.06);
    background: var(--accent);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18);
}

/*
 * * =========================
 * * Circular SVG Text
 * * =========================
 */

.garage-showcase__circle-text {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    pointer-events: none;
}

/* * SVG Text */

.garage-showcase__circle-text text,
.garage-showcase__svg-text {
    fill: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/*
 * * =========================
 * * Center Circle
 * * =========================
 */

.garage-showcase__play {
    position: relative;
    z-index: 3;
    width: 5rem;
    height: 5rem;
    flex: 0 0 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: transform 0.35s ease,
 background 0.35s ease,
 color 0.35s ease;
}

.garage-showcase__circle-btn:hover
.garage-showcase__play {
    transform: rotate(45deg);
    background: var(--primary);
    color: var(--accent);
}

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

.garage-showcase__title {
    margin: 0;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
}

/*
 * * =========================
 * * Features Container
 * * =========================
 */

.garage-showcase__features {
    width: 100%;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

/*
 * * =========================
 * * Feature
 * * =========================
 */

.garage-showcase__feature {
    min-height: 8rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.5rem 2rem;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.35s ease,
 padding-left 0.35s ease;
}

.garage-showcase__features
.row
> div:last-child
.garage-showcase__feature {
    border-right: 0;
}

.garage-showcase__feature:hover {
    padding-left: 2.4rem;
    background: rgba(255, 255, 255, 0.08);
}

/*
 * * =========================
 * * Feature Arrow
 * * =========================
 */

.garage-showcase__feature-icon {
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 1.4rem;
    transition: transform 0.35s ease;
}

.garage-showcase__feature:hover
.garage-showcase__feature-icon {
    transform: translate(0.25rem, -0.25rem);
}

/*
 * * =========================
 * * Feature Text
 * * =========================
 */

.garage-showcase__feature-text {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
}

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

/*
 * * =========================
 * * Testimonials Section
 * * =========================
 */

.testimonials-section {
    --primary: #2e2910;
    --accent: #fcaf2f;
    --white: #ffffff;
    --light: #f7f7f4;
    --text: #74746f;
    --border: #e8e6de;
    padding: 1rem 0;
    background: var(--light);
}

.testimonials-section__wrapper {
    position: relative;
    padding: 5.5rem 0;
    background: var(--white);
    border-radius: 2rem;
    overflow: hidden;
}

/*
 * * =========================
 * * Left Visual
 * * =========================
 */

.testimonials-section__visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    min-height: 36rem;
}

/*
 * * =========================
 * * Vertical Rating
 * * =========================
 */

.testimonials-section__rating {
    width: 6.5rem;
    flex: 0 0 6.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.testimonials-section__rating-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.testimonials-section__rating-text span:last-child {
    color: var(--text);
    font-weight: 400;
}

.testimonials-section__rating-line {
    width: 1px;
    height: 5rem;
    display: block;
    background: var(--border);
}

.testimonials-section__score {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.testimonials-section__score-number {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 500;
}

.testimonials-section__stars {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    color: var(--accent);
    font-size: 0.85rem;
}

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

.testimonials-section__image {
    width: min(100%, 27rem);
    height: 40rem;
    border-radius: 1.8rem;
    overflow: hidden;
}

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

.testimonials-section__image:hover img {
    transform: scale(1.05);
}

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

.testimonials-section__content {
    max-width: 42rem;
}

/* * Label */

.testimonials-section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1rem;
    margin-bottom: 1.5rem;
    background: var(--light);
    border-radius: 50rem;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.testimonials-section__label-dot {
    width: 0.45rem;
    height: 0.45rem;
    background: var(--accent);
    border-radius: 50%;
}

/* * Heading */

.testimonials-section__title {
    max-width: 39rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
}

/*
 * * =========================
 * * Quote Icon
 * * =========================
 */

.testimonials-section__quote-icon {
    height: 5.5rem;
    display: flex;
    align-items: center;
    color: var(--accent);
    font-size: 5.5rem;
}

.testimonials-section__quote-icon i {
    line-height: 1;
}

/*
 * * =========================
 * * Swiper
 * * =========================
 */

.testimonials-swiper {
    width: 100%;
    overflow: hidden;
}

.testimonial-slide {
    width: 100%;
}

.testimonial-slide__text {
    min-height: 10rem;
    margin: 0;
    padding-bottom: 2rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    font-size: 1.08rem;
}

/*
 * * =========================
 * * Author
 * * =========================
 */

.testimonial-slide__footer {
    padding-top: 1.8rem;
}

.testimonial-slide__author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-slide__avatar {
    width: 3.5rem;
    height: 3.5rem;
    flex: 0 0 3.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-slide__avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.testimonial-slide__name {
    margin-bottom: 0.2rem;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.testimonial-slide__role {
    color: var(--text);
    font-size: 0.9rem;
}

/*
 * * =========================
 * * Bottom
 * * =========================
 */

.testimonials-section__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* * Counter */

.testimonials-section__counter {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    color: var(--text);
    font-size: 0.9rem;
}

.testimonials-section__current {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
}

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

.testimonials-section__navigation {
    display: flex;
    gap: 0.7rem;
}

.testimonials-section__nav {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 0.8rem;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s ease,
 color 0.3s ease,
 border-color 0.3s ease,
 transform 0.3s ease;
}

.testimonials-section__nav:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-0.15rem);
}

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

.testimonials-swiper .swiper-slide {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonials-swiper .swiper-slide-active {
    opacity: 1;
}

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

/* * footer */

/*
 * * =========================
 * * Site Footer
 * * =========================
 */

.site-footer {
    --primary: #2e2910;
    --accent: #fcaf2f;
    --white: #ffffff;
    --footer-bg: #101010;
    --footer-soft: #20201f;
    --footer-text: rgba(255, 255, 255, 0.65);
    --footer-border: rgba(255, 255, 255, 0.12);
    position: relative;
    padding: 7rem 0 1rem;
    background: #f7f7f4;
}

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

.site-footer__wrap {
    position: relative;
    padding: 8rem 0 2rem;
    background: var(--footer-bg);
    border-radius: 2rem;
    overflow: visible;
}

/* * Roof Tile Pattern */

.site-footer__wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0.5;
    background: radial-gradient(
 ellipse at 50% 0,
 transparent 0 58%,
 rgba(255, 255, 255, 0.035) 59% 61%,
 transparent 62%
 );
    background-size: 14rem 11rem;
    z-index: 0;
}

.site-footer__main {
    position: relative;
    z-index: 2;
}

/*
 * * =========================
 * * Floating Promo
 * * =========================
 */

.site-footer__promo {
    position: absolute;
    top: -5rem;
    left: 50%;
    z-index: 10;
    width: min(56rem, calc(100% - 3rem));
    min-height: 8.5rem;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    transform: translateX(-50%);
    background: var(--accent);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.16);
}

/* * Left */

.site-footer__promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 2rem 2.2rem;
    background: var(--accent);
}

.site-footer__promo-content::after {
    content: "";
    position: absolute;
    top: -2rem;
    right: -2.2rem;
    width: 5rem;
    height: calc(100% + 4rem);
    background: var(--accent);
    transform: skewX(-29deg);
    z-index: -1;
}

.site-footer__promo-content::before {
    content: "";
    position: absolute;
    top: -2rem;
    right: -3.4rem;
    width: 0.6rem;
    height: calc(100% + 4rem);
    background: var(--white);
    transform: skewX(-29deg);
}

.site-footer__promo-title {
    color: var(--primary);
    font-size: clamp(1.05rem, 1.52vw, 1.6rem);
    font-weight: 700;
}

/* * Right Image */

.site-footer__promo-image {
    position: relative;
    min-height: 8.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem 1.8rem;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.site-footer__promo-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
 90deg,
 rgba(46, 41, 16, 0.05),
 rgba(46, 41, 16, 0.35)
 );
}

/* * Promo Button */

.site-footer__promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.4rem 0.4rem 0.4rem 1.15rem;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50rem;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: transform 0.3s ease,
 background 0.3s ease;
}

.site-footer__promo-btn span {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.site-footer__promo-btn:hover {
    color: var(--primary);
    transform: translateY(-0.2rem);
}

.site-footer__promo-btn:hover span {
    transform: rotate(45deg);
}

/*
 * * =========================
 * * Footer Columns
 * * =========================
 */

.footer-col {
    position: relative;
    height: 100%;
    padding-right: 1rem;
}

.footer-col--border {
    padding-left: 1.5rem;
    border-left: 1px solid var(--footer-border);
}

.footer-col__title {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-col__head {
    color: var(--white);
    font-size: 1.9rem;
    font-weight: 700;
}

.footer-col__text {
    max-width: 19rem;
    margin-bottom: 1.6rem;
    color: var(--footer-text);
    font-size: 1rem;
}

/*
 * * =========================
 * * Appointment Button
 * * =========================
 */

.footer-col__appointment {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.4rem 0.4rem 0.4rem 1.2rem;
    background: #242423;
    color: var(--white);
    border: 1px solid var(--footer-border);
    border-radius: 50rem;
    text-decoration: none;
    transition: border-color 0.3s ease,
 color 0.3s ease;
}

.footer-col__appointment span {
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-col__appointment:hover {
    color: var(--white);
    border-color: var(--accent);
}

.footer-col__appointment:hover span {
    transform: rotate(45deg);
}

/*
 * * =========================
 * * Footer Links
 * * =========================
 */

.footer-col__links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col__links li a {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--footer-text);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease,
 transform 0.3s ease;
}

.footer-col__links li a span {
    width: 0.4rem;
    height: 0.4rem;
    flex: 0 0 0.4rem;
    background: var(--accent);
    border-radius: 50%;
}

.footer-col__links li a:hover {
    color: var(--accent);
    transform: translateX(0.25rem);
}

/*
 * * =========================
 * * Address
 * * =========================
 */

.footer-col__address,
.footer-col__value,
.footer-col__email {
    color: var(--footer-text);
    font-size: 0.95rem;
}

.footer-col__line {
    width: 100%;
    max-width: 14rem;
    height: 1px;
    margin: 1.2rem 0;
    background: var(--footer-border);
}

.footer-col__mini-title {
    margin-bottom: 0.35rem;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-col__mini-title--space {
    margin-top: 1rem;
}

.footer-col__value--link,
.footer-col__email {
    display: block;
    width: fit-content;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col__email {
    margin-top: 0.35rem;
    overflow-wrap: anywhere;
}

.footer-col__value--link:hover,
.footer-col__email:hover {
    color: var(--accent);
}

/*
 * * =========================
 * * Middle Bar
 * * =========================
 */

.site-footer__middle {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0rem;
    margin-top: 3.5rem;
    padding: .25rem .5rem;
    background: var(--footer-soft);
    border-radius: 1rem;
}

.site-footer__middle iframe {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
}

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

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.site-footer__social a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #343433;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease,
 background 0.3s ease,
 color 0.3s ease;
}

.site-footer__social a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-0.2rem);
}

/*
 * * =========================
 * * Hours
 * * =========================
 */

.site-footer__hours {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    color: var(--footer-text);
    font-size: 0.85rem;
}

.site-footer__hours span {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

/*
 * * =========================
 * * Bottom
 * * =========================
 */

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.25rem;
}

.site-footer__bottom p {
    margin: 0;
    color: var(--footer-text);
    font-size: 0.85rem;
}

.site-footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.site-footer__bottom-links a {
    color: var(--footer-text);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer__bottom-links a:hover {
    color: var(--accent);
}

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

/*
 * * =========================
 * * Brands Marquee
 * * =========================
 */

.brands-marquee {
    padding: 2.5rem 0;
    background: #f7f7f4;
    overflow: hidden;
}

.brands-marquee__inner {
    position: relative;
    overflow: hidden;
}

.brands-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: brandsMarquee 24s linear infinite;
}

.brands-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brands-marquee__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
}

.brands-marquee__item img {
    max-width: 100%;
    width: auto;
    height: 3.75rem;
    display: block;
    object-fit: contain;
    opacity: 0.45;
    filter: grayscale(0.01);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.brands-marquee__item:hover img {
    opacity: 0.7;
    filter: grayscale(0);
    transform: translateY(-0.15rem);
}

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

@keyframes brandsMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

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

.garage-solutions {
    --primary: #9b806d;
    --dark: #24272d;
    --text: #696b70;
    --border: #dedede;
    --white: #ffffff;
    padding: 4rem 0;
    background: #fff;
}

.garage-solutions .container-fluid {
    /* max-width: 1540px; */
    padding-inline: 3rem !important;
}

/*
 * * ==============================
 * * ITEM
 * * ==============================
 */

.garage-solutions__item {
    position: relative;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
}

.garage-solutions__item:last-child {
    border-bottom: 1px solid var(--border);
}

/*
 * * ==============================
 * * LEFT HEADING
 * * ==============================
 */

.garage-solutions__heading {
    max-width: 270px;
}

.garage-solutions__heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.garage-solutions__small-number {
    display: none;
}

/*
 * * ==============================
 * * IMAGE
 * * ==============================
 */

.garage-solutions__image {
    position: relative;
    overflow: visible;
    max-width: 100%;
}

.garage-solutions__image img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

/*
 * * ==============================
 * * ITEM + DIVIDER
 * * ==============================
 */

.garage-solutions__item {
    position: relative;
    padding: 2.5rem 0;
}

/* * Divider */

.garage-solutions__item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--border);
    transition: background-color 0.35s ease,
 height 0.35s ease;
}

/* * Green divider on hover */

.garage-solutions__item:hover::after {
    height: 2px;
    background-color: var(--green);
}

/*
 * * ==============================
 * * LEFT TITLE
 * * ==============================
 */

.garage-solutions__heading {
    max-width: 270px;
}

.garage-solutions__heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: 1.45rem;
    font-weight: 700;
}

/*
 * * ==============================
 * * IMAGE
 * * ==============================
 */

.garage-solutions__image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.garage-solutions__image img {
    display: block;
    width: 100%;
    height: 256px;
    object-fit: cover;
    transition: transform 0.55s ease,
 filter 0.55s ease;
}

/* * Image hover */

.garage-solutions__item:hover .garage-solutions__image img {
    transform: scale(1.06);
    transition: all 500ms ease;
}

/*
 * * ==============================
 * * NUMBER
 * * ==============================
 */

.garage-solutions__number {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    min-height: 68px;
    padding: 0.5rem 1rem;
    color: var(--white);
    background: rgba(128, 104, 88, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    font-size: 2.7rem;
    font-weight: 400;
    backdrop-filter: blur(5px);
    transition: background-color 0.35s ease,
 transform 0.35s ease;
}

/* * Number hover */

.garage-solutions__item:hover .garage-solutions__number {
    background-color: var(--green);
    transform: translateY(-5px);
}

/*
 * * ==============================
 * * CONTENT
 * * ==============================
 */

.garage-solutions__content {
    max-width: 360px;
    margin-left: auto;
}

.garage-solutions__content p {
    margin: 0 0 0.1rem;
    color: var(--text);
    font-size: 0.8rem;
}

.garage-solutions__content p:last-of-type {
    margin-bottom: 0rem;
}

/*
 * * ==============================
 * * TABLET
 * * ==============================
 */

/*
 * * ==============================
 * * MOBILE
 * * ==============================
 */

/*
 * * ==============================
 * * NUMBER
 * * ==============================
 */

.garage-solutions__number {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    min-height: 68px;
    padding: 0.5rem 1rem;
    color: var(--white);
    background: rgba(128, 104, 88, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    font-size: 2.7rem;
    font-weight: 400;
    backdrop-filter: blur(5px);
}

/*
 * * ==============================
 * * CONTENT
 * * ==============================
 */

.garage-solutions__content {
    max-width: 4000px;
    margin-left: auto;
}

.garage-solutions__content p {
    margin: 0 0 1rem;
    color: var(--text);
    font-size: 1rem;
}

.garage-solutions__content p:last-of-type {
    margin-bottom: 1.8rem;
}

/*
 * * ==============================
 * * VIEW DETAILS
 * * ==============================
 */

.garage-solutions__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.7rem;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.garage-solutions__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #d5d5d5;
    transition: width 0.3s ease,
 background 0.3s ease;
}

.garage-solutions__link span {
    display: inline-flex;
    font-size: 1.65rem;
    transition: transform 0.3s ease;
}

.garage-solutions__link:hover {
    color: var(--primary);
}

.garage-solutions__link:hover::after {
    background: var(--primary);
}

.garage-solutions__link:hover span {
    transform: translateX(6px);
}

/*
 * * ==============================
 * * LARGE DESKTOP
 * * ==============================
 */

/*
 * * ==============================
 * * TABLET
 * * ==============================
 */

/*
 * * ==============================
 * * MOBILE
 * * ==============================
 */

/*
 * * ==============================
 * * SMALL MOBILE
 * * ==============================
 */

.why-choose-us {
    --primary: #22a565;
    --dark: #111318;
    --text: #686b70;
    --light: #f7f8f7;
    --border: #dedfdf;
    --white: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    background: #f8f9f8;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    left: -90px;
    top: -80px;
    width: 420px;
    height: 650px;
    opacity: 0.035;
    transform: rotate(-20deg);
    background: repeating-linear-gradient(
 90deg,
 var(--dark) 0,
 var(--dark) 20px,
 transparent 20px,
 transparent 37px
 );
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

/*
 * * ===================================
 * * IMAGE
 * * ===================================
 */

.why-choose-us__media {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.why-choose-us__main-image {
    display: block;
    width: 100%;
    height: 725px;
    object-fit: cover;
    border-radius: 32px;
}

/*
 * * ===================================
 * * IMAGE BADGE
 * * ===================================
 */

.why-choose-us__experience {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 225px;
    padding: 1rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

.why-choose-us__experience-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--white);
    background: var(--primary);
    border-radius: 50%;
    font-size: 1rem;
}

.why-choose-us__experience-title {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.why-choose-us__experience-text {
    display: block;
    font-size: 0.8rem;
}

/*
 * * ===================================
 * * RIGHT CONTENT
 * * ===================================
 */

.why-choose-us__content {
    position: relative;
    padding-left: 3rem;
    border-left: 1px solid var(--primary);
}

.why-choose-us__label {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 1rem;
    padding: 0.25rem 0.1rem;
    color: var(--dark);
    background: var(--white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.why-choose-us__label > span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.why-choose-us__label i {
    color: var(--primary);
    font-size: 0.8rem;
}

.why-choose-us__content h2 {
    max-width: 650px;
    margin: 0 0 .5rem;
    color: var(--dark);
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 700;
}

.why-choose-us__intro {
    max-width: 670px;
    margin: 0 0 1rem;
    color: var(--text);
    font-size: 1rem;
}

/*
 * * ===================================
 * * CHECKLIST BOX
 * * ===================================
 */

.why-choose-us__box {
    position: relative;
    padding: 1.5rem 1.1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 22px;
}

.why-choose-us__box ul {
    list-style: none;
    margin: 0;
    padding: 0 0.5rem;
}

.why-choose-us__box li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 1.15rem;
}

.why-choose-us__box li:last-child {
    margin-bottom: 0;
}

.why-choose-us__box li > i {
    margin-top: 0.2rem;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 0.9rem;
}

.why-choose-us__box li > div {
    display: flex;
    flex-direction: column;
}

.why-choose-us__box .item-title {
    display: block;
    margin-bottom: 0.1rem;
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.why-choose-us__box .item-text {
    display: block;
    color: var(--text);
    font-size: 0.8rem;
}

/*
 * * ===================================
 * * BOTTOM
 * * ===================================
 */

.why-choose-us__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* * Button */

.why-choose-us__btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.4rem 0.3rem 0.4rem 1.3rem;
    color: var(--white);
    background: var(--primary);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease,
 transform 0.3s ease;
}

.why-choose-us__btn span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    color: var(--primary);
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.why-choose-us__btn:hover {
    color: var(--white);
    background: var(--dark);
    transform: translateY(-2px);
}

.why-choose-us__btn:hover span {
    transform: rotate(45deg);
}

/* * Trust */

.why-choose-us__trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
}

.why-choose-us__trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--white);
    background: var(--dark);
    border-radius: 50%;
}

.why-choose-us__trust div {
    display: flex;
    flex-direction: column;
}

.why-choose-us__trust div > span {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.why-choose-us__trust small {
    color: var(--text);
    font-size: 0.7rem;
}

/*
 * * ===================================
 * * HOVER
 * * ===================================
 */

.why-choose-us__media {
    overflow: hidden;
    border-radius: 32px;
}

.why-choose-us__main-image {
    transition: transform 0.6s ease;
}

.why-choose-us__media:hover .why-choose-us__main-image {
    transform: scale(1.04);
}

.why-choose-us__box {
    transition: border-color 0.3s ease,
 background-color 0.3s ease;
}

.why-choose-us__box:hover {
    border-color: var(--primary);
    background: var(--white);
}

/*
 * * ===================================
 * * TABLET
 * * ===================================
 */

/*
 * * ===================================
 * * MOBILE
 * * ===================================
 */

/*
 * * ===================================
 * * SMALL MOBILE
 * * ===================================
 */

.garage-offers {
    --primary: #20a464;
    --primary-soft: #edf8f2;
    --text: #686b70;
    --light: #f4f4f4;
    --border: #e0e1e0;
    --white: #ffffff;
    padding: 6rem 0;
    background: #f7f8f7;
}

/*
 * * =========================================
 * * HEADING
 * * =========================================
 */

.garage-offers__heading {
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.garage-offers__label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.45rem 1rem;
    color: var(--primary);
    background: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.garage-offers__heading h2 {
    margin: 0 0 1rem;
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
}

.garage-offers__heading p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text);
    font-size: 1rem;
}

/*
 * * =========================================
 * * CARD
 * * =========================================
 */

.garage-offers__card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    transition: transform 0.35s ease,
 box-shadow 0.35s ease,
 border-color 0.35s ease;
}

.garage-offers__card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/*
 * * =========================================
 * * TOP
 * * =========================================
 */

.garage-offers__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.garage-offers__name {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.garage-offers__badge {
    flex-shrink: 0;
    padding: 0.55rem 0.9rem;
    color: var(--text);
    background: var(--light);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/*
 * * =========================================
 * * PRICE
 * * =========================================
 */

.garage-offers__price {
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.garage-offers__amount {
    color: var(--dark);
    font-size: clamp(3rem, 5vw, 4.3rem);
    font-weight: 500;
}

.garage-offers__off {
    margin-bottom: 0.7rem;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
}

/*
 * * =========================================
 * * DESCRIPTION
 * * =========================================
 */

.garage-offers__description {
    min-height: 48px;
    margin: 0 0 1.7rem;
    color: var(--text);
    font-size: 1rem;
}

/*
 * * =========================================
 * * INNER OFFER AREA
 * * =========================================
 */

.garage-offers__details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-height: 205px;
    padding: 1.8rem;
    background: linear-gradient(
 180deg,
 var(--primary-soft) 0%,
 rgba(255, 255, 255, 0.8) 100%
 );
    border-radius: 24px;
    transition: background-color 0.35s ease,
 transform 0.35s ease;
}

/*
 * * =========================================
 * * OFFER TEXT
 * * =========================================
 */

.garage-offers__offer-text {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #3f4241;
    font-size: 1rem;
    font-weight: 600;
}

.garage-offers__check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    margin-top: 0.1rem;
    flex-shrink: 0;
    color: var(--white);
    background: var(--primary);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
}

.garage-offers__offer-text > span:last-child {
    display: block;
}

/*
 * * =========================================
 * * BUTTON
 * * =========================================
 */

.garage-offers__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
    margin-top: auto;
    padding: 0.9rem 1.2rem;
    color: var(--dark);
    background: #eeeeee;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease,
 background-color 0.3s ease,
 transform 0.3s ease;
}

.garage-offers__arrow {
    display: inline-block;
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.garage-offers__btn:hover {
    color: var(--white);
    background: var(--primary);
}

.garage-offers__btn:hover .garage-offers__arrow {
    transform: translateX(5px);
}

/*
 * * =========================================
 * * FEATURED BLACK CARD
 * * =========================================
 */

.garage-offers__card--featured {
    background: var(--dark);
    border-color: var(--dark);
}

.garage-offers__card--featured:hover {
    border-color: var(--primary);
}

.garage-offers__card--featured .garage-offers__name,
.garage-offers__card--featured .garage-offers__amount,
.garage-offers__card--featured .garage-offers__off {
    color: var(--white);
}

.garage-offers__card--featured .garage-offers__badge {
    color: var(--white);
    background: #333533;
}

.garage-offers__card--featured .garage-offers__description {
    color: #b9b9b9;
}

.garage-offers__card--featured .garage-offers__details {
    background: linear-gradient(
 180deg,
 #303230 0%,
 #ade0ad 100%
 );
}

.garage-offers__card--featured .garage-offers__offer-text {
    color: var(--white);
}

.garage-offers__card--featured .garage-offers__btn {
    color: var(--dark);
    background: var(--white);
}

.garage-offers__card--featured .garage-offers__btn:hover {
    color: var(--white);
    background: var(--primary);
}

/*
 * * =========================================
 * * CARD HOVER
 * * =========================================
 */

.garage-offers__card:hover .garage-offers__details {
    transform: translateY(-3px);
}

.garage-offers__card:not(.garage-offers__card--featured):hover
.garage-offers__details {
    background: linear-gradient(
 180deg,
 #e4f5ec 0%,
 #ffffff 100%
 );
}

/*
 * * =========================================
 * * TABLET
 * * =========================================
 */

/*
 * * =========================================
 * * MOBILE
 * * =========================================
 */

/*
 * * =========================================
 * * SMALL MOBILE
 * * =========================================
 */

.professional-service-section {
    --dark: #2E2910;
    --green: #2C5745;
    --beige: #EBE3A7;
    --orange: #EB7D00;
    --white: #ffffff;
    --body-bg: #f7f6ee;
    padding: 1.5rem 0 5rem;
    /* background: var(--body-bg); */
}

/*
 * * =====================================
 * * OUTER WRAPPER
 * * =====================================
 */

.professional-service-section__wrapper {
    max-width: 1900px;
    margin: 0 auto;
    overflow: hidden;
    background: var(--white);
    border-radius: 28px;
}

/*
 * * =====================================
 * * FIRST ROW
 * * =====================================
 */

.professional-service-section__content {
    position: relative;
    padding: 5.5rem 0;
    background: var(--white);
}

/*
 * * =====================================
 * * HEADING
 * * =====================================
 */

.professional-service-section h2 {
    max-width: 590px;
    margin: 0;
    color: var(--dark);
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-weight: 700;
}

/* * Heading accent */

.professional-service-section h2::after {
    content: "";
    display: block;
    width: 350px;
    height: 4px;
    margin-top: 1.5rem;
    background: var(--green);
    border-radius: 20px;
}

/*
 * * =====================================
 * * TEXT
 * * =====================================
 */

.professional-service-section__text {
    max-width: 620px;
    margin-left: auto;
    padding-left: 2rem;
    border-left: 1px solid var(--beige);
}

.professional-service-section__text p {
    margin: 0 0 1.25rem;
    color: var(--dark);
    font-size: 1rem;
}

.professional-service-section__text p:last-child {
    margin-bottom: 0;
}

/*
 * * =====================================
 * * IMAGE
 * * =====================================
 */

.professional-service-section__media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--green);
}

/* * Overlay */

.professional-service-section__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
 180deg,
 rgba(46, 41, 16, 0) 45%,
 rgba(46, 41, 16, 0.28) 100%
 );
    transition: background 0.5s ease;
}

/* * Image */

.professional-service-section__media img {
    display: block;
    width: 100%;
    height: 600px;
    
    object-fit: cover;
    transition: transform 0.7s ease,
 filter 0.7s ease;
}

/*
 * * =====================================
 * * HOVER
 * * =====================================
 */

.professional-service-section__media:hover img {
    transform: scale(1.035);
}

.professional-service-section__media:hover::after {
    background: linear-gradient(
 180deg,
 rgba(44, 87, 69, 0.05) 30%,
 rgba(46, 41, 16, 0.38) 100%
 );
}

/*
 * * =====================================
 * * OPTIONAL GREEN DIVIDER
 * * =====================================
 */

.professional-service-section__content::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 300%;
    height: 2px;
    background: var(--green);
}

/*
 * * =====================================
 * * TABLET
 * * =====================================
 */

/*
 * * =====================================
 * * MOBILE
 * * =====================================
 */

/*
 * * =====================================
 * * SMALL MOBILE
 * * =====================================
 */

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

.contact-section {
    padding: 6rem 0;
    background: var(--body-bg);
}

.contact-section__content {
    height: 100%;
}

.contact-section__label {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    margin-bottom: 1.8rem;
    background: var(--white);
    color: var(--dark);
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-section__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--orange);
}

.contact-section__title {
    max-width: 38rem;
    margin-bottom: 1.4rem;
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}

.contact-section__text {
    max-width: 39rem;
    margin-bottom: 2.5rem;
    color: #69675d;
    font-size: 1rem;
}

.contact-section__media {
    position: relative;
    min-height: 25rem;
    overflow: hidden;
    border-radius: 2rem;
}

.contact-section__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-section__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
 180deg,
 rgba(46, 41, 16, 0.05) 10%,
 rgba(46, 41, 16, 0.88) 100%
 );
}

.contact-section__overlay {
    position: absolute;
    z-index: 2;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-section__info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.contact-section__info:hover {
    color: var(--beige);
}

.contact-section__info:hover .contact-section__icon {
    background: var(--beige);
    color: var(--dark);
    transform: translateY(-0.15rem);
}

.contact-section__icon {
    display: inline-flex;
    flex: 0 0 3.2rem;
    width: 3.2rem;
    height: 3.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 1.1rem;
    transition: 0.3s;
}

.contact-section__info-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-section__info-label {
    margin-bottom: 0.15rem;
    color: var(--beige);
    font-size: 0.9rem;
}

.contact-section__info-value {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-section__email {
    overflow-wrap: anywhere;
}

.contact-section__divider {
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.contact-section__form-wrap {
    height: 100%;
    padding: clamp(1.6rem, 4vw, 3.5rem);
    background: var(--white);
    border-radius: 2rem;
    box-shadow: 0 1.5rem 4rem rgba(46, 41, 16, 0.07);
}

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

.contact-form {
    height: 100%;
}

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

/* * Hidden spam field */

.contact-form .subject {
    display: none;
}

.contact-form__group {
    height: 100%;
}

.contact-form__group label {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
    width: 100%;
    border: 1px solid #deddd5;
    outline: 0;
    background: var(--white);
    color: var(--dark);
    font-size: 1rem;
    transition: 0.25s;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
    color: #8b897f;
}

.contact-form__group input:focus,
.contact-form__group select:focus,
.contact-form__group textarea:focus {
    border-color: var(--green);
    background: #fffef8;
    box-shadow: 0 0 0 0.25rem rgba(44, 87, 69, 0.1);
}

.contact-form__group input,
.contact-form__group select {
    min-height: 2.4rem;
    padding: 0 1rem;
    border-radius: 0.7rem;
}

.contact-form__group textarea {
    min-height: 5rem;
    padding: 1.1rem 1rem;
    resize: vertical;
    border-radius: 0.7rem;
}

.contact-form__group select {
    cursor: pointer;
}

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

.contact-form__submit {
    display: inline-flex;
    min-height: 3.2rem;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.5rem 0.5rem 1.2rem;
    border: 0;
    border-radius: 2rem;
    background: var(--orange);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form__submit span {
    display: inline-flex;
    width: 2.7rem;
    height: 2.7rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    transition: 0.3s;
}

.contact-form__submit:hover {
    background: var(--green);
    transform: translateY(-0.15rem);
}

.contact-form__submit:hover span {
    background: var(--beige);
    color: var(--dark);
    transform: translateX(0.2rem);
}

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

.subpage-hero {
    --dark: #2e2910;
    --green: #2c5745;
    --beige: #ebe3a7;
    --orange: #eb7d00;
    --white: #ffffff;
    position: relative;
    height: 50vh;
    min-height: 350px;
    margin: 0.5rem 1.2rem 0;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
}

/*
 * * =====================================
 * * OVERLAY
 * * =====================================
 */

.subpage-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
 90deg,
 rgba(15, 31, 32, 0.84) 0%,
 
 rgba(46, 41, 16, 0.8) 50%
 );
}

/*
 * * =====================================
 * * INNER
 * * =====================================
 */

.subpage-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70vh;
    min-height: 350px;
    padding: 2rem 1rem;
}

/*
 * * =====================================
 * * CONTENT
 * * =====================================
 */

.subpage-hero__content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/*
 * * =====================================
 * * H1
 * * =====================================
 */

.subpage-hero h1 {
    margin: 0 0 1.5rem;
    color: var(--white);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 700;
    text-transform: uppercase;
}

/*
 * * =====================================
 * * BREADCRUMB
 * * =====================================
 */

.subpage-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    background: transparent;
}

/* * Remove Bootstrap default separator */

.subpage-hero__breadcrumb .breadcrumb-item::before {
    display: none;
}

/* * Breadcrumb item */

.subpage-hero__breadcrumb .breadcrumb-item {
    margin: 0;
    padding: 0;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
}

/* * Home link */

.subpage-hero__breadcrumb .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.subpage-hero__breadcrumb .breadcrumb-item a:hover {
    color: var(--beige);
}

/* * Current page */

.subpage-hero__breadcrumb .breadcrumb-item.active {
    color: var(--white);
}

/*
 * * =====================================
 * * ARROW
 * * =====================================
 */

.breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.4rem;
    transition: color 0.3s ease,
 transform 0.3s ease;
}

.subpage-hero:hover .breadcrumb-separator {
    color: var(--beige);
    transform: translateX(5px);
}

/*
 * * =====================================
 * * TABLET
 * * =====================================
 */

/*
 * * =====================================
 * * MOBILE
 * * =====================================
 */

/*
 * * =====================================
 * * SMALL MOBILE
 * * =====================================
 */


/* =========================================================
   RESPONSIVE MEDIA QUERIES
   All repeated breakpoints consolidated here
========================================================= */

@media (min-width: 1200px) {
    .garage-solutions__item {
        padding: 2.5rem 0;
    }

    .garage-solutions__image img {
        height: 280px;
    }

    .garage-solutions__heading h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 1199.98px) {
    .about-section__media {
        min-height: 34rem;
    }

    .about-section__content {
        padding-left: 0;
    }

    .about-section__content h2 {
        font-size: 2.8rem;
    }

    .about-section__bottom {
        gap: 1rem;
    }

    .navbar-phone {
        display: none;
    }

    .hero-section__content {
        padding-top: 15rem;
    }

    .roof-feature-card {
        right: 4rem;
        width: 19rem;
    }

    .hero-section h1 {
        font-size: clamp(3.5rem, 7vw, 5.5rem);
    }

    .why-choose-garage-door__item-title {
        font-size: 1.5rem;
    }

    .why-choose-garage-door__item-content {
        max-width: 15rem;
    }

    .garage-showcase__content {
        padding: 6rem 3rem 0;
    }

    .testimonials-section__wrapper {
        padding: 4.5rem 0;
    }

    .testimonials-section__visual {
        gap: 1.3rem;
    }

    .testimonials-section__image {
        height: 33rem;
    }
}

@media (max-width: 991.98px) {
    .about-section {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .about-section__media {
        min-height: 40rem;
        margin-bottom: 1rem;
    }

    .about-section__content {
        max-width: 44rem;
        margin: 0 auto;
    }

    .main-navbar {
        min-height: auto;
    }

    .main-navbar .container {
        position: relative;
        flex-wrap: wrap;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .navbar-toggler {
        display: block;
        margin-left: auto;
    }

    /* * Hide menu by default */

    .navbar-collapse {
        display: none;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding-top: 1.25rem;
    }

    /* * Open menu */

    .nav-toggle:checked ~ .navbar-collapse {
        display: flex;
    }

    /* * Hamburger animation */

    .nav-toggle:checked + .navbar-toggler span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked + .navbar-toggler span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked + .navbar-toggler span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-navbar .navbar-nav {
        display: block;
        width: 100%;
        margin: 0;
    }

    .main-navbar .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(46, 41, 16, 0.08);
    }

    .main-navbar .nav-link {
        width: 100%;
        padding: 1rem 0;
        justify-content: space-between;
        text-align: left;
    }

    /* * Mobile dropdown */

    .main-navbar .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 100%;
        margin: 0 0 0.8rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        border-radius: 0.65rem;
        box-shadow: none;
    }

    .main-navbar .dropdown:hover > .dropdown-menu,
 .main-navbar .dropdown:focus-within > .dropdown-menu {
        display: block;
    }

    .main-navbar .dropdown-item {
        padding: 0.85rem 1rem;
    }

    .navbar-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding-top: 1.5rem;
    }

    .navbar-phone {
        width: 100%;
    }

    .navbar-cta {
        width: 100%;
    }

    .service-card {
        min-height: 31rem;
        padding-bottom: 16.5rem;
    }

    .service-card__image {
        height: 14rem;
    }

    .services-section {
        padding-top: 4.5rem;
    }

    .service-card__text {
        min-height: auto;
    }

    .service-card__image img {
        height: 14rem;
    }

    .main-navbar {
        min-height: auto;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1.5rem;
        background: var(--beige);
        border-radius: 1rem;
    }

    .main-navbar .navbar-nav {
        gap: 0;
    }

    .main-navbar .nav-link {
        padding: 0.7rem !important;
    }

    .navbar-actions {
        margin-top: 1rem;
    }

    .hero-section__wrapper,
 .hero-section__container {
        min-height: 43rem;
    }

    .hero-section__content {
        padding: 13rem 0 15rem;
    }

    .hero-section h1 {
        letter-spacing: -0.2rem;
    }

    .hero-section__divider {
        width: 100%;
    }

    .roof-feature-card {
        right: 2rem;
        bottom: 2rem;
        width: 18rem;
    }

    .why-choose-garage-door {
        padding: 4.5rem 0;
    }

    .why-choose-garage-door__heading {
        margin-bottom: 3rem;
    }

    .why-choose-garage-door__side {
        gap: 2rem;
    }

    .why-choose-garage-door__item,
 .why-choose-garage-door__side--left .why-choose-garage-door__item,
 .why-choose-garage-door__side--right .why-choose-garage-door__item {
        justify-content: flex-start;
        text-align: left;
    }

    .why-choose-garage-door__side--left {
        margin-bottom: 2rem;
    }

    .why-choose-garage-door__side--right {
        margin-top: 2rem;
    }

    .why-choose-garage-door__side--left .why-choose-garage-door__arrow,
 .why-choose-garage-door__side--right .why-choose-garage-door__arrow {
        left: 3.7rem;
        right: auto;
        transform: rotate(14deg);
    }

    .why-choose-garage-door__center {
        margin: 1rem 0;
    }

    .why-choose-garage-door__cta {
        margin-top: 1rem;
    }

    .how-it-works {
        padding: 4.5rem 0;
    }

    .how-it-works__content {
        text-align: center;
    }

    .how-it-works__title,
 .how-it-works__description,
 .how-it-works__image {
        margin-left: auto;
        margin-right: auto;
    }

    .how-it-works__image img {
        height: 22rem;
    }

    .how-it-works__steps {
        margin-top: 1rem;
    }

    .faq-section {
        padding: 4.5rem 0;
    }

    .faq-section__title {
        margin-bottom: 2rem;
    }

    .faq-section__contact {
        margin-top: 0;
    }

    .garage-showcase__wrapper {
        min-height: 45rem;
    }

    .garage-showcase__content {
        padding: 5rem 2rem 0;
    }

    .garage-showcase__center {
        margin-bottom: 3rem;
    }

    .garage-showcase__feature {
        min-height: 6rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .garage-showcase__features
 .row
 > div:nth-child(2)
 .garage-showcase__feature {
        border-right: 0;
    }

    .testimonials-section__visual {
        justify-content: center;
        min-height: auto;
    }

    .testimonials-section__content {
        max-width: 100%;
    }

    .testimonials-section__image {
        width: min(100%, 32rem);
        height: 32rem;
    }

    .testimonials-section__title {
        max-width: 40rem;
    }

    .site-footer {
        padding-top: 6rem;
    }

    .site-footer__wrap {
        padding-top: 7rem;
    }

    .site-footer__promo {
        width: calc(100% - 3rem);
    }

    .footer-col--border {
        padding-left: 0;
        border-left: 0;
    }

    .site-footer__middle {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__hours {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .brands-marquee__item {
        padding: 0 2.25rem;
    }

    .brands-marquee__item img {
        height: 3.25rem;
    }

    .garage-solutions {
        padding: 3rem 0;
    }

    .garage-solutions__item {
        padding: 2.5rem 0;
    }

    .garage-solutions__heading {
        max-width: 100%;
    }

    .garage-solutions__heading h2 {
        font-size: 1.6rem;
    }

    .garage-solutions__content {
        max-width: 100%;
        margin-left: 0;
    }

    .garage-solutions__image img {
        height: 350px;
    }

    .garage-solutions {
        padding: 3rem 0;
    }

    .garage-solutions__item {
        padding: 2.5rem 0;
    }

    .garage-solutions__heading {
        max-width: 100%;
    }

    .garage-solutions__heading h2 {
        font-size: 1.6rem;
    }

    .garage-solutions__content {
        max-width: 100%;
        margin-left: 0;
    }

    .garage-solutions__image img {
        height: 350px;
    }

    .why-choose-us {
        padding: 4.5rem 0;
    }

    .why-choose-us__content {
        padding-left: 0;
        border-left: 0;
    }

    .why-choose-us__content::before {
        content: "";
        display: block;
        width: 60px;
        height: 2px;
        margin-bottom: 1.5rem;
        background: var(--primary);
    }

    .why-choose-us__main-image {
        height: 580px;
    }

    .garage-offers {
        padding: 4.5rem 0;
    }

    .garage-offers__card {
        min-height: 470px;
        padding: 1.6rem;
    }

    .garage-offers__details {
        min-height: 190px;
    }

    .professional-service-section {
        padding-bottom: 4rem;
    }

    .professional-service-section__content {
        padding: 4rem 0;
    }

    .professional-service-section h2 {
        max-width: 700px;
    }

    .professional-service-section__text {
        max-width: 100%;
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }

    .professional-service-section__text::before {
        content: "";
        display: block;
        width: 50px;
        height: 2px;
        margin-bottom: 1.5rem;
        background: var(--beige);
    }

    .professional-service-section__media img {
        height: 500px;
    }

    .contact-section {
        padding: 4.5rem 0;
    }

    .contact-section__media {
        min-height: 25rem;
    }

    .subpage-hero {
        height: 50vh;
        min-height: 330px;
        margin: 0.5rem 1rem 0;
    }

    .subpage-hero__inner {
        height: 50vh;
        min-height: 330px;
    }

    .subpage-hero h1 {
        font-size: 3.3rem;
    }
}

@media (max-width: 767.98px) {
    .about-section__media {
        min-height: 32rem;
    }

    .about-section__image {
        border-radius: 1.1rem;
    }

    .about-section__badge {
        width: 7.5rem;
        height: 7.5rem;
    }

    .about-section__badge-icon {
        width: 4.2rem;
        height: 4.2rem;
    }

    .about-section__content h2 {
        font-size: 2.3rem;
        letter-spacing: -0.05rem;
    }

    .about-section__bottom {
        flex-wrap: wrap;
    }

    .about-section__bottom-line {
        display: none;
    }

    .services-section__heading {
        margin-bottom: 2.5rem;
    }

    .services-section__cta {
        padding-bottom: 3.5rem;
    }

    .services-section__cta-inner {
        max-width: 95%;
        font-size: 0.8rem;
    }

    .services-marquee {
        padding: 1.2rem 0;
    }

    .services-marquee__group span {
        padding: 0 1.8rem;
    }

    .hero-section {
        padding-bottom: 1rem;
    }

    .hero-section__wrapper {
        min-height: 48rem;
        border-radius: 1rem;
    }

    .hero-section__container {
        min-height: 48rem;
    }

    .hero-section__content {
        padding: 8rem 0 17rem;
    }

    .hero-section h1 {
        font-size: clamp(2.7rem, 12vw, 4rem);
        letter-spacing: -0.12rem;
    }

    .trusted-badge {
        gap: 0.7rem;
        padding-right: 1rem;
    }

    .trusted-badge > span {
        font-size: 0.75rem;
    }

    .hero-section__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.25rem;
    }

    .hero-section__bottom p {
        max-width: 100%;
    }

    .why-choose-garage-door__item {
        gap: 1rem;
    }

    .why-choose-garage-door__item-icon {
        width: 4.5rem;
        height: 4.5rem;
        flex: 0 0 4.5rem;
        font-size: 1.7rem;
    }

    .why-choose-garage-door__item-title {
        font-size: 1.35rem;
    }

    .why-choose-garage-door__item-content p {
        font-size: 0.95rem;
    }

    .why-choose-garage-door__cta {
        flex-direction: column;
        text-align: center;
        border-radius: 1.5rem;
    }

    .why-choose-garage-door__shape {
        display: none;
    }

    .garage-showcase__wrapper {
        min-height: 48rem;
        border-radius: 1.4rem;
    }

    .garage-showcase__content {
        padding: 4rem 1.5rem 0;
    }

    .garage-showcase__circle-btn {
        width: 8.5rem;
        height: 8.5rem;
        margin-bottom: 1.5rem;
    }

    .garage-showcase__play {
        width: 4.2rem;
        height: 4.2rem;
        flex: 0 0 4.2rem;
        font-size: 1.1rem;
    }

    .garage-showcase__circle-text text,
 .garage-showcase__svg-text {
        font-size: 14px;
        letter-spacing: 1.4px;
    }

    .garage-showcase__title {
        font-size: 2rem;
    }

    .garage-showcase__feature {
        padding: 1.2rem;
    }

    .testimonials-section__wrapper {
        padding: 4rem 0;
        border-radius: 1.5rem;
    }

    .testimonials-section__visual {
        gap: 1rem;
    }

    .testimonials-section__rating {
        width: 4rem;
        flex: 0 0 4rem;
    }

    .testimonials-section__score-number {
        font-size: 2.3rem;
    }

    .testimonials-section__image {
        height: 27rem;
        border-radius: 1.4rem;
    }

    .testimonials-section__title {
        font-size: 2.3rem;
    }

    .testimonials-section__quote-icon {
        height: 4rem;
        font-size: 4rem;
    }

    .testimonial-slide__text {
        min-height: auto;
        font-size: 1rem;
    }

    .site-footer__promo {
        grid-template-columns: 1fr;
        top: -6rem;
    }

    .site-footer__promo-content {
        min-height: 7rem;
    }

    .site-footer__promo-content::after,
 .site-footer__promo-content::before {
        display: none;
    }

    .site-footer__promo-image {
        min-height: 7rem;
    }

    .site-footer__wrap {
        padding-top: 11rem;
        border-radius: 1.5rem;
    }

    .site-footer__middle {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .site-footer__hours {
        grid-column: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .garage-solutions {
        padding: 2rem 0;
    }

    .garage-solutions__item {
        padding: 2rem 0;
    }

    .garage-solutions__heading h2 {
        font-size: 1.35rem;
    }

    .garage-solutions__image img {
        height: 260px;
    }

    .garage-solutions__number {
        left: 1rem;
        bottom: 1rem;
        min-width: 82px;
        min-height: 58px;
        font-size: 2.1rem;
    }

    .garage-solutions {
        padding: 2rem 0;
    }

    .garage-solutions__item {
        padding: 2rem 0;
    }

    .garage-solutions__heading {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    .garage-solutions__heading h2 {
        font-size: 1.35rem;
    }

    .garage-solutions__image img {
        height: 260px;
    }

    .garage-solutions__number {
        left: 1rem;
        bottom: 1rem;
        min-width: 82px;
        min-height: 58px;
        font-size: 2.1rem;
    }

    .garage-solutions__content p {
        font-size: 1rem;
    }

    .why-choose-us {
        padding: 3.5rem 0;
    }

    .why-choose-us__main-image {
        height: 480px;
        border-radius: 22px;
    }

    .why-choose-us__media {
        border-radius: 22px;
    }

    .why-choose-us__experience {
        right: 15px;
        bottom: 15px;
        min-width: auto;
        padding: 1rem;
    }

    .why-choose-us__experience-icon {
        width: 44px;
        height: 44px;
    }

    .why-choose-us__experience-title {
        font-size: 1.15rem;
    }

    .why-choose-us__content h2 {
        font-size: 2.2rem;
    }

    .why-choose-us__box {
        padding: 1.5rem 1rem;
    }

    .why-choose-us__box .col-md-6 + .col-md-6 ul {
        margin-top: 1.15rem;
    }

    .garage-offers {
        padding: 4rem 0;
    }

    .garage-offers__heading {
        margin-bottom: 2.5rem;
    }

    .garage-offers__card {
        min-height: auto;
    }

    .garage-offers__details {
        min-height: 190px;
    }

    .professional-service-section {
        padding: 1rem 0 3rem;
    }

    .professional-service-section__wrapper {
        border-radius: 20px;
    }

    .professional-service-section__content {
        padding: 3rem 0;
    }

    .professional-service-section h2 {
        font-size: 2.1rem;
    }

    .professional-service-section__media img {
        height: 400px;
    }

    .contact-section {
        padding: 3.5rem 0;
    }

    .contact-section__title {
        font-size: 2.2rem;
    }

    .contact-section__media {
        min-height: 27rem;
        border-radius: 1.5rem;
    }

    .contact-section__overlay {
        right: 1.25rem;
        bottom: 1.25rem;
        left: 1.25rem;
    }

    .contact-section__form-wrap {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .contact-form__submit {
        width: 100%;
    }

    .subpage-hero {
        height: 50vh;
        min-height: 300px;
        margin: 0.5rem 0.75rem 0;
        border-radius: 16px;
    }

    .subpage-hero__inner {
        height: 50vh;
        min-height: 300px;
        padding: 2rem 1rem;
    }

    .subpage-hero h1 {
        margin-bottom: 1.2rem;
        font-size: 2.6rem;
    }

    .subpage-hero__breadcrumb .breadcrumb-item {
        font-size: 0.95rem;
    }

    .breadcrumb-separator {
        font-size: 1.2rem;
    }

    .site-footer__middle iframe {
        width: 100%;
        height: 100%;
        border-radius: 1rem;
    }
}

@media (max-width: 575.98px) {
    .about-section__media {
        min-height: 27rem;
    }

    .about-section__image--one {
        width: 48%;
        height: 78%;
    }

    .about-section__image--two,
 .about-section__image--three {
        width: 50%;
    }

    .about-section__badge {
        width: 6.5rem;
        height: 6.5rem;
    }

    .about-section__badge-icon {
        width: 3.6rem;
        height: 3.6rem;
        font-size: 1.25rem;
    }

    .about-section__badge-text text {
        font-size: 0.5rem;
    }

    .about-section__features .col-sm-6 + .col-sm-6 {
        margin-top: 0.5rem;
    }

    .about-section__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-section__btn {
        width: 100%;
    }

    .logo-icon {
        width: 3.5rem;
        height: 2.5rem;
    }

    .logo-text {
        max-width: 10rem;
        font-size: 0.95rem;
        line-height: 1.15;
    }

    .service-card {
        min-height: 29rem;
        padding: 1.25rem;
        padding-bottom: 15rem;
    }

    .service-card__image {
        left: 1.25rem;
        right: 1.25rem;
        bottom: 1.25rem;
        height: 12.5rem;
    }

    .service-card:hover .service-card__image {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
    }

    .service-card {
        padding: 1.25rem;
    }

    .service-card__image img {
        height: 13rem;
    }

    .services-section__cta-inner {
        border-width: 0.3rem;
    }

    .services-section__cta-inner > span:nth-child(2) {
        text-align: left;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        width: 2.4rem;
        height: 2.4rem;
    }

    .navbar-cta {
        width: 100%;
    }

    .hero-section__content {
        padding-top: 6rem;
    }

    .trusted-badge__avatars img,
 .trusted-badge__plus {
        width: 1.8rem;
        height: 1.8rem;
    }

    /*
     * * .roof-feature-card {
     * * display: none !important;
     * * }
     */

    .why-choose-garage-door {
        padding: 4rem 0;
    }

    .why-choose-garage-door__title {
        font-size: 2rem;
    }

    .why-choose-garage-door__item-icon {
        width: 4rem;
        height: 4rem;
        flex: 0 0 4rem;
        font-size: 1.5rem;
    }

    .why-choose-garage-door__arrow {
        top: -2rem;
        left: 3rem !important;
        font-size: 2.3rem;
    }

    .how-it-works {
        padding: 4rem 0;
    }

    .how-it-works__title {
        font-size: 2rem;
    }

    .how-it-works__image img {
        height: 18rem;
    }

    .how-it-works__step {
        gap: 1rem;
        padding: 1.4rem;
        border-radius: 1.25rem;
    }

    .how-it-works__number {
        width: 2.8rem;
        height: 2.8rem;
        flex: 0 0 2.8rem;
        font-size: 0.9rem;
    }

    .how-it-works__step-title {
        font-size: 1rem;
    }

    .how-it-works__step-content p {
        font-size: 0.95rem;
    }

    .faq-section {
        padding: 4rem 0;
    }

    .faq-section__title {
        font-size: 2rem;
    }

    .faq-section__contact {
        padding: 1.5rem;
    }

    .faq-section__contact-title {
        font-size: 1.45rem;
    }

    .faq-accordion .accordion-button {
        padding: 1.4rem
 4.3rem
 1.4rem
 1.3rem;
        font-size: 1rem;
    }

    .faq-accordion .accordion-button::before {
        right: 1rem;
        width: 2.4rem;
        height: 2.4rem;
    }

    .faq-accordion .accordion-body {
        padding: 0
 1.3rem
 1.5rem;
        font-size: 0.95rem;
    }

    .garage-showcase {
        padding: 0.75rem 0;
    }

    .garage-showcase__wrapper {
        min-height: 52rem;
        border-radius: 1.2rem;
    }

    .garage-showcase__content {
        padding: 3.5rem 1rem 0;
    }

    .garage-showcase__center {
        margin-bottom: 2rem;
    }

    .garage-showcase__circle-btn {
        width: 8rem;
        height: 8rem;
    }

    .garage-showcase__play {
        width: 4rem;
        height: 4rem;
        flex: 0 0 4rem;
    }

    .garage-showcase__circle-text text,
 .garage-showcase__svg-text {
        font-size: 15px;
        letter-spacing: 1px;
    }

    .garage-showcase__feature {
        min-height: 4.8rem;
        padding: 1rem;
        border-right: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
    }

    .garage-showcase__feature:hover {
        padding-left: 1.3rem;
    }

    .garage-showcase__feature-text {
        font-size: 0.95rem;
    }

    .testimonials-section {
        padding: 0.75rem 0;
    }

    .testimonials-section__wrapper {
        padding: 3rem 0;
    }

    .testimonials-section__visual {
        display: block;
    }

    .testimonials-section__rating {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        margin-bottom: 1.5rem;
    }

    .testimonials-section__rating-text {
        writing-mode: initial;
        transform: none;
        display: block;
    }

    .testimonials-section__rating-text span {
        display: block;
    }

    .testimonials-section__rating-line {
        width: 3rem;
        height: 1px;
    }

    .testimonials-section__score {
        flex-direction: row;
        writing-mode: initial;
        transform: none;
    }

    .testimonials-section__stars {
        flex-direction: row;
    }

    .testimonials-section__image {
        width: 100%;
        height: 24rem;
    }

    .testimonials-section__title {
        font-size: 2rem;
    }

    .testimonials-section__bottom {
        margin-top: 1.2rem;
    }

    .site-footer {
        padding-top: 6rem;
    }

    .site-footer__promo {
        width: calc(100% - 2rem);
    }

    .site-footer__promo-content,
 .site-footer__promo-image {
        padding: 1.25rem;
    }

    .site-footer__promo-title {
        font-size: 1.25rem;
    }

    .site-footer__main {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .site-footer__middle {
        padding: 1.2rem;
    }

    .site-footer__bottom-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .brands-marquee {
        padding: 2rem 0;
    }

    .brands-marquee__item {
        padding: 0 1.5rem;
    }

    .brands-marquee__item img {
        height: 2.5rem;
    }

    .garage-solutions__image img {
        height: 230px;
        border-radius: 8px;
    }

    .garage-solutions__heading h2 {
        font-size: 1.25rem;
    }

    .garage-solutions__number {
        min-width: 75px;
        min-height: 52px;
        padding: 0.4rem 0.75rem;
        font-size: 1.8rem;
        border-radius: 8px;
    }

    .why-choose-us__main-image {
        height: 400px;
    }

    .why-choose-us__experience {
        left: 15px;
        right: 15px;
        justify-content: center;
    }

    .why-choose-us__content h2 {
        font-size: 1.9rem;
    }

    .why-choose-us__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .garage-offers {
        padding: 3.5rem 0;
    }

    .garage-offers__card {
        padding: 1.25rem;
        border-radius: 22px;
    }

    .garage-offers__details {
        min-height: 175px;
        padding: 1.4rem;
        border-radius: 18px;
    }

    .garage-offers__top {
        align-items: flex-start;
    }

    .garage-offers__name {
        font-size: 1rem;
    }

    .garage-offers__badge {
        padding: 0.45rem 0.7rem;
        font-size: 0.68rem;
    }

    .garage-offers__amount {
        font-size: 3rem;
    }

    .garage-offers__description,
 .garage-offers__offer-text {
        font-size: 1rem;
    }

    .professional-service-section__wrapper {
        border-radius: 16px;
    }

    .professional-service-section__content {
        padding: 2.5rem 0;
    }

    .professional-service-section h2 {
        font-size: 1.8rem;
    }

    .professional-service-section h2::after {
        width: 55px;
        height: 3px;
    }

    .professional-service-section__text p {
        font-size: 1rem;
    }

    .professional-service-section__media img {
        height: 300px;
    }

    .contact-section__media {
        min-height: 30rem;
    }

    .contact-section__info-value {
        font-size: 0.95rem;
    }

    .contact-section__icon {
        flex-basis: 2.8rem;
        width: 2.8rem;
        height: 2.8rem;
    }

    .subpage-hero {
        height: 50vh;
        min-height: 280px;
        margin: 0.4rem;
        border-radius: 14px;
    }

    .subpage-hero__inner {
        height: 50vh;
        min-height: 280px;
    }

    .subpage-hero h1 {
        font-size: 2.2rem;
    }

    .subpage-hero__breadcrumb {
        gap: 0.6rem;
    }

    .site-footer__middle iframe {
        width: 100%;
        height: 100%;
        border-radius: 1rem;
    }
}


/* 404 */

.service-locations {
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  background:  var(--light);
}

.service-locations::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 100%,
      rgba(235, 125, 0, 0.08),
      transparent 45%
    );
  pointer-events: none;
}

.service-locations .container {
  position: relative;
  z-index: 2;
}

.service-locations .section-heading {
  max-width: 720px;
  margin: 0 auto 55px;
}

.service-locations .section-heading > span {
  display: inline-block;
  margin-bottom: 10px;
  color: #eb7d00;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.service-locations .section-heading h2 {
  margin-bottom: 15px;
  color: var(--dark);
  font-size: 42px;
  font-weight: 700;
}

.service-locations .section-heading p {
  margin-bottom: 0;
  color: #bdbdbd;
  font-size: 16px;
}

.locations-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 14px;
}

.location-item {
  text-decoration: none;
}

.location-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 145px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 5%;
  background: var(--dark);
  transition: 0.3s ease;
  padding: 18px;
  text-align: center;
}

.location-circle span {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  transition: 0.3s ease;
}

.location-circle::before {
  content: "";
  position: absolute;
  width: 115%;
  height: 115%;
  border-radius: 5%;
  border-bottom: 8px solid rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.location-item:hover .location-circle {
  border-color: #eb7d00;
  background: #2c5745;
  transform: translateY(-7px);
}

.location-item:hover .location-circle span {
  color: #ffffff;
}


/* Arrow */
.location-arrow {
  position: relative;
  width: 55px;
  height: 50px;
}

.location-arrow span {
  position: absolute;
  top: 24px;
  left: 3px;
  width: 43px;
  height: 2px;
  background: #eb7d00;
  transform: rotate(-5deg);
}

.location-arrow span::before {
  content: "";
  position: absolute;
  top: -6px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #eb7d00;
  border-right: 2px solid #eb7d00;
  transform: rotate(45deg);
}


/* Tablet */
@media (max-width: 1199.98px) {
  .locations-wrapper {
    max-width: 850px;
    margin: auto;
  }

  .location-circle {
    width: 135px;
    height: 135px;
  }

  .location-arrow {
    width: 45px;
  }
}


/* Mobile */
@media (max-width: 767.98px) {
  .service-locations {
    padding: 60px 0;
  }

  .service-locations .section-heading {
    margin-bottom: 40px;
  }

  .service-locations .section-heading h2 {
    font-size: 32px;
  }

  .locations-wrapper {
    gap: 16px;
  }

  .location-circle {
    width: 120px;
    height: 120px;
  }

  .location-circle span {
    font-size: 21px;
  }

  .location-arrow {
    display: none;
  }
}


@media (max-width: 420px) {
  .locations-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .location-item {
    display: flex;
    justify-content: center;
  }

  .location-circle {
    width: 125px;
    height: 125px;
  }

  .locations-wrapper .location-item:last-child {
    grid-column: 1 / -1;
  }
}