/* ============================================
   TEMPLATE 4: BOLD INDUSTRIAL
   Autobody Shop Website Template
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #1c1c1c;
    --dark-alt: #242424;
    --dark-light: #2e2e2e;
    --dark-lighter: #3a3a3a;
    --red: #e63946;
    --red-dark: #c5303c;
    --orange: #ff6b35;
    --orange-dark: #e05a2b;
    --white: #ffffff;
    --gray-100: #f0f0f0;
    --gray-200: #d4d4d4;
    --gray-300: #a3a3a3;
    --gray-400: #737373;
    --gray-500: #525252;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--gray-200);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

ul {
    list-style: none;
}

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

/* --- Reveal Animations --- */
.js-animate .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-animate .reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: var(--white);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange), var(--red));
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-400);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-outline:hover {
    border-color: var(--red);
    color: var(--red);
    transform: translateY(-2px);
}

/* --- Section Shared Styles --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--orange);
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--orange);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.text-accent {
    color: var(--red);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* --- Diagonal Dividers --- */
.section-diagonal-top,
.section-diagonal-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
    z-index: 2;
}

.section-diagonal-top {
    top: -1px;
}

.section-diagonal-bottom {
    bottom: -1px;
}

.section-diagonal-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--dark);
    transform: skewY(-2deg);
    transform-origin: top left;
}

.section-diagonal-bottom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--dark);
    transform: skewY(2deg);
    transform-origin: bottom right;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-bracket {
    color: var(--red);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--gray-200);
    padding: 8px 12px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.nav-link:hover {
    color: var(--white);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--red), var(--orange));
    color: var(--white) !important;
    padding: 10px 20px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4); }
    50% { box-shadow: 0 0 16px 4px rgba(230, 57, 70, 0.3); }
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--orange), var(--red));
    transform: scale(1.08);
    animation: none;
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(28, 28, 28, 0.97) 0%, rgba(36, 36, 36, 0.9) 50%, rgba(28, 28, 28, 0.95) 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.015) 2px,
            rgba(255, 255, 255, 0.015) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.015) 2px,
            rgba(255, 255, 255, 0.015) 4px
        );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 60%);
}

.hero-geometric {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.geo-shape {
    position: absolute;
    border: 2px solid rgba(230, 57, 70, 0.1);
}

.geo-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    transform: rotate(45deg);
    border-color: rgba(230, 57, 70, 0.08);
}

.geo-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -50px;
    transform: rotate(30deg);
    border-color: rgba(255, 107, 53, 0.08);
}

.geo-shape-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 15%;
    transform: rotate(60deg);
    border-color: rgba(230, 57, 70, 0.12);
    background: rgba(230, 57, 70, 0.02);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
}

.hero-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tag-text {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--orange);
}

.tag-line {
    width: 40px;
    height: 2px;
    background: var(--orange);
}

.hero-logo {
    display: block;
    width: 100%;
    max-width: 750px;
    height: auto;
    margin: 0 auto 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.title-accent {
    background: linear-gradient(135deg, var(--red), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-300);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.hero-diagonal {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 4;
}

.hero-diagonal::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--dark);
    transform: skewY(-2deg);
    transform-origin: bottom right;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background:
        linear-gradient(180deg, var(--dark) 0%, var(--dark-alt) 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 255, 255, 0.01) 50px,
            rgba(255, 255, 255, 0.01) 51px
        );
    padding: 60px 0;
    position: relative;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    color: var(--red);
    flex-shrink: 0;
}

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

.trust-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
}

.trust-text span {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.trust-divider {
    width: 2px;
    height: 40px;
    background: var(--dark-lighter);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(180deg, var(--dark-alt) 0%, var(--dark-light) 50%, var(--dark-alt) 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.005) 20px,
            rgba(255, 255, 255, 0.005) 21px
        );
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(42, 42, 42, 0.8) 0%, rgba(36, 36, 36, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px 28px 32px;
    transition: var(--transition);
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 57, 70, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(230, 57, 70, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-stripe {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    color: var(--red);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--orange);
    transform: scale(1.1);
}

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

.service-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gray-400);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
}

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

.about-text {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 32px;
    display: grid;
    gap: 14px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
}

.feature-marker {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    flex-shrink: 0;
}

.about-visual {
    position: relative;
}

.about-image-block {
    position: relative;
}

.about-image-placeholder {
    background:
        linear-gradient(135deg, var(--dark-alt) 0%, var(--dark-light) 100%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.02) 10px,
            rgba(255, 255, 255, 0.02) 11px
        );
    border: 2px dashed var(--dark-lighter);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.about-image-placeholder svg {
    width: 120px;
    height: 120px;
    color: var(--dark-lighter);
}

.about-image-placeholder span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--gray-500);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.stat-block {
    background: var(--dark-alt);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-top: 8px;
}

/* ============================================
   GLASS SECTION
   ============================================ */
.glass {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(180deg, var(--dark-alt) 0%, var(--dark-light) 50%, var(--dark-alt) 100%);
}

.glass-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.glass-highlight {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08) 0%, rgba(42, 42, 42, 0.6) 100%);
    border: 1px solid rgba(230, 57, 70, 0.2);
    padding: 40px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.highlight-badge {
    position: absolute;
    top: 20px;
    right: 36px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--orange));
    padding: 8px 20px;
    letter-spacing: 3px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.glass-highlight h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-highlight p {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 24px;
}

