/* ======================================
    Fonts 
   ====================================== */
@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/barlow-condensed-v13-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/barlow-condensed-v13-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/barlow-condensed-v13-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/barlow-condensed-v13-latin-500italic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/barlow-condensed-v13-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/barlow-condensed-v13-latin-600italic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Barlow Condensed';
    src: url('../fonts/barlow-condensed-v13-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v17-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v17-latin-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v17-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-v17-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



/* ======================================
    Variables 
   ====================================== */
:root {

    /* Color Variables*/
    --charcoal: #1a1a1a;
    --charcoal-mid: #2e2e2e;
    --charcoal-light: #3d3d3d;
    --yellow: #f5c400;
    --yellow-dark: #d9ad00;
    --white: #f9f9f9;
    --gray-100: #f0f0f0;
    --gray-300: #cccccc;
    --gray-500: #888888;

    /* Typography Variables */
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --fs-7: clamp(2.5rem, 5vw + 1rem, 4.5rem); /* h1 text */
    --fs-6: clamp(2rem, 4vw + 0.75rem, 3.5rem); /* h2 text */
    --fs-5: clamp(1.5rem, 3.5vw + 0.5rem, 2.5rem); /* h3 text */
    --fs-4: clamp(1.25rem, 2vw + 0.5rem, 1.75rem); /* large body / subheading */
    --fs-3: clamp(1rem, 1.5vw + 0.4rem, 1.25rem); /* standard p */
    --fs-2: clamp(0.875rem, 1vw + 0.3rem, 1rem); /* small p */
    --fs-1: clamp(0.75rem, 0.8vw + 0.25rem, 0.875rem); /* fine print / labels */
}

/* ======================================
    Document Setup 
   ====================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* ======================================
    Section Setup 
   ====================================== */

section { padding: 5rem 5%; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: var(--fs-3);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--yellow-dark);
    margin-bottom: 0.9rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--yellow-dark);
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--fs-6);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--charcoal);
}

.section-title.light { color: var(--white); }

/* ======================================
    Navigation 
   ====================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 2.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--charcoal);
    border-bottom: 3px solid var(--yellow);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.nav-logo-mark svg { width: 24px; height: 24px; }

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-logo-text span { color: var(--yellow); }

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: var(--fs-3);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--yellow);
    transition: color 0.2s;
    cursor: pointer;
}

.nav-cta {
    background: var(--yellow);
    color: var(--charcoal) !important;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    transition: background 0.2s;
}

.nav-cta:hover { background: var(--yellow-dark); }



/* ======================================
    Mobile Menu 
   ====================================== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--charcoal-mid);
    z-index: 99;
    padding: 1.5rem 2rem;
    border-bottom: 3px solid var(--yellow);
    flex-direction: column;
    gap: 1.2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-300);
    text-decoration: none;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--charcoal-light);
}

.mobile-menu a:hover { color: var(--yellow); }

/* ======================================
    Hero 
   ====================================== */
.hero {
    min-height: 100vh;
    background: var(--charcoal);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 68px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(245, 196, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 196, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-stripe {
    position: absolute;
    bottom: -60px;
    right: -80px;
    width: 55%;
    height: 110%;
    background-color: var(--charcoal-mid);
    transform: skewX(-8deg);
    transform-origin: bottom right;
}

.hero-stripe-accent {
    position: absolute;
    bottom: -60px;
    right: calc(55% - 80px);
    width: 12px;
    height: 110%;
    background: var(--yellow);
    transform: skewX(-8deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 2.5rem 5rem 5%;
    max-width: 680px;
    animation: fadeUp 0.9s ease both;
    padding-bottom: 8rem;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }   
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: var(--fs-3);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 1.2rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--yellow);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero h1 em { font-style: italic; color: var(--yellow); }

.hero-sub {
    font-size: var(--fs-3);
    font-weight: 400;
    color: var(--gray-300);
    line-height: 1.65;
    max-width: 440px;
    margin-bottom: 2.2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--yellow);
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: var(--fs-2);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    clip-path: polygon(0 0, 100% 0%, 96% 100%, 0% 100%);
}

.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--gray-500);
    color: var(--white);
    font-family: var(--font-display);
    font-size: var(--fs-2);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.hero-stats {
    position: absolute;
    bottom: 2.5rem;
    left: 5%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    animation: fadeUp 0.9s 0.3s ease both;
}

.stat-item { text-align: left; }

.stat-number {
    font-family: var(--font-display);
    color: var(--yellow);
    font-size: var(--fs-6);
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: var(--fs-1);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 0.2rem;
}

/* ======================================
    Ticker 
   ====================================== */
.ticker-wrap {
    background: var(--yellow);
    overflow: hidden;
    padding: 0.6em 0;
    white-space: nowrap;
}

.inner-ticker {
    display: inline-flex;
    animation: ticker 22s linear infinite;
}

.inner-ticker span {
    font-family: var(--font-display);
    font-size: var(--fs-2);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    padding: 0 2rem;
}

