/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #E30613;
    --red-dark: #B8050F;
    --black: #0a0a0a;
    --dark: #111111;
    --dark-gray: #1a1a1a;
    --silver: #c0c0c0;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --light-gray: #e8e8e8;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --text-muted: #888888;
    --border-color: #ddd;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --nav-height: 165px;

    /* Legacy aliases for admin modal */
    --primary-color: var(--dark-gray);
    --secondary-color: var(--red);
    --accent-color: var(--red);
    --bg-light: var(--off-white);
    --bg-white: var(--white);
    --bg-section-alt: var(--off-white);
    --shadow-hover: 0 8px 24px rgba(227, 6, 19, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

/* Carbon fiber weave — reusable on dark sections */
.textured-dark {
    --carbon-cell: 10px;
    background-color: #080808;
    background-image:
        repeating-linear-gradient(
            45deg,
            #0a0a0a 0px,
            #0a0a0a 2px,
            #1c1c1c 2px,
            #252525 4px,
            #141414 4px,
            #141414 6px,
            #0a0a0a 6px,
            #0a0a0a var(--carbon-cell)
        ),
        repeating-linear-gradient(
            -45deg,
            #0a0a0a 0px,
            #0a0a0a 2px,
            #1c1c1c 2px,
            #252525 4px,
            #141414 4px,
            #141414 6px,
            #0a0a0a 6px,
            #0a0a0a var(--carbon-cell)
        );
    background-size: var(--carbon-cell) var(--carbon-cell), var(--carbon-cell) var(--carbon-cell);
}

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

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.navbar .container {
    padding-left: clamp(28px, 5vw, 56px);
    padding-right: clamp(28px, 5vw, 56px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--nav-height);
    padding: 10px 0;
    gap: 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    padding-left: 8px;
}

.nav-logo {
    height: 150px;
    width: auto;
    max-width: 380px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
}

.nav-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-left: auto;
}

.nav-location {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
}

.star-icon {
    color: var(--red);
    font-size: 0.65rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}

.nav-menu a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--red);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== HERO ===== */
.hero {
    margin-top: var(--nav-height);
    border-bottom: 3px solid var(--red);
    padding: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    padding: 3.5rem 0 3rem;
}

.hero-text {
    max-width: 560px;
}

.hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.12;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2rem;
    line-height: 1.75;
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--red);
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    transition: background 0.25s, border-color 0.25s;
}

.highlight-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.highlight-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.35rem;
}

.highlight-card strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.highlight-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

.hero-trust-bar {
    background: rgba(0, 0, 0, 0.45);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem 2rem;
    padding: 1rem 0;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.trust-divider {
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--red);
}

/* ===== SECTIONS ===== */
section {
    padding: 72px 0;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    font-size: 1.05rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-eyebrow--dark {
    color: var(--red);
}

.section-title--light {
    color: var(--white);
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.65);
}

/* ===== SERVICES ===== */
.services {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.service-card {
    text-align: left;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.service-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-sm);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--red);
}

.service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ===== ABOUT ===== */
.about {
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.15;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
}

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

.about-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-lead strong {
    color: var(--white);
}

.about-text {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-main .btn {
    margin-top: 0.5rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding-top: 0.5rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.value-item h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.value-item p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
}

/* ===== PORTFOLIO ===== */
.portfolio {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.portfolio-header {
    margin-bottom: 3rem;
}

.portfolio-header .section-title {
    margin-bottom: 0.75rem;
}

.portfolio-header .section-subtitle {
    margin-bottom: 0;
}

.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.portfolio-item {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover,
.portfolio-item.expanded {
    border-color: rgba(227, 6, 19, 0.45);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.portfolio-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
}

.portfolio-image-container {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image-container img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.portfolio-item:hover .portfolio-image-container img {
    transform: scale(1.04);
}

.portfolio-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-image-container:hover .portfolio-image-overlay {
    opacity: 1;
}

.portfolio-view-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    padding: 10px 24px;
    border-radius: 3px;
}

.portfolio-photo-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    padding: 6px 12px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.portfolio-info {
    padding: 2.5rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.portfolio-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.portfolio-info h3::before {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--red);
    margin-bottom: 1rem;
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
    line-height: 1.7;
}

.portfolio-expand {
    align-self: flex-start;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 20px;
    min-height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    transition: all 0.25s;
}

.portfolio-expand:hover {
    border-color: var(--red);
    color: var(--red);
}

.portfolio-item.expanded .portfolio-expand {
    background: rgba(227, 6, 19, 0.12);
    border-color: var(--red);
    color: var(--red);
}

.expand-icon {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1;
}

.portfolio-gallery {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.35);
}

.portfolio-gallery.active {
    display: block;
    animation: gallerySlide 0.35s ease;
}

@keyframes gallerySlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-gallery-inner {
    padding: 1.75rem 2rem 2rem;
}

.portfolio-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.gallery-count {
    color: var(--red);
}

.portfolio-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.gallery-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.25s, transform 0.25s;
}

.gallery-thumb:hover {
    border-color: var(--red);
    transform: scale(1.03);
    z-index: 1;
}

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

.gallery-thumb--main {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 200px;
}

.thumb-badge {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    padding: 3px 8px;
    border-radius: 2px;
}

/* ===== AREAS SERVED ===== */
.areas-served {
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.area-card {
    padding: 1.75rem 1.5rem;
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--red);
    border-radius: 4px;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.area-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(227, 6, 19, 0.35);
}

.area-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.area-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
}