.glass-disclaimer {
    display: flex;
    gap: 14px;
    background: rgba(255, 107, 53, 0.08);
    border-left: 3px solid var(--orange);
    padding: 16px 20px;
    margin-top: 20px;
}

.glass-disclaimer svg {
    width: 24px;
    height: 24px;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.glass-disclaimer p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 0;
}

.glass-services-list {
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 40px;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.glass-services-list h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-list {
    display: grid;
    gap: 14px;
}

.glass-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--gray-200);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.glass-list li:hover {
    color: var(--white);
    padding-left: 8px;
}

.glass-list li:last-child {
    border-bottom: none;
}

.glass-bullet {
    width: 8px;
    height: 8px;
    background: var(--red);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    flex-shrink: 0;
}

/* ============================================
   INSURANCE SECTION
   ============================================ */
.insurance {
    padding: 100px 0;
    background: var(--dark);
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.insurance-card {
    background: var(--dark-alt);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 44px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.insurance-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.insurance-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 57, 70, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.insurance-card:hover::after {
    transform: scaleX(1);
}

.insurance-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--red);
}

.insurance-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.insurance-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.insurance-card p {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.7;
}

/* ============================================
   COURTESY CARS SECTION
   ============================================ */
.courtesy {
    position: relative;
    padding: 120px 0;
    background-color: var(--dark-alt);
}

.courtesy-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.courtesy-card {
    background: linear-gradient(145deg, var(--dark-light), var(--dark));
    border: 1px solid var(--dark-lighter);
    padding: 40px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    transition: var(--transition);
}

.courtesy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--red), var(--orange));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.courtesy-card:hover::before {
    transform: scaleX(1);
}

.courtesy-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

.courtesy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--orange);
}

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

.courtesy-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.courtesy-type {
    font-size: 0.85rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.courtesy-note {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--gray-400);
    font-style: italic;
}

@media (max-width: 768px) {
    .courtesy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .courtesy-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands {
    position: relative;
    padding: 120px 0;
    background: var(--dark-alt);
}

/* Marquee */
.brands-marquee {
    overflow: hidden;
    margin-bottom: 50px;
    position: relative;
}

.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark-alt) 0%, transparent 100%);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark-alt) 0%, transparent 100%);
}

.brands-track {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
}

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

.brand-item {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gray-500);
    white-space: nowrap;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.brand-item:hover {
    color: var(--red);
    border-color: rgba(230, 57, 70, 0.3);
}

/* Brand Grid */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.brand-grid-item {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gray-400);
    text-align: center;
    padding: 20px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    text-transform: uppercase;
    cursor: default;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.brand-grid-item:hover {
    background: rgba(230, 57, 70, 0.08);
    border-color: rgba(230, 57, 70, 0.3);
    color: var(--white);
    transform: translateY(-4px);
}

/* ============================================
   ESTIMATE FORM SECTION
   ============================================ */
.estimate {
    padding: 100px 0;
    background:
        linear-gradient(180deg, var(--dark) 0%, var(--dark-alt) 100%);
}

.estimate-form-wrap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.estimate-form {
    background: var(--dark-alt);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.form-section {
    margin-bottom: 36px;
}

.form-section-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.form-section-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    margin-top: 20px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gray-300);
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1.1rem;
    margin-top: 12px;
}

.btn-submit .btn-icon svg {
    width: 20px;
    height: 20px;
}

/* Form Success State */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: var(--dark-alt);
    border: 1px solid rgba(255, 255, 255, 0.06);
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.form-success.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--red);
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

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

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.form-success p {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    background:
        linear-gradient(180deg, var(--dark-light) 0%, #111111 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.01) 80px,
            rgba(255, 255, 255, 0.01) 81px
        );
    padding: 100px 0 40px;
}

.footer-diagonal {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.footer-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--dark);
    transform: skewY(2deg);
    transform-origin: top right;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

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

.footer-brand p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--red);
}

.footer-links li,
.footer-services li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-services li {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--red);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--red);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.footer-credit {
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (max-width: 768px) {
    /* Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(28, 28, 28, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 4px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 14px 0;
        width: 100%;
    }

    .nav-link::after {
        bottom: 10px;
        left: 0;
        right: auto;
        width: 30px;
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
        width: 100%;
        display: block;
        padding: 16px 24px;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2.2rem, 7vw, 3.5rem);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Trust */
    .trust-items {
        flex-direction: column;
        gap: 24px;
    }

    .trust-divider {
        width: 40px;
        height: 2px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* About */
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Glass */
    .glass-layout {
        grid-template-columns: 1fr;
    }

    /* Insurance */
    .insurance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Brands */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Form */
    .estimate-form {
        padding: 28px 20px;
    }

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

    .form-grid-3 {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Diagonals smaller on mobile */
    .section-diagonal-top,
    .section-diagonal-bottom,
    .hero-diagonal,
    .footer-diagonal {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .brand-item {
        font-size: 1rem;
        padding: 10px 18px;
    }

    .highlight-badge {
        position: static;
        display: inline-block;
        margin-bottom: 16px;
    }
}
