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

h1,
h2,
h3,
h4,
h5,
h6,
.nav-item span,
.nav-link,
.logo {
    font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.02rem;
}

h1 {
    font-size: 3rem;
    line-height: 4rem;
}

body,
p {
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #222;
    line-height: 1.6;
}

html,
body {
    overflow-x: hidden;
}

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

.site-header {
    background: white;
    position: relative;
    z-index: 100;
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    width: 110px;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-item span,
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #122A4F;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    padding: 0.5rem 0;
    min-width: 270px;
}

.nav-item:hover .dropdown {
    display: block;
}

.dropdown a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: white;
    font-weight: 300;
    text-decoration: none;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.dropdown a:hover {
    background: #F7921B;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 4px;
    vertical-align: middle;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ==========================================
   BUTTONS
============================================ */

.blue-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #122A4F;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.04rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.orange-btn {
    display: inline-flex;
    align-items: center;
    background: #F7921B;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.04rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.call-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid white;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

main {
    padding: 0;
    margin: 0;
}

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

.container {
    max-width: 1440px;
    margin: 0 auto;
}

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.77) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    color: white;
}

.hero-subtitle {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    max-width: 46%;
}

.hero-body {
    color: white;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: justify;
    max-width: 50%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* ==========================================
    TRUST BAR
============================================ */

.trust-bar-section {
    background: #1a2b4c;
    padding: 1.2rem 0;
}

.trust-bar {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding: 0 10rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.trust-item div {
    display: flex;
    flex-direction: column;
    font-size: 0.7rem;
    text-transform: uppercase;
    line-height: 1.3;
}

/* ==========================================
   WELCOME SECTION
============================================ */

section {
    padding: 3rem 6rem;
}

.intro-grid {
    padding-top: 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.intro-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #020202;
    margin-bottom: 1.5rem;
}

.intro-text p {
    margin-bottom: 1.25rem;
    color: #0b0b0b;
    text-align: justify;
}

.intro-text p a {
    color: #F7921B;
    text-decoration: none;
    font-weight: 400;
}

.intro-text p a:hover {
    color: #122A4F;
}

.intro-text ul {
    margin: 1rem 0 1.5rem;
    padding-left: 1.5rem;
    text-align: justify;
}

.intro-text li a {
    text-decoration: none;
    color: #F7921B;
}

.intro-text li a:hover {
    color: #122A4F;
}

.intro-text li {
    margin-bottom: 1rem;
    color: #090909;
    line-height: 1.6;
}

.intro-text li::marker {
    color: #F7921B;
}

.intro-text li strong {
    color: #122A4F;
}

.intro-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.intro-image {
    position: relative;
    justify-self: end;
}

.intro-image img {
    width: 450px;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* ==========================================
   SERVICE SECTION
============================================ */

.services {
    background-color: #f1f1f1;
}

.section-heading {
    text-align: center;
    padding: 0 12rem 2rem 12rem;
}

.section-heading h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-heading p {
    margin-bottom: 1.25rem;
    text-align: center;
}

.section-heading p a {
    text-decoration: none;
    color: #F7921B;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.service-card {
    position: relative;
    overflow: hidden;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    line-height: 1.3rem;
    text-align: center;
    z-index: 2;
}

/* ==========================================
   WHY JIM'S SECTION
============================================ */

.why-jims {
    background-color: rgb(30, 30, 30);
}

.why-jims .section-heading h2,
.why-jims .section-heading p {
    color: white;
}

.jims-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
}

.jims-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    align-items: center;
    text-align: center;
}

.jims-card h3 {
    color: #122A4F;
    padding-bottom: 1rem;
}

.section-cta-btn {
    text-align: center;
}

/* ==========================================
   FRANCHISE ADVANTAGE
============================================ */

.franchise-advantage .intro-grid {
    grid-template-columns: 1fr 1fr;
}

.franchise-advantage .intro-grid .intro-image {
    position: relative;
    justify-self: center;
}

.franchise-advantage .intro-grid .intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* ==========================================
   MID CTA SECTION
============================================ */

.cta-banner {
    margin-top: 1rem;
    position: relative;
    background: url('/static/images/mid_cta_bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    padding: 4rem 2rem;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 42, 79, 0.85);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: white;
}

.mid-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ==========================================
   ACTION CARDS SECTION
============================================ */

.action-cards {
    background-color: #FFFCF4;
    padding-top: 4rem;
    padding-bottom: 1rem;
}

.action-cards .jims-card {
    border: solid 0.1rem;
}

.action-cards .jims-card p {
    padding-bottom: 1.5rem;
}

/* ==========================================
   BEFORE/AFTER SECTION
============================================ */

.before-after {
    padding-top: 5rem;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.ba-slider {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    cursor: ew-resize;
    user-select: none;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
}

.ba-after-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: white;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.ba-arrows {
    background: white;
    color: #333;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    letter-spacing: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   BEFORE/AFTER SECTION
============================================ */

.locations-section {
    padding: 3rem 2rem 0 2rem;
    text-align: center;
}

.section-divider {
    border: none;
    border-top: 0.1rem solid rgb(155, 155, 155);
    margin: 0 0 2rem 0;
}

.location-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 3rem;
}

.location-pill {
    display: inline-flex;
    background-color: white;
    align-items: center;
    gap: 0.5rem;
    border: 0.09rem solid #1a1a1a;
    color: #1a1a1a;
    padding: 0.7rem 1.9rem 0.7rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.location-pill:hover {
    background-color: #F7921B;
    color: white;
}

/* ==========================================
   SERVICE-HERO SECTION
============================================ */

.service-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.service-hero-overlay {
    position: relative;
    z-index: 1;
    color: white;
}

.service-hero-body {
    color: white;
    margin-top: 0.8rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: justify;
    max-width: 48%;
}

/* ==========================================
   CHECKLIST SECTION
============================================ */

.checklist {
    list-style: none;
    margin: 1.5rem 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.2rem;
    color: #333;
}

.checklist svg {
    color: #f5a623;
    flex-shrink: 0;
}

/* ==========================================
   CATEGORY PILLS SECTION
============================================ */

.category-pills-section-main {
    background: #e9eaec;
    padding: 2rem 0;
}

.category-pills-section {
    display: grid;
    grid-template-columns: 0.45fr 1.55fr;
    align-items: center;
}

.category-pills-section .section-heading {
    padding: 0 0 0 6rem;
}

.category-pills-section h2 {
    text-align: left;
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}

.location-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    margin: 0;
}

.location-pill.active {
    background-color: #f7921b;
    color: white;
    border-color: #f7921b;
    border: solid 0.09rem #1a1a1a;
}

/* ==========================================
   SERVICE-HERO SECTION
============================================ */

.benefits-grid-section-main {
    background-color: #FFE5C7;
    padding-top: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    align-items: center;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    text-align: justify;
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
}

.benefit-icon svg {
    color: #f5a623;
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

/* ==========================================
   IMAGE GRID SECTION
============================================ */

.image-grid-section-bg {
    background: #f1f1f1;
}

.image-grid-section {
    padding: 4rem 1rem;
}

.image-grid-section .section-heading {
    text-align: center;
    padding-bottom: 2rem;
}

.image-grid-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.image-grid-tile {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
}

.image-grid-tile a {
    display: block;
    width: 100%;
    height: 100%;
}

.image-grid-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-grid-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0) 100%);
    color: white;
    text-align: center;
}

.image-grid-tile-overlay h3 {
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 1.1rem;
}

.image-grid-tile-overlay p {
    font-size: 0.8rem;
    color: rgb(232, 232, 232);
}

/* ==========================================
   COMPARISON TABLE SECTION
============================================ */

.comparison-table-section {
    padding: 4rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.comparison-table-section .section-heading {
    padding: 0;
    text-align: left;
}

.comparison-table-section .section-heading p {
    text-align: left;
    text-align: justify;
}

.comparison-table-wrap {
    overflow-x: auto;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead th {
    background: #F7921B;
    color: white;
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.comparison-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.comparison-row-label {
    font-size: 0.9rem;
    font-weight: 400;
}

.comparison-status {
    display: inline-block;
    margin-right: 0.4rem;
    font-weight: 700;
}

.comparison-status-yes {
    color: #2e7d32;
}

.comparison-status-no {
    color: #c0392b;
}

.comparison-status-warning {
    color: #f5a623;
}

.comparison-table-section ul {
    text-align: left;
    max-width: 700px;
    margin: 1.5rem auto;
    padding-left: 1rem;
}

/* ==========================================
   OUR PROCESS SECTION
============================================ */

.process-steps-section {
    background: #122A4F;
    color: white;
    text-align: center;
}

.process-steps-section .section-heading p {
    color: white;
    padding-bottom: 1rem;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.process-step-number-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.process-step-number {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background: white;
    color: #f5a623;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.process-step-line {
    width: 80%;
    position: relative;
    top: -24.5vh;
    transform: translateX(12%);
    height: 2px;
    background: rgba(255, 255, 255, 0.86);
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.process-step h4 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.878);
    font-size: 0.95rem;
}

/* ==========================================
    SECTION CTA
============================================ */

.cta-section {
    background: #f7921b;
    color: white;
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}

.cta-section .section-heading p {
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
}

.cta-btn-solid {
    background: white;
    color: #1a1a1a;
}

.cta-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* ==========================================
   FAQ SECTION
============================================ */

.faq-section {
    padding: 4rem 2rem;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: left;
}

.faq-item {
    background: #f4f5f7;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    padding: 0 1.5rem;
}

.faq-item summary {
    padding: 1.25rem 0;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-arrow {
    transition: transform 0.2s ease;
    font-size: 1.3rem;
    color: #888;
}

.faq-item[open] .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    padding-bottom: 1.25rem;
    color: #555;
}

/* ==========================================
   PRODUCT DETAILS PAGE
============================================ */

.product-detail {
    background-color: #fbecdb;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 44% 56%;
    gap: 3rem;
    padding: 1rem 3rem 0 1rem;
    align-items: start;
}

.product-gallery-main {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-gallery-main:hover img {
    transform: scale(1.15);
}

.product-variant-overlay {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.product-gallery-thumbs-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.product-gallery {
    min-width: 0;
}

.product-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    flex: 1 1 0;
    min-width: 0;
}

.product-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.product-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    scroll-snap-align: start;
    transition: opacity 0.2s ease;
}

.product-thumb.active,
.product-thumb:hover {
    opacity: 1;
}

.thumb-arrow {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-arrow:hover {
    background: #f4f5f7;
}

.product-sku {
    font-weight: 700;
    margin: 0.75rem 0;
    color: #F7921B;
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    margin-right: 3rem;
}

.product-short-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    padding-right: 1rem;
    text-align: justify;
}

.product-description {
    font-size: 1.05rem;
    line-height: 1.75;
    text-align: justify;
    color: #333;
}

.product-description h2 {
    font-family: "Source Sans 3", sans-serif;
    font-size: 1.4rem;
    color: #122A4F;
    text-align: left;
    margin: 2.5rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid #F7921B;
}

.product-description h2:first-child {
    margin-top: 0;
}

.product-description h3 {
    font-size: 1.15rem;
    color: #F7921B;
    margin: 1.75rem 0 0.75rem;
}

.product-description p:first-of-type::first-letter {
    font-size: 2.4rem;
    font-weight: 700;
    color: #F7921B;
    float: left;
    line-height: 1;
    padding-right: 0.4rem;
}

.product-description-section {
    padding: 1rem 6rem 1rem 6rem;
    border: 1px solid #eee;
}

.product-description-heading {
    display: inline-block;
    padding: 1rem 0;
    border-bottom: 3px solid #F7921B;
    margin-bottom: 1.5rem;
}

/* ==========================================
   COMPARISON TABLE SECTION
============================================ */

.lead-form {
    background-color: #F7F7F7;
    padding-top: 4rem;
}

/* ==========================================
   FOOTER SECTION
============================================ */

.site-footer {
    background: #0d0d0d;
    color: #ccc;
    padding: 4rem 6rem 0 6rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    padding-bottom: 3rem;
}

.footer-col h4 {
    color: #F7921B;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.footer-col a,
.footer-col p {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-hours {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 90px;
    width: auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid #333;
    font-size: 0.85rem;
}

.footer-bottom p {
    padding: 0 4rem;
    color: white;
    margin: 0;
}

/* ==========================================
   MOBILE RESPONSIVE (tablet and below)
============================================ */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #122A4F;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-actions {
    display: none;
}

.mobile-menu-close {
    display: none;
}

@media (max-width: 1024px) {

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        max-width: 320px;
        background: white;
        padding: 4rem 1.5rem 1.5rem;
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 200;
        overflow-y: auto;
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1.25rem;
        background: none;
        border: none;
        font-size: 2rem;
        line-height: 1;
        color: #122A4F;
        cursor: pointer;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 150;
    }

    .nav-overlay.is-open {
        display: block;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item span,
    .nav-link {
        display: block;
        padding: 0.9rem 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        position: static;
        box-shadow: none;
        background: #122A4F;
        border-radius: 0.2rem;
        padding: 0;
        min-width: 100%;
        padding-left: 0.1rem;
    }

    .nav-item.dropdown-open .dropdown {
        max-height: 400px;
    }

    .dropdown a {
        color: white;
    }

    .dropdown a:hover {
        background: #f5f5f5;
    }

    .header-actions {
        display: none;
    }

    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .mobile-nav-actions .blue-btn,
    .mobile-nav-actions .orange-btn {
        justify-content: center;
    }

    h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    section {
        padding: 2rem 1.5rem;
    }

    .header-inner {
        padding: 0.5rem 1.5rem;
    }

    /* Hero */
    .hero {
        min-height: 540px;
    }

    .hero-video {
        width: auto;
        min-width: 100%;
    }

    .hero-overlay {
        max-width: 100%;
    }

    .hero-subtitle,
    .hero-body {
        max-width: 60%;
    }

    .hero::before {
        background: rgba(0, 0, 0, 0.6);
    }

    .service-hero {
        min-height: 500px;
    }

    .service-hero-overlay {
        max-width: 100%;
    }

    .service-hero-subtitle,
    .service-hero-body {
        max-width: 60%;
    }


    .service-hero::before {
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-buttons {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    /* Trust bar */
    .trust-bar {
        justify-content: space-between;
        gap: 1rem;
        padding: 0.5rem 1.5rem;
        text-align: center;
    }

    /* Our Products */
    .category-pills-section {
        display: grid;
        grid-template-columns: 1fr;
        background: #e9eaec;
        padding: 2rem 1.5rem;
    }

    .category-pills-section .section-heading {
        padding: 0 0 0.5rem 0;
    }

    /* Welcome / Intro */
    .intro-grid,
    .franchise-advantage .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text {
        margin-right: 1rem;
    }

    .intro-image {
        justify-self: stretch;
        margin-right: 1rem;
    }

    .intro-image img {
        width: 100%;
    }

    /* Services */
    .section-heading {
        padding: 0 0 1rem 0;
        line-height: 3rem;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why Jim's */
    .jims-grid {
        grid-template-columns: 1fr;
        padding-bottom: 2rem;
    }

    /* Before/After */
    .ba-grid {
        grid-template-columns: 1fr;
    }

    /* Location Pills */
    .location-pills {
        padding-bottom: 3rem;
    }

    /* Benefits Grid */

    .benefits-grid {
        grid-template-columns: 1fr;
        padding-bottom: 2rem;
    }

    /* Comparison Table */

    .comparison-table-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1.5rem;
    }

    .comparison-table-section ul {
        margin: 0;
        line-height: 1.6rem;
    }

    /* Our Process */

    .process-steps-section {
        padding: 6rem 3rem;
    }

    .process-steps-grid {
        grid-template-columns: 1fr;
    }

    .process-step-line {
        display: none;
    }

    /* Section CTA */

    .cta-body {
        max-width: 100vw;
        color: white;
        margin: 1rem auto 2rem;
        font-style: italic;
    }

    /* Product Details Page */

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .product-gallery-main {
        height: 500px;
    }

    .product-info h1 {
        font-size: 1.6rem;
    }

    .product-description-section {
        padding: 1rem 2rem 1rem 2rem;
    }

    /* Image Grid */

    .image-grid-section {
        padding: 3rem 1.5rem;
    }

    .image-grid-tiles {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */

    .site-footer {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding-bottom: 1rem;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .footer-bottom p {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {

    .hero-subtitle,
    .hero-body {
        max-width: 100%;
    }

    .service-hero-subtitle,
    .service-hero-body {
        max-width: 100%;
    }

    .hero::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.77) 50%, rgba(0, 0, 0, 0) 100%);
    }

    .service-hero::before {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.77) 50%, rgba(0, 0, 0, 0) 100%);
    }

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

    .service-card h3 {
        font-size: 1.05rem;
        top: 85%;
    }

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

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .action-cards {
        padding-top: 2rem;
    }


    /* Product Details Page */

    .product-detail-grid {
        padding: 1.5rem 0;
    }

    .product-gallery-main {
        height: 260px;
        border-radius: 6px;
    }

    .product-gallery-main:hover img {
        transform: none;
    }

    .product-variant-overlay {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        bottom: 0.75rem;
    }

    .product-gallery-zoom {
        width: 30px;
        height: 30px;
    }

    .product-thumb {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
    }

    .thumb-arrow {
        width: 24px;
        height: 24px;
        font-size: 0.95rem;
    }

    .product-info h1 {
        font-size: 1.4rem;
    }

    .product-sku {
        font-size: 0.9rem;
    }

    .product-short-description {
        font-size: 0.95rem;
    }

    .orange-btn {
        display: block;
        text-align: center;
    }

    .product-description-section {
        padding: 1rem 1rem 1rem 1rem;
    }

    .product-description {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .product-description h2 {
        font-size: 1.2rem;
        margin: 1.75rem 0 0.75rem;
    }

    .product-description h3 {
        font-size: 1.05rem;
    }

    .product-description p:first-of-type::first-letter {
        font-size: 1.8rem;
    }

    /* Image Grid */

    .image-grid-section {
        padding: 2rem 1rem;
    }

    .image-grid-tiles {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .image-grid-tile-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .image-grid-tile-overlay h3 {
        font-size: 1rem;
    }

    .image-grid-tile-overlay p {
        font-size: 0.85rem;
    }
}