.area-card a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.area-card a:hover {
    text-decoration: underline;
}

/* ===== FAQ ===== */
.faq {
    background: var(--off-white);
}

.faq-list {
    max-width: 800px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq-item[open] {
    border-color: rgba(227, 6, 19, 0.35);
}

.faq-item summary {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--red);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.98rem;
}

.faq-item p a {
    color: var(--red);
    font-weight: 600;
    text-decoration: none;
}

.faq-item p a:hover {
    text-decoration: underline;
}

/* ===== REVIEWS ===== */
.reviews {
    background: var(--light-gray);
}

.reviews-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

.review-card,
.review-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
}

.review-card:hover,
.review-item:hover {
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--red);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-style: italic;
    line-height: 1.65;
    font-size: 0.95rem;
}

.review-author {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.review-form-section {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.review-form-section h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    transition: border-color 0.25s;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.1);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== CTA BAR ===== */
.cta-bar {
    background: var(--red);
    padding: 2.5rem 0;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--white);
}

.cta-text {
    flex: 1;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 200px;
}

.cta-text strong {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-text span {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.contact-info {
    max-width: 640px;
}

.contact-info h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227, 6, 19, 0.08);
    border-radius: 4px;
    margin-top: 2px;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--red);
}

.contact-item strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-item a {
    color: var(--red);
    text-decoration: none;
    transition: color 0.25s;
}

.contact-item a:hover {
    color: var(--red-dark);
    text-decoration: underline;
}

.map-container {
    margin-top: 2rem;
}

.map-container h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    text-align: center;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    border: none;
}

/* ===== FOOTER ===== */
.footer {
    color: rgba(255, 255, 255, 0.8);
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 240px;
    width: auto;
    max-width: 420px;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.25s;
}

.footer-col a:hover {
    color: var(--red);
}

.footer-blurb {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.3px;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.92);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--red);
}

.modal-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    top: 50%;
    transform: translateY(-50%);
}

