/* Base & Variables */
:root {
    --primary: #990033;
    --primary-hover: #7F1D1D;
    --dark: #0F172A;
    --light: #F8F9FA;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(153, 27, 27, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.5;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.main-content {
    padding-top: 5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s, transform 0.2s;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: 80rem;
    /* 7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section-py {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

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

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

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary);
}

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

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.bg-light {
    background-color: var(--light);
}

.gap-24 {
    gap: 6rem;
}

.gap-32 {
    gap: 8rem;
}

.bg-white {
    background-color: var(--white);
}

.honey-pot {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}

.bg-dark {
    background-color: var(--dark);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.bg-gray-100 {
    background-color: var(--gray-100);
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.grid {
    display: grid;
}

/* Extended Grid Utils */
.items-center {
    align-items: center;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-12 {
    gap: 3rem;
}

@media (min-width: 768px) {
    .gap-12 {
        gap: 3rem;
    }
}

.w-full {
    width: 100%;
}

.max-w-2xl {
    max-width: 42rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.pl-5 {
    padding-left: 1.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-gray-100 {
    border-color: var(--gray-100);
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.list-disc {
    list-style-type: disc;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-y-8>*+* {
    margin-top: 2rem;
}

.object-cover {
    object-fit: cover;
}

.h-auto {
    height: auto;
}

.border-collapse {
    border-collapse: collapse;
}

.divide-y>*+* {
    border-top-width: 1px;
    border-top-style: solid;
}

.divide-gray-100>*+* {
    border-color: var(--gray-100);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
}

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

.btn-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 10px 15px -3px rgba(153, 0, 51, 0.2);
    display: inline-block;
    /* Fix for links looking broken */
}

.btn-cta:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: var(--white);
    z-index: 40;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.6);
    z-index: 10;
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}


.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-highlight {
    color: var(--primary);
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-text {
    font-size: 1.25rem;
    color: var(--gray-100);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero {
    position: relative;
    padding: 8rem 0 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark);
    margin-bottom: 2rem;
}

.page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
}

.page-hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 56rem;
    padding: 0 1rem;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 3.5rem;
    }
}

.page-hero-eyebrow {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ... existing hero buttons ... */

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-hero-primary {
    width: 100%;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 9999px;
    font-size: 1.125rem;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
}

.btn-hero-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-4px);
}

@media (min-width: 640px) {
    .btn-hero-primary {
        width: auto;
    }
}

.btn-hero-secondary {
    width: 100%;
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    color: var(--white);
    font-weight: 700;
    border-radius: 9999px;
    font-size: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 640px) {
    .btn-hero-secondary {
        width: auto;
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: var(--white);
    font-weight: 500;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}


/* Services Grid */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gap-8 {
    gap: 2rem;
}

.card {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.card:hover {
    box-shadow: var(--shadow-premium);
}

.card-dark {
    background: var(--dark);
    color: var(--white);
    grid-column: span 1;
}

@media (min-width: 768px) {
    .col-span-2 {
        grid-column: span 2;
    }
}

.card-img-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    min-height: 300px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5), transparent);
}

.card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    color: var(--white);
}


/* Reusable Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-eyebrow {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

/* Services */
.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.card-icon-primary {
    background: rgba(153, 0, 51, 0.1);
}

.card-icon-light {
    background: rgba(255, 255, 255, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.card-text {
    color: var(--gray-600);
    line-height: 1.625;
}

.card-large {
    padding: 0;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.card-large-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-large-text {
    color: var(--gray-100);
    margin-bottom: 1rem;
    max-width: 32rem;
    font-weight: 500;
    text-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    text-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-link svg {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
}

.card-dark-content {
    flex: 1;
}

.card-dark .card-title {
    color: var(--white);
}

.card-dark .card-text {
    color: var(--gray-400);
}


/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 4rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.625;
}

.location-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.location-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
    list-style: none;
}

.location-item {
    display: flex;
    align-items: center;
}

.location-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--primary);
    border-radius: 9999px;
    margin-right: 0.5rem;
}

.image-badge-container {
    position: relative;
}

.image-badge-img-wrapper {
    aspect-ratio: 1/1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-premium);
    max-width: 20rem;
    z-index: 10;
}

