/* ============================================
   LEXFAK FULL DETAIL CENTER - MASTER STYLESHEET
   UPDATED: New Location, Hours, Stan Paraclete Credit
   ============================================ */

:root {
    --green: #4CAF50;
    --green-light: #8BC34A;
    --green-dark: #2E7D32;
    --black: #000000;
    --black-light: #111111;
    --white: #FFFFFF;
    --gray: #CCCCCC;
    --gray-dark: #999999;
}

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

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== CURSOR SYSTEM - PERFECT ===== */
@media (min-width: 1024px) {
    body, body * {
        cursor: none !important;
    }
}

.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--green);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: width 0.1s ease, height 0.1s ease, background 0.1s ease, opacity 0.1s ease;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.7);
    opacity: 0.95;
    left: 0;
    top: 0;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--green-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.5;
    left: 0;
    top: 0;
}

body.cursor-hover .custom-cursor {
    width: 32px;
    height: 32px;
    background: var(--green-light);
    opacity: 0.7;
    mix-blend-mode: screen;
}

body.cursor-hover .cursor-follower {
    width: 56px;
    height: 56px;
    border-color: var(--green);
    opacity: 0.4;
}

/* ===== PARTICLES BACKGROUND ===== */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.loading-logo {
    margin-bottom: 3rem;
}

.logo-text {
    font-family: 'Space Grotesk', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
}

.logo-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--green);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    animation: logoReveal 1.5s infinite;
}

.logo-subtitle {
    font-size: 1.2rem;
    color: var(--green);
    margin-top: 1rem;
    letter-spacing: 2px;
}

.loading-progress {
    width: 100%;
}

.progress-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    animation: loadingProgress 2s ease-in-out forwards;
}

.loading-text {
    font-size: 0.875rem;
    color: var(--green);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== NAVIGATION ===== */
.nav-2026 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.nav-2026.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.98);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.2s ease;
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-main {
    display: flex;
    gap: 2px;
}

.logo-letter {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    transition: all 0.2s ease;
}

.logo-letter:nth-child(odd) {
    color: var(--green);
}

.logo-letter:nth-child(even) {
    color: var(--white);
}

.logo-sub {
    display: flex;
    flex-direction: column;
    margin-left: 0.5rem;
}

.logo-detail {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-tag {
    font-size: 0.55rem;
    color: var(--gray);
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    position: relative;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero-2026,
.page-hero {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-hero {
    min-height: 60vh;
    padding: 120px 2rem 4rem;
    text-align: center;
    justify-content: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.page-hero .hero-container {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-glow {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulseGlow 1.5s infinite;
}

.hero-title {
    font-family: 'Space Grotesk', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.highlight {
    color: var(--green);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
}

.page-hero .hero-description {
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    position: relative;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.btn-secondary:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--green);
    color: var(--green);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    font-family: 'Space Grotesk', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    min-height: 400px;
    height: auto;
    display: flex;
    align-items: center;
}

.car-3d-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== VIDEO/IMAGE CONTAINER - RESPONSIVE ===== */
.car-placeholder {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(76, 175, 80, 0.03);
    border: 2px dashed rgba(76, 175, 80, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.car-placeholder video,
.car-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
}

.car-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 22px;
}

.car-outline {
    width: 80%;
    height: 50%;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 16px;
    position: relative;
    animation: float 6s infinite ease-in-out;
}

.car-reflect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
    animation: reflect 3s infinite;
}

.floating-cards {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.floating-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 200px;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.2);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.card-content h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--white);
}

.card-content p {
    font-size: 0.8rem;
    color: var(--gray);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--green);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--green);
    letter-spacing: 2px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 6rem 2rem;
    background: var(--black-light);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Space Grotesk', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.7;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: var(--black);
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.2);
}

.step-number {
    font-family: 'Space Grotesk', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(76, 175, 80, 0.1);
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray);
    line-height: 1.7;
}

.step-visual {
    margin-top: 2rem;
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--green);
}

/* ===== SERVICES SECTION ===== */
.services-preview {
    padding: 6rem 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.service-card {
    background: var(--black);
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--green-light));
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.2);
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--green);
}

.service-title {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-size: 0.875rem;
    color: var(--green);
    display: block;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.price-item.highlight {
    background: rgba(76, 175, 80, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.vehicle-type {
    font-size: 0.875rem;
    color: var(--gray);
}

.price,
.price-range,
.starting-price {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    color: var(--green);
}

.service-note {
    font-size: 0.75rem;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray);
}

.service-features i {
    color: var(--green);
}

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

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

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

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--green);
    color: var(--green);
    gap: 1.5rem;
}