.modal-prev,
.modal-next {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 40px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(227, 6, 19, 0.6);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== ADMIN MODAL (unchanged functionality) ===== */
.admin-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

.admin-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-modal-content {
    background: white;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.admin-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-modal-header h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
}

.admin-modal-close {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.admin-modal-close:hover {
    color: var(--accent-color);
}

.admin-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.gallery-manager {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    min-height: 500px;
}

.gallery-list-section {
    border-right: 2px solid var(--border-color);
    padding-right: 1rem;
}

.gallery-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.gallery-list-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
}

.gallery-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gallery-item {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.gallery-item:hover {
    border-color: var(--accent-color);
    background: rgba(227, 6, 19, 0.05);
}

.gallery-item.active {
    border-color: var(--accent-color);
    background: rgba(227, 6, 19, 0.1);
}

.gallery-item-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.gallery-item-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery-item-count {
    font-size: 0.75rem;
    color: var(--text-light);
}

.gallery-item-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.gallery-item-actions button {
    padding: 4px 8px;
    font-size: 0.75rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: var(--border-color);
    color: var(--text-dark);
    transition: all 0.3s;
}

.gallery-item-actions button:hover {
    background: var(--accent-color);
    color: white;
}

.gallery-item-actions .delete-btn:hover {
    background: #cc0000;
    color: white;
}

.gallery-editor-section {
    overflow-y: auto;
}

.gallery-editor {
    display: none;
}

.gallery-editor.active {
    display: block;
}

.no-gallery-selected {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.gallery-info-form {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--border-color);
}

.gallery-info-form h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.image-sorter {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.sortable-image-item {
    position: relative;
    cursor: move;
    border: 3px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.sortable-image-item:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
}

.sortable-image-item.dragging {
    opacity: 0.5;
    border-color: var(--accent-color);
}

.sortable-image-item img {
    width: 100%;
    height: auto;
    min-height: 120px;
    max-height: 200px;
    object-fit: contain;
    display: block;
}

.sortable-image-item .image-number {
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.sortable-image-item .main-image-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
}

.admin-modal-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.management-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.file-drop-zone {
    border: 3px dashed var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    background: var(--bg-light);
    cursor: pointer;
    transition: all 0.3s;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-drop-zone:hover,
.file-drop-zone.drag-over {
    border-color: var(--accent-color);
    background: rgba(227, 6, 19, 0.05);
}

.drop-zone-content {
    width: 100%;
}

.drop-zone-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.file-drop-zone p {
    color: var(--text-dark);
    margin: 0.5rem 0;
    font-weight: 500;
}

.drop-zone-subtitle {
    font-size: 0.9rem;
    color: var(--text-light) !important;
    font-weight: 400 !important;
}

.trash-zone {
    border: 3px dashed var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    background: var(--bg-light);
    transition: all 0.3s;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.trash-zone.drag-over {
    border-color: #cc0000;
    background: rgba(204, 0, 0, 0.1);
    transform: scale(1.05);
}

.trash-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.trash-zone p {
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

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

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

    .about-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 100px;
    }

    .navbar .container {
        padding-left: 22px;
        padding-right: 18px;
    }

    .nav-brand {
        padding-left: 4px;
    }

    .hamburger {
        margin-right: 2px;
    }

    .nav-logo {
        height: 88px;
        max-width: 240px;
    }

    .nav-right {
        display: block;
        position: static;
        margin-left: 0;
    }

    .nav-location {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--nav-height);
        flex-direction: column;
        background-color: #080808;
        background-image:
            repeating-linear-gradient(45deg, #0a0a0a 0px, #0a0a0a 2px, #1c1c1c 2px, #252525 4px, #141414 4px, #141414 6px, #0a0a0a 6px, #0a0a0a 10px),
            repeating-linear-gradient(-45deg, #0a0a0a 0px, #0a0a0a 2px, #1c1c1c 2px, #252525 4px, #141414 4px, #141414 6px, #0a0a0a 6px, #0a0a0a 10px);
        background-size: 10px 10px, 10px 10px;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 1.5rem 0;
        box-shadow: var(--shadow-lg);
        gap: 0;
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
        z-index: 999;
        align-items: stretch;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(227, 6, 19, 0.15);
    }

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

    .hamburger {
        display: flex;
    }

    section {
        padding: 56px 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 1.75rem;
    }

    .hero-text {
        max-width: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-eyebrow {
        letter-spacing: 2px;
    }

    .hero-subtitle {
        max-width: 36rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: none;
        display: block;
    }

    .hero-highlights {
        width: 100%;
    }

    .highlight-card {
        text-align: left;
    }

    .hero-trust-inner {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 0;
        text-align: center;
    }

    .trust-divider {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .reviews-cards {
        grid-template-columns: 1fr;
    }

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

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .footer-col h4 {
        justify-content: center;
    }

    .portfolio-card {
        grid-template-columns: 1fr;
    }

    .portfolio-image-container {
        min-height: 240px;
    }

    .portfolio-image-container img {
        min-height: 240px;
    }

    .portfolio-info {
        padding: 1.75rem 1.5rem;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .portfolio-gallery-inner {
        padding: 1.25rem 1rem 1.5rem;
    }

    .gallery-thumb--main {
        grid-column: span 1;
        grid-row: span 1;
        min-height: 160px;
    }

    .portfolio-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }

    .gallery-manager {
        grid-template-columns: 1fr;
    }

    .gallery-list-section {
        border-right: none;
        border-bottom: 2px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .management-tools {
        grid-template-columns: 1fr;
    }

    .admin-modal-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .admin-modal-actions .btn {
        width: 100%;
        margin-left: 0 !important;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    :root {
        --nav-height: 88px;
    }

    .nav-logo {
        height: 76px;
        max-width: 210px;
    }

    .hero-inner {
        padding: 1.75rem 0 1.5rem;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .review-form-section {
        padding: 1.75rem 1.25rem;
    }

    .map-wrapper iframe {
        height: 280px;
    }
}