.experience-number {
    color: var(--primary);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.experience-text {
    color: var(--gray-600);
    font-weight: 500;
}

/* SEO Section */
.seo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.seo-text-block {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.625;
}

.seo-text-block p {
    margin-bottom: 1.5rem;
}

.seo-highlight {
    color: var(--gray-900);
    font-weight: 500;
}

.seo-feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.seo-feature {
    display: flex;
    gap: 1.5rem;
}

.seo-icon {
    width: 3rem;
    height: 3rem;
    background: var(--light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.seo-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.seo-feature-text {
    color: var(--gray-600);
}


/* Process Section */
.process-grid {
    gap: 3rem;
}

.process-step {
    text-align: center;
}

.step-icon-wrapper {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    background: var(--light);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(153, 0, 51, 0.1);
    position: relative;
    transition: all 0.3s;
}

.process-step:hover .step-icon-wrapper {
    transform: scale(1.05);
    border-color: var(--primary);
}

.step-icon {
    font-size: 1.875rem;
}

.step-number {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 2rem;
    height: 2rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--gray-500);
    line-height: 1.625;
    padding: 0 1rem;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.decoration-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(3rem);
    z-index: 1;
}

.decoration-blob-1 {
    top: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(153, 0, 51, 0.2);
    transform: translate(-50%, -50%);
}

.decoration-blob-2 {
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(153, 0, 51, 0.1);
    transform: translate(33%, 33%);
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    position: relative;
    z-index: 10;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
    cursor: default;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.review-stars {
    color: #FBBF24;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    display: flex;
}

.review-text {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.avatar-primary {
    background: var(--primary);
}

.avatar-gray {
    background: var(--gray-600);
}

.reviewer-name {
    font-weight: 700;
}

.reviewer-location {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


/* FAQ Section */
.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-toggle {
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.faq-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.faq-nav-sticky {
    position: sticky;
    top: 5rem;
    z-index: 40;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.faq-nav-list {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 0.25rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}

.faq-nav-list::-webkit-scrollbar {
    display: none;
}

.faq-nav-item {
    white-space: nowrap;
    padding: 0.25rem 0;
    background: transparent;
    color: var(--gray-600);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid transparent;
}

.faq-nav-item:hover {
    background: transparent;
    color: var(--primary);
}

.faq-nav-item.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: transparent;
    box-shadow: none;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-content {
    color: var(--gray-600);
    margin-top: 1rem;
    line-height: 1.625;
}

/* Contact Section */
.contact-container {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
        align-items: start;
    }
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.contact-info-text {
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-700);
    font-weight: 500;
}

.contact-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-link:hover {
    color: var(--primary);
}

.contact-hours {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary);
    line-height: 1.6;
    color: var(--gray-600);
}

.contact-form-panel {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--gray-50);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(153, 0, 51, 0.1);
}

.form-textarea {
    resize: vertical;
}

.form-footer {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox {
    margin-top: 0.25rem;
    width: 1rem;
    height: 1rem;
    accent-color: var(--primary);
}

.form-disclaimer {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
    border: none;
    font-size: 1.125rem;
    cursor: pointer;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Brands Section */
.brands-eyebrow {
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    opacity: 0.7;
}

.brand-text {
    font-size: 1.5rem;
    color: var(--gray-400);
    transition: all 0.3s;
}

.brand-text:hover {
    color: var(--primary);
    transform: scale(1.05);
}



/* Footer */
/* Footer */
/* Footer */
footer {
    border-top: 1px solid var(--gray-800);
    margin-bottom: 0;
    width: 100%;
}

.footer-container {
    background-color: var(--dark);
    color: var(--gray-400);
    padding: 4rem 0 0;
    margin-bottom: 0;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    height: 3rem;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    /* Make logo white for dark theme */
    opacity: 0.9;
}

.footer-text {
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 20rem;
}

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

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-link {
    transition: color 0.2s;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* --- Refactored Components --- */

/* Global Selections */
::selection {
    background-color: var(--primary);
    color: var(--white);
}

/* Header & Navigation */
.nav-logo {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--gray-800);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.menu-toggle:hover {
    color: var(--primary);
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle-icon {
    width: 2rem;
    height: 2rem;
}

/* Mobile Menu */
.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--gray-700);
    border: none;
    background: transparent;
    cursor: pointer;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.mobile-cta {
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
}

.sticky-call {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: var(--white);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 50;
    transition: transform 0.2s, background-color 0.2s;
    animation: pulse 2s infinite;
}

.sticky-call:hover {
    background-color: var(--primary-hover);
    animation: none;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(153, 0, 51, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(153, 0, 51, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(153, 0, 51, 0);
    }
}

.sticky-call svg {
    width: 1.75rem;
    height: 1.75rem;
}

/* 404 Page */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.error-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-50);
    padding: 5rem 1rem;
    text-align: center;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 2rem;
}

.error-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.error-text {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Utility States */
.no-scroll {
    overflow: hidden;
}

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

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}


@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    background-color: var(--gray-100);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* FAQ Sticky Nav */
.faq-nav-sticky {
    position: sticky;
    top: 5rem;
    /* Height of main nav */
    z-index: 30;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.faq-nav-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-nav-item {
    font-weight: 600;
    color: var(--gray-600);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    transition: all 0.2s;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.faq-nav-item:hover {
    background-color: var(--gray-50);
    color: var(--primary);
}

.faq-nav-item.active {
    background-color: rgba(153, 0, 51, 0.1);
    color: var(--primary);
    border-color: rgba(153, 0, 51, 0.2);
}

@media (max-width: 768px) {
    .faq-nav-sticky {
        top: 4rem;
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .faq-nav-list {
        justify-content: flex-start;
        width: max-content;
    }
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-info-btn {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.gallery-item:hover .gallery-info-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: -1rem;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: transform 0.2s;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

/* FAQ Polish */
.faq-hero-enhanced {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.faq-section-header {
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.faq-header-icon {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-card-improved {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.faq-card-improved:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: var(--primary-light);
}

.faq-card-improved .faq-header {
    margin-bottom: 0;
}

.faq-card-improved .faq-content {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-50);
}