/* ===== GALLERY SECTION ===== */
.gallery-preview {
    padding: 6rem 2rem;
    background: var(--black-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.comparison-item {
    position: relative;
}

.comparison-container {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    width: 50%;
    overflow: hidden;
}

.image-label {
    position: absolute;
    top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 4px;
    z-index: 10;
}

.before-image .image-label {
    left: 1rem;
}

.after-image .image-label {
    right: 1rem;
    background: rgba(76, 175, 80, 0.2);
    color: var(--green);
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: var(--green);
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 20;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.comparison-slider:hover .slider-handle {
    transform: translate(-50%, -50%) scale(1.1);
}

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

.comparison-caption h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.comparison-caption p {
    font-size: 0.875rem;
    color: var(--gray);
}

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

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-gallery:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--black), var(--black-light));
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-title {
    font-family: 'Space Grotesk', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

.contact-item i {
    width: 48px;
    height: 48px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--green);
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--green);
    margin-bottom: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value:hover {
    color: var(--green);
}

.quote-form {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-select,
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.form-select:focus,
.form-input:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

/* ===== FOOTER - UPDATED WITH STAN PARACLETE CREDIT ===== */
.footer-2026 {
    background: var(--black);
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    padding: 4rem 2rem 2rem;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

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

.footer-logo .logo-text {
    font-family: 'Space Grotesk', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    display: block;
}

.footer-logo .logo-subtext {
    font-size: 0.875rem;
    color: var(--green);
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.social-link:hover {
    background: var(--green);
    color: var(--black);
    transform: translateY(-3px);
}

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

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

.link-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-item {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.link-item:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
}

.footer-copyright p {
    font-size: 0.875rem;
    color: var(--gray);
}

.footer-note {
    font-size: 0.75rem;
    color: var(--green);
    margin-top: 0.5rem;
}

/* STAN PARACLETE CREDIT - ADD THIS TO ALL FOOTERS */
.footer-credit {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.footer-credit a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--green-light);
    text-decoration: underline;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-text {
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* ===== ABOUT PAGE ===== */
.about-story {
    padding: 6rem 2rem;
}

.story-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-content .section-title {
    text-align: left;
}

.story-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--green), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-dot {
    position: absolute;
    left: -6px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--green);
    border-radius: 50%;
    border: 2px solid var(--black);
}

.timeline-year {
    font-family: 'Space Grotesk', monospace;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

.philosophy-section {
    padding: 6rem 2rem;
    background: var(--black-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-card {
    background: var(--black);
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.2);
}

.philosophy-card .card-icon {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--green);
}

.philosophy-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.philosophy-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.philosophy-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--green);
}

.team-section {
    padding: 6rem 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: var(--black);
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.2);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

/* ===== TEAM MEMBER IMAGES - REPLACE THESE SRC ATTRIBUTES ===== */
.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-bio {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-tag {
    background: rgba(76, 175, 80, 0.1);
    color: var(--green);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

/* ===== PRICING PAGE ===== */
.pricing-hero {
    min-height: 60vh;
    padding: 120px 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.calculator-widget {
    max-width: 500px;
    margin: 2rem auto 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.calc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.calc-header i {
    color: var(--green);
    font-size: 1.5rem;
}

.calc-header h3 {
    font-size: 1.25rem;
    color: var(--white);
}

.calc-step {
    margin-bottom: 1.5rem;
}

.calc-step label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.calc-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.calc-result {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
}

.estimated-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
}

.price-display {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--green);
}

.btn-calc {
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-calc:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.pricing-faq {
    padding: 6rem 2rem;
    background: var(--black-light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--black);
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    color: var(--white);
    font-size: 1rem;
}

.faq-question i {
    color: var(--green);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== GALLERY PAGE ===== */
.gallery-hero {
    min-height: 50vh;
    padding: 120px 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 2rem;
}

.gallery-filter {
    padding: 2rem;
    background: var(--black);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.5rem 1.5rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    color: var(--gray);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
}

.filter-tab i {
    font-size: 0.875rem;
}

.masonry-grid {
    columns: 4;
    column-gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.grid-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    border-color: var(--green);
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.2);
}

/* ===== GALLERY IMAGES - REPLACE THESE SRC ATTRIBUTES ===== */
.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.grid-item:hover .item-overlay {
    opacity: 1;
}

.item-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--green);
    border-radius: 4px;
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.item-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.item-description {
    color: var(--green);
    font-size: 0.875rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 6rem 2rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: var(--black);
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.contact-info-card h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--green);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.contact-info-text h3 {
    color: var(--green);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--gray);
    text-decoration: none;
}

.contact-form-card {
    background: var(--black);
    border: 1px solid rgba(76, 175, 80, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.map-container {
    max-width: 1200px;
    margin: 3rem auto 0;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
}

/* ===== RESPONSIVE ===== */
/* ============================================
   RESPONSIVE DESIGN - TABLET & BELOW
   Breakpoint: 1024px and below
============================================ */
@media (max-width: 1024px) {
    /* === NAVIGATION === */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(76, 175, 80, 0.2);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .nav-cta {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .nav-toggle.active .toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--green);
    }

    /* === GENERAL LAYOUT === */
    .hero-container,
    .story-grid,
    .cta-container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* === HERO SECTION === */
    .hero-visual {
        min-height: 300px;
        margin-top: 3rem;
    }
    
    .car-placeholder {
        aspect-ratio: 16 / 9;
    }

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

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

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

    /* === SERVICES PAGE === */
    .process-steps,
    .services-grid,
    .philosophy-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card,
    .process-step,
    .philosophy-card {
        max-width: 600px;
        margin: 0 auto;
    }

    /* === PRICING PAGE === */
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .comparison-container {
        margin: 2rem 0;
    }

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

    /* === GALLERY PAGE === */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .masonry-grid {
        columns: 2;
        gap: 1rem;
    }

    .filter-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    /* === ABOUT PAGE === */
    .story-section {
        padding: 3rem 1.5rem;
    }

    .team-member {
        max-width: 400px;
        margin: 0 auto;
    }

    /* === CONTACT PAGE === */
    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* === FOOTER === */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    /* === BUTTONS & FORMS === */
    .btn-primary,
    .btn-secondary,
    .btn-service {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    /* === SECTIONS === */
    section {
        padding: 4rem 1.5rem;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   Breakpoint: 768px and below
============================================ */
@media (max-width: 768px) {
    /* === ROOT ADJUSTMENTS === */
    html {
        font-size: 15px;
    }

    /* === TYPOGRAPHY === */
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* === NAVIGATION === */
    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo {
        gap: 0.5rem;
    }

    .logo-main {
        font-size: 1.5rem;
    }

    .logo-sub {
        font-size: 0.7rem;
    }

    /* === HERO SECTION === */
    .hero-2026 {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .stat-item {
        min-width: auto;
        width: 100%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* === VIDEO CONTAINER === */
    .hero-visual {
        min-height: 250px;
        margin-top: 2rem;
    }
    
    .car-placeholder {
        border-radius: 16px;
    }
    
    .car-placeholder video,
    .car-placeholder img,
    .car-placeholder iframe {
        border-radius: 14px;
    }

    .floating-cards {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        position: relative;
        margin-top: 2rem;
    }

    .floating-card {
        width: 100%;
        max-width: 350px;
    }

    /* === SERVICES PAGE === */
    .service-card {
        padding: 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .process-step {
        padding: 2rem;
    }

    .step-number {
        font-size: 2rem;
    }

    /* === PRICING PAGE === */
    .pricing-card {
        padding: 2rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .price-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .comparison-slider {
        width: 50px;
        height: 50px;
    }

    /* === GALLERY PAGE === */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .masonry-grid {
        columns: 1;
        gap: 1rem;
    }

    .grid-item {
        margin-bottom: 1rem;
    }

    .filter-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .filter-tab {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    /* === ABOUT PAGE === */
    .story-section {
        padding: 2rem 1rem;
    }

    .story-content {
        padding: 2rem;
    }

    .story-title {
        font-size: 1.8rem;
    }

    .philosophy-card {
        padding: 2rem;
    }

    .team-member {
        padding: 1.5rem;
    }

    .member-image {
        height: 250px;
    }

    /* === CONTACT PAGE === */
    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-item i {
        font-size: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 1rem;
        font-size: 1rem;
    }

    /* === CTA SECTION === */
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    /* === FOOTER === */
    .footer-2026 {
        padding: 3rem 1rem 1rem;
    }

    .footer-top {
        gap: 2rem;
    }

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

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

    .footer-social {
        justify-content: center;
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .footer-links {
        gap: 2rem;
    }

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

    .link-title {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 2rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    /* === WHATSAPP FLOAT === */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-text {
        display: none;
    }

    /* === TABLES === */
    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.75rem 0.5rem;
    }

    /* === CARDS === */
    .card,
    .feature-card {
        padding: 1.5rem;
    }

    /* === SPACING === */
    section {
        padding: 3rem 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* === FAQ === */
    .faq-item {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE
   Breakpoint: 480px and below
============================================ */
@media (max-width: 480px) {
    /* === ROOT ADJUSTMENTS === */
    html {
        font-size: 14px;
    }

    /* === TYPOGRAPHY === */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

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

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* === NAVIGATION === */
    .nav-2026 {
        height: 70px;
    }

    .nav-menu {
        top: 70px;
        padding: 1.5rem;
    }

    .nav-logo {
        flex-direction: column;
        gap: 0.2rem;
        align-items: flex-start;
    }

    .logo-img-container {
        height: 35px;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .logo-detail,
    .logo-tag {
        font-size: 0.5rem;
    }

    /* === HERO SECTION === */
    .hero-2026 {
        padding: 5rem 1rem 2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-cta {
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* === VIDEO CONTAINER === */
    .hero-visual {
        min-height: 200px;
    }
    
    .car-placeholder {
        border-radius: 12px;
        border-width: 1px;
    }
    
    .car-placeholder video,
    .car-placeholder img,
    .car-placeholder iframe {
        border-radius: 10px;
    }

    .floating-card {
        width: 100%;
        padding: 1rem;
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* === SERVICES PAGE === */
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .btn-service {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .step-number {
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    /* === PRICING PAGE === */
    .pricing-card {
        padding: 1.5rem;
    }

    .plan-name {
        font-size: 1.3rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .price-period {
        font-size: 0.9rem;
    }

    .price-list li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    .btn-calc {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* === GALLERY PAGE === */
    .grid-item img {
        border-radius: 10px;
    }

    .filter-tab {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .btn-gallery,
    .btn-view-all {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* === ABOUT PAGE === */
    .story-section {
        padding: 2rem 0.8rem;
    }

    .story-content {
        padding: 1.5rem;
    }

    .story-title {
        font-size: 1.5rem;
    }

    .story-text {
        font-size: 0.9rem;
    }

    .philosophy-card {
        padding: 1.5rem;
    }

    .philosophy-title {
        font-size: 1.1rem;
    }

    .team-member {
        padding: 1rem;
    }

    .member-image {
        height: 220px;
    }

    .member-name {
        font-size: 1.1rem;
    }

    .member-role {
        font-size: 0.85rem;
    }

    /* === CONTACT PAGE === */
    .contact-section {
        padding: 2rem 0.8rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .contact-title {
        font-size: 1.3rem;
    }

    .contact-label {
        font-size: 0.75rem;
    }

    .contact-value {
        font-size: 0.9rem;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .btn-submit {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    /* === CTA SECTION === */
    .cta-section {
        padding: 2rem 0.8rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 0.95rem;
    }

    /* === FOOTER === */
    .footer-2026 {
        padding: 2rem 0.8rem 1rem;
    }

    .footer-logo .logo-text {
        font-size: 1.5rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .link-title {
        font-size: 0.95rem;
    }

    .link-item {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-note,
    .footer-credit {
        font-size: 0.75rem;
    }

    /* === WHATSAPP FLOAT === */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    /* === COMPARISON SLIDER === */
    .comparison-slider {
        width: 40px;
        height: 40px;
    }

    .comparison-slider::before {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    /* === FORMS === */
    .form-group {
        margin-bottom: 1rem;
    }

    .quote-form {
        padding: 1.5rem;
    }

    /* === FAQ === */
    .faq-item {
        padding: 1rem;
        border-radius: 10px;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* === SPACING === */
    section {
        padding: 2.5rem 0.8rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    /* === CARDS === */
    .card,
    .feature-card {
        padding: 1.2rem;
        border-radius: 12px;
    }

    /* === BUTTONS === */
    button,
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* === LOADING SCREEN === */
    .loading-logo {
        font-size: 2rem;
    }

    .logo-subtitle {
        font-size: 0.8rem;
    }

    .loading-text {
        font-size: 0.8rem;
    }
}

/* ============================================
   RESPONSIVE UTILITY CLASSES
============================================ */

/* Container max-widths for different screens */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

/* Responsive tables */
@media (max-width: 768px) {
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 600px;
    }
}

/* Hide/Show utilities for different screens */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .show-mobile-only {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .hide-tablet {
        display: none !important;
    }
}

/* Responsive text alignment */
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center !important;
    }
}

/* Responsive flex direction */
@media (max-width: 768px) {
    .flex-column-mobile {
        flex-direction: column !important;
    }
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
    a, button, .clickable {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Responsive grid gaps */
@media (max-width: 768px) {
    .grid,
    .flex {
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    .grid,
    .flex {
        gap: 0.8rem !important;
    }
}

/* Fix for iOS Safari viewport height */
@supports (-webkit-touch-callout: none) {
    .hero-2026 {
        min-height: -webkit-fill-available;
    }
}

/* Smooth font rendering on mobile */
@media (max-width: 768px) {
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

/* Prevent text size adjustment on orientation change */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* ===== ANIMATIONS ===== */
@keyframes logoReveal {
    0%, 100% { clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%); }
    50% { clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%); }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; box-shadow: 0 0 5px var(--green); }
    50% { opacity: 0.5; box-shadow: 0 0 20px var(--green); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes reflect {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes scrollWheel {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(15px); opacity: 0; }
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.bg-black {
    background: var(--black);
}

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

.hidden {
    display: none;
}