.ticker-inner span::before {
    content: '◆';
    margin-right: 2rem;
    opacity: 0.4;
}

.ticker-wrap:hover .inner-ticker {
    animation-play-state: paused;
}

@keyframes ticker {
    from {transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ======================================
    Services 
   ====================================== */
.services { background: var(--white); }

.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2px;
    background-color: var(--charcoal);
}

.service-card {
    background: var(--white);
    padding: 2.2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.25s;
    cursor: default;
}

.service-card:hover { background-color: var(--gray-100); }

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--yellow);
    transition: width 0.35s ease;
}

.service-card:hover::after { width: 100%; }

.service-icon {
    background: var(--charcoal);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(8% 0, 100% 0%, 92% 100%, 0% 100%);
    margin-bottom: 1.2rem;
}

.service-icon svg { width: 24px; height: 24px; stroke: var(--yellow); fill: none; stroke-width: 1.8; }

.service-name {
    font-family: var(--font-display);
    font-size: var(--fs-4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.6rem;
}

.service-desc {
    line-height: 1.6;
    color: var(--gray-500);
    font-size: var(--fs-2);
}

/* ======================================
    Why Us 
   ====================================== */
.why-us {
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.why-us-content {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.why-us-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.why-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    animation: fadeUp 0.6s ease both;
}

.why-item:nth-child(2) { animation-delay: 0.1s; }
.why-item:nth-child(3) { animation-delay: 0.2s; }
.why-item:nth-child(4) { animation-delay: 0.3s; }

.why-number {
    font-family: var(--font-display);
    font-size: var(--fs-6);
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    min-width: 40px;
    opacity: 0.5;
    margin-right: 0.5rem
}

.why-title {
    font-family: var(--font-display);
    color: var(--white);
    font-size: var(--fs-3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.3rem;
}

.why-desc {
    color: var(--gray-500);
    font-size: var(--fs-3);
    line-height: 1.6;
}

.why-us-visual {
    background: var(--charcoal-light);
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.why-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border: 3px solid var(--yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
}

.why-badge-number {
    font-family: var(--font-display);
    font-size: var(--fs-6);
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.why-badge-text {
    font-family: var(--font-display);
    font-size: var(--fs-3);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-300);
    text-align: center;
    padding: 0 1rem;
    margin-top: 0.3rem;
}

/* ======================================
    How it works 
   ====================================== */

.how-content {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.how-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.8rem;
}


.how-number-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 3px solid var(--charcoal);
    border-radius: 50%;
    padding: 3px;
    margin-bottom: 2rem;
}

.how-number {
    background: var(--charcoal);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: var(--fs-5);
    color: var(--yellow);
    font-weight: 800;
}

.how-title {
    font-family: var(--font-display);
    color: var(--charcoal);
    font-size: var(--fs-4);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.how-desc {
    color: var(--gray-500);
    font-size: var(--fs-3);
    line-height: 1.4;
    
}

/* ======================================
    Reviews 
   ====================================== */

.reviews {
    background: var(--charcoal);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.review-rating {
    font-family: var(--font-display);
    color: var(--yellow);
    font-size: var(--fs-6);
    font-weight: 800;
    position: absolute;
    bottom: 0;
    right: 0;
    align-items: center;
}

.review-rating span {
    color: var(--gray-300);
    font-size: var(--fs-3);
    font-weight: 500;
}

.review-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.8rem;
}

.review-item {
    background: var(--charcoal-mid);
    padding: 2.2rem 2rem;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.review-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    opacity: 0%;
    background: var(--yellow);
    transition: opacity 0.35s ease;
}

.review-item:hover::after { opacity: 100%; }

.review-stars {
    color: var(--yellow);
    font-size: var(--fs-5);
    margin-bottom: 1.2rem;
}

.review-text {
    font-family: var(--font-display);
    color: var(--gray-300);
    font-size: var(--fs-3);
    letter-spacing: 0.08em;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.review-profile {
    display: flex;
    gap: 1rem;
}

.review-initials {
    font-family: var(--font-display);
    background: var(--charcoal-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: var(--fs-4);
    font-weight: 700;
}

.review-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-name {
    font-family: var(--font-display);
    color: var(--white);
    font-size: var(--fs-4);
    font-weight: 600;
    text-transform: uppercase;
}

.review-subtext {
    font-family: var(--font-display);
    color: var(--gray-300);
    font-size: var(--fs-2);
    display: flex;
}

.review-location::after {
    content: '•';
    margin: 0 0.5rem;
}

/* ======================================
    CTA 
   ====================================== */
.cta {
    background: var(--yellow);
}

.cta-content {
    display: flex;
    justify-content: space-between;
}

.cta-text p {
    color: var(--charcoal);
    font-family: var(--font-display);
    font-size: var(--fs-4);
    margin-top: 1.3rem;
}

.cta-text {
    margin-bottom: 3.2rem;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-display);
    font-size: var(--fs-3);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1.15rem 2.1rem;
    text-decoration: none;
    transition: transform 0.15s;
    clip-path: polygon(0 0, 100% 0%, 96% 100%, 0% 100%);
}

.cta-schedule .btn-dark {
    clip-path: polygon(4% 0, 100% 0%, 100% 100%, 0% 100%);
}

.btn-dark:hover { transform: translateY(-2px); }

/* ======================================
    Contact Forms 
   ====================================== */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
}

.contact-info {
    background: var(--white);
    padding: 5rem 5%;
}

.contact-info-header {
    margin-bottom: 2.8rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
}

.contact-info-icon {
    background: var(--charcoal);
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 2rem;
}

.contact-info-icon svg {
    height: 32px;
    width: 32px;
}

.contact-info-label {
    font-family: var(--font-display);
    color: var(--gray-500);
    font-size: var(--fs-3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-info-text {
    color: var(--charcoal);
    font-size: var(--fs-3);
}

.contact-form {
    background: var(--charcoal);
    padding: 5rem 5%;
}

.contact-form-header {
    margin-bottom: 2.8rem;
}

.contact-form-container {
    display: flex;
    flex-direction: column;
}

.contact-form-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-form-row div {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-form-label {
    color: var(--gray-500);
    font-family: var(--font-display);
    font-size: var(--fs-3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.contact-form-input {
    height: 3rem;
    width: auto;
    background: var(--charcoal-light);
    color: var(--gray-100);
    padding-left: 1rem;
    font-size: var(--fs-3);
    border: 0.5px solid var(--gray-500);
}

.contact-form-input:focus {
    border-color: var(--yellow);
    outline: none;
}

.contact-form-select {
    height: 3rem;
    background: var(--charcoal-light);
    color: var(--gray-300);
    padding-left: 1rem;
    font-size: var(--fs-3);
    margin-bottom: 2rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-form-describe {
    font-family: var(--font-body);
    resize: vertical;
    background: var(--charcoal-light);
    color: var(--gray-300);
    font-size: var(--fs-3);
    padding-left: 1rem;
    padding-top: 0.8rem;
    margin-bottom: 2rem;
    min-height: 3.3rem;
}

.btn-submit {
    background: var(--yellow);
    font-family: var(--font-display);
    font-size: var(--fs-3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.8rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-submit:hover { background: var(--yellow-dark); transform: translateY(-2px); }

/* ======================================
    Footer 
   ====================================== */
footer {
    background: var(--charcoal);
    border-top: 1px solid var(--charcoal-light);
    padding: 5rem 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
}

.footer-logo .nav-logo {
    height: 3rem;
    margin-bottom: 1.5rem;
}

.footer-logo .nav-logo-mark {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.footer-logo svg {
    width: 42px;
    height: 42px;
}

.footer-logo .nav-logo-text {
    font-size: var(--fs-4);
}

.footer-logo a {
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--gray-300);
    font-size: var(--fs-2);
    letter-spacing: 0.08em;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-nav p,
.footer-contact p {
    color: var(--yellow);
    font-family: var(--font-display);
    font-size: var(--fs-2);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-nav-links {
    list-style: none;
    font-size: var(--fs-2);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav-links a {
    text-decoration: none;
    color: var(--gray-300);
}

.footer-nav-links a:hover {
    color: var(--white);
}

/* ======================================
    Breakpoints 
   ====================================== */
@media (max-width: 1024px) {
    .contact { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    nav { padding: 0 1.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero-content {padding: 3rem 1.5rem; }
    .hero-actions { flex-wrap: nowrap; }
    .hero-stats { bottom: 1.5rem; left: 1.5rem; gap: 1.8rem; }

    section { padding: 3.5rem 5%; }

    .why-us { grid-template-columns: 1fr; }

    .services-grid { grid-template-columns: 1fr 1fr; }

    .how-list { grid-template-columns: 1fr; }

    .review-list { grid-template-columns: 1fr; }

    .reviews-header { flex-direction: column; }

    .review-rating { position: static; margin-top: 1rem;}

    .cta-content { flex-direction: column; margin-bottom: 1rem; }

    .cta-phone, .cta-schedule { display: flex; justify-content: center; }

    .contact-form-row { flex-direction: column; }

    .btn-dark {width: 280px; align-items: center; justify-content: center;}

    .footer-content { grid-template-columns: 1fr; gap: 2rem;}
}

@media (max-width: 480px) {
    .hero-bg-grid { opacity: 0.5; }
    .hero-stripe { display: none; }
    .hero-stripe-accent { display: none; }
    .hero h1 { font-size: 3rem; }
    .hero-actions { flex-wrap: wrap; font-size: 1.2rem;}
    .hero-stats {
        gap: 1rem;
        bottom: 1.5rem;
    }

    .services-grid { grid-template-columns: 1fr; }
}

@media (min-width: 320px) {
    .contact-form { padding: 5rem 2rem; }
}