/* 
 * Elit Garage - Premium Styling System
 * Base: Dark Mode luxury aesthetic
 * Palette: Siyah (Black), Beyaz (White), Lacivert (Navy), Kırmızı (Red), Turkuaz (Turquoise)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    /* Color Palette Variables */
    --color-bg-pure: #050507;
    --color-bg-dark: #0a0b0e;
    --color-bg-navy: #0d1321;
    --color-bg-card: rgba(13, 19, 33, 0.65);
    --color-border: rgba(255, 255, 255, 0.06);
    
    --color-primary: #e30613; /* Red */
    --color-primary-rgb: 227, 6, 19;
    --color-primary-hover: #b9050f;
    
    --color-secondary: #00f2fe; /* Turquoise */
    --color-secondary-rgb: 0, 242, 254;
    --color-secondary-hover: #05d5e0;
    
    --color-text-bright: #ffffff;
    --color-text-muted: #94a3b8;
    --color-text-dim: #64748b;
    
    /* Font Variables */
    --font-base: 'Inter', sans-serif;
    --font-display: 'Rajdhani', sans-serif;
    
    /* System Globals */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    --glow-red: 0 0 20px rgba(227, 6, 19, 0.25);
    --glow-cyan: 0 0 20px rgba(0, 242, 254, 0.25);
    --radius-lg: 16px;
    --radius-md: 8px;
    --container-width: 1280px;
}

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

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

body {
    background-color: var(--color-bg-pure);
    color: var(--color-text-muted);
    font-family: var(--font-base);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-bright);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-pure);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* --- Layout Utility --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.gradient-text-red {
    background: linear-gradient(135deg, #ffffff 30%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, #ffffff 30%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons & UI Elements --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #9e040c 100%);
    color: var(--color-text-bright);
    box-shadow: var(--glow-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(227, 6, 19, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-bright);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-text-bright);
    transform: translateY(-3px);
}

.btn-outline-cyan {
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid rgba(0, 242, 254, 0.3);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.05);
}

.btn-outline-cyan:hover {
    background: rgba(0, 242, 254, 0.06);
    border-color: var(--color-secondary);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

/* Glow Badge */
.glow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(227, 6, 19, 0.08);
    border: 1px solid rgba(227, 6, 19, 0.25);
    color: #ff3b47;
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--font-display);
    box-shadow: 0 0 15px rgba(227, 6, 19, 0.05);
}

.glow-badge.cyan {
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    color: var(--color-secondary);
}

/* Glass Card */
.glass-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Section Header */
.section-header {
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

/* --- Header & Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(15px);
    border-bottom-color: var(--color-border);
    padding: 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.site-header.scrolled .header-container {
    height: 70px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.site-header.scrolled .site-logo img {
    height: 40px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-bright);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

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

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

.nav-link {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 6px 0;
    white-space: nowrap;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header .btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    height: 38px;
    border-radius: 6px;
}


/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-bright);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Nav Active states */
@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-bg-dark);
        border-left: 1px solid var(--color-border);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 50px;
        gap: 30px;
        z-index: 999;
        transition: var(--transition-smooth);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .nav-cta {
        display: none; /* Hide top CTA on small screens */
    }
}

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

/* High-tech animated garage background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: linear-gradient(rgba(5, 5, 7, 0.6), rgba(5, 5, 7, 0.95)), 
                url('https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?auto=format&fit=crop&w=1920&q=80') no-repeat center center;
    background-size: cover;
}

.hero-glow-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.12) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Quick Features Grid */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}

@media (max-width: 768px) {
    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
}

.hf-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hf-icon {
    font-size: 1.8rem;
    color: var(--color-secondary);
}

.hf-text h4 {
    font-size: 1.2rem;
    margin-bottom: 3px;
}

.hf-text p {
    font-size: 0.9rem;
    color: var(--color-text-dim);
    margin-bottom: 0;
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

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

.service-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(10, 11, 14, 0.95) 0%, transparent 100%);
}

.service-card-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-bright);
    font-size: 1.4rem;
    box-shadow: var(--glow-red);
    transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon {
    transform: rotate(360deg);
}

.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-card-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    margin-top: auto;
}

.sm-item {
    font-size: 0.85rem;
}

.sm-label {
    display: block;
    color: var(--color-text-dim);
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.sm-value {
    color: var(--color-text-bright);
    font-weight: 600;
}

/* Service Detail Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 750px;
    max-height: 90vh;
    background: var(--color-bg-navy);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 1;
    animation: modalFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-bright);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2;
}

.modal-close:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.modal-title {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px;
}

.modal-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--color-text-bright);
}

.modal-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

/* --- Before/After Section --- */
.before-after-container {
    max-width: 900px;
    margin: 0 auto;
}

.ba-selector {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ba-selector-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.ba-selector-btn:hover, .ba-selector-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-bright);
    box-shadow: var(--glow-red);
}

/* Split Image Slider */
.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--color-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    user-select: none;
    -webkit-user-select: none;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-image-before {
    z-index: 1;
}

.ba-image-after {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    z-index: 3;
    cursor: ew-resize;
    box-shadow: var(--glow-red);
    transform: translateX(-50%);
}

.ba-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-bright);
    box-shadow: 0 0 15px rgba(227, 6, 19, 0.6);
    border: 2px solid var(--color-text-bright);
    font-size: 1.2rem;
    transition: scale var(--transition-fast);
}

.ba-handle:hover .ba-handle-button {
    scale: 1.1;
}

.ba-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--color-border);
    color: var(--color-text-bright);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 4;
}

.ba-label-before {
    left: 20px;
}

.ba-label-after {
    right: 20px;
}

/* --- Detailing Process Section --- */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary), transparent);
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
    }
}

.process-step {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .process-step, .process-step:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        gap: 30px;
        padding-left: 60px;
    }
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-badge {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: 3px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--glow-red);
    transition: var(--transition-smooth);
}

.process-step:nth-child(even) .process-badge {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    box-shadow: var(--glow-cyan);
}

.process-step:hover .process-badge {
    scale: 1.15;
}

@media (max-width: 768px) {
    .process-badge {
        left: 30px;
        top: 50%;
    }
}

.process-content {
    width: 44%;
    padding: 35px;
}

@media (max-width: 768px) {
    .process-content {
        width: 100%;
        padding: 25px;
    }
}

.process-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.process-content h3 span {
    color: var(--color-primary);
}

.process-step:nth-child(even) .process-content h3 span {
    color: var(--color-secondary);
}

.process-content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* --- Gallery Section --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.gallery-filter-btn:hover, .gallery-filter-btn.active {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    box-shadow: var(--glow-cyan);
    background: rgba(0, 242, 254, 0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--color-border);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 19, 33, 0.92) 0%, rgba(5, 5, 7, 0.4) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition-smooth);
    border-radius: var(--radius-lg);
}

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

.gallery-item:hover .gallery-item-hover {
    opacity: 1;
}

.gallery-item-hover h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    transform: translateY(15px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-item-hover h4 {
    transform: translateY(0);
}

.gallery-category-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 10px;
    background: rgba(0, 242, 254, 0.15);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--color-secondary);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 7, 0.95);
    backdrop-filter: blur(12px);
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    animation: lightboxZoom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxZoom {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-caption {
    color: var(--color-text-bright);
    text-align: center;
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: var(--color-text-bright);
    font-size: 2.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

/* --- Booking Section --- */
.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

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

.booking-form-wrapper {
    padding: 40px;
}

@media (max-width: 480px) {
    .booking-form-wrapper {
        padding: 25px;
    }
}

.booking-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.booking-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-left: 4px solid var(--color-primary);
    padding-left: 15px;
}

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

@media (max-width: 600px) {
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

.form-group.full-width {
    margin-bottom: 25px;
}

.form-label {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-bright);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    color: var(--color-text-bright);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.form-input::placeholder {
    color: var(--color-text-dim);
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
}

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

/* Service selectors styled inside form */
.service-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 5px;
}

.service-select-card {
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.01);
    padding: 15px;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.service-select-card i {
    font-size: 1.5rem;
    color: var(--color-text-dim);
    transition: var(--transition-fast);
}

.service-select-card span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.service-select-card.selected {
    border-color: var(--color-primary);
    background: rgba(227, 6, 19, 0.05);
    box-shadow: var(--glow-red);
}

.service-select-card.selected i {
    color: var(--color-primary);
}

.service-select-card.selected span {
    color: var(--color-text-bright);
}

/* Booking Info Panels */
.booking-info-card {
    padding: 30px;
}

.booking-info-card h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-list-item {
    display: flex;
    gap: 15px;
}

.info-list-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-list-item:nth-child(even) .info-list-icon {
    background: rgba(227, 6, 19, 0.08);
    border-color: rgba(227, 6, 19, 0.2);
    color: var(--color-primary);
}

.info-list-text p {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    margin-bottom: 2px;
    text-transform: uppercase;
}

.info-list-text h5 {
    font-size: 1.1rem;
    color: var(--color-text-bright);
}

/* Status Notifications */
.form-status {
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: none;
    font-weight: 500;
    animation: modalFadeIn 0.3s ease;
}

.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Loader */
.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn.loading .btn-text {
    display: none;
}
.btn.loading .btn-loader {
    display: inline-block;
}

/* --- Contact & Map --- */
.contact-map-wrapper {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

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

.testimonial-card {
    padding: 35px;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -15px;
    font-size: 4rem;
    color: rgba(227, 6, 19, 0.15);
    font-family: var(--font-display);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-secondary);
    border: 2px solid var(--color-border);
}

.testimonial-author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.testimonial-author-info p {
    font-size: 0.8rem;
    color: var(--color-text-dim);
    margin-bottom: 0;
}

/* --- Footer --- */
.site-footer {
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

.footer-brand p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-bright);
    box-shadow: var(--glow-red);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-list a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--color-text-bright);
    padding-left: 5px;
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
}

.footer-contact-list i {
    color: var(--color-secondary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--color-text-dim);
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a:hover {
    color: var(--color-text-bright);
}
