/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Asap Condensed', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== CSS VARIABLES ===== */
:root {
    /* Marka paleti — logodan türetildi (yanık turuncu / bakır / krem) */
    --gold: #cf5a18;        /* ana turuncu (logo) */
    --gold-light: #ec8a3a;  /* açık turuncu */
    --gold-dark: #9c3f06;   /* koyu bakır */
    --cream: #e2c891;       /* krem (logo "car wrap") */
    --orange: #cf5a18;
    --orange-light: #ec8a3a;
    --black: #0a0a0a;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --dark-3: #222222;
    --dark-4: #2a2a2a;
    --gray: #666666;
    --gray-light: #999999;
    --white: #ffffff;
    --text: #e0e0e0;
    --transition: 0.3s ease;
    --shadow: 0 4px 24px rgba(0,0,0,0.5);
    --shadow-gold: 0 4px 24px rgba(207,90,24,0.25);
    --border: 1px solid #2a2a2a;
    --radius: 8px;
    --radius-lg: 16px;
}

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', 'Asap Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.section-title .accent { color: var(--gold); }
.section-subtitle {
    font-size: 1rem;
    color: var(--gray-light);
    margin-top: 0.5rem;
    font-weight: 400;
}
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: all var(--transition);
    cursor: pointer;
}
.btn-primary {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--dark-3);
    color: var(--white);
    border: 2px solid var(--dark-4);
}
.btn-dark:hover {
    background: var(--dark-4);
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--dark);
    border-bottom: 1px solid var(--dark-3);
    padding: 8px 0;
    font-size: 0.82rem;
}
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a {
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition);
}
.topbar a:hover { color: var(--gold); }
.topbar-right a {
    width: 28px; height: 28px;
    background: var(--dark-3);
    border-radius: 50%;
    justify-content: center;
    font-size: 0.75rem;
}
.topbar-right a:hover { background: var(--gold); color: var(--black); }

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    border-bottom: var(--border);
    padding: 0;
    transition: all var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow);
    border-bottom-color: var(--gold);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.navbar-brand { display: flex; align-items: center; }
.logo-text {
    font-family: 'Alfa Slab One', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.logo-accent { color: var(--gold); }
.logo-img { height: 50px; width: auto; }
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.navbar-menu a {
    padding: 8px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-light);
    border-radius: var(--radius);
    letter-spacing: 0.5px;
    transition: all var(--transition);
    text-transform: uppercase;
}
.navbar-menu a:hover,
.navbar-menu a.active {
    color: var(--gold);
    background: rgba(207,90,24,0.08);
}
.btn-nav {
    background: var(--gold) !important;
    color: var(--black) !important;
    padding: 9px 20px !important;
    font-weight: 700 !important;
    border-radius: var(--radius) !important;
}
.btn-nav:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius);
    background: var(--dark-3);
    z-index: 1001;
}
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #111 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero.png') center/cover no-repeat;
    opacity: 0.38;
    z-index: 0;
}
/* Hero slider */
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.3s ease, transform 7s ease;
    will-change: opacity, transform;
}
.hero-slide.active { opacity: 0.45; transform: scale(1); }
.hero-dots {
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.hero-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.45);
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}
.hero-dot:hover { background: rgba(255,255,255,0.6); }
.hero-dot.active { background: var(--gold); border-color: var(--gold); width: 30px; border-radius: 6px; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.4) 100%);
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 650px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(207,90,24,0.1);
    border: 1px solid rgba(207,90,24,0.3);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: 'Alfa Slab One', Georgia, serif;
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}
.hero-title .line-gold { color: var(--gold); display: block; }
.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hero-stat .label { font-size: 0.78rem; color: var(--gray-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
.hero-scroll i { color: var(--gold); font-size: 1.2rem; }
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== SERVICES PREVIEW ===== */
.services-section { padding: 100px 0; background: var(--dark); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--dark-2);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
    group: true;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(207,90,24,0.05));
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
    width: 70px; height: 70px;
    background: rgba(207,90,24,0.1);
    border: 1px solid rgba(207,90,24,0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.service-card p { color: var(--gray-light); font-size: 0.92rem; line-height: 1.7; }
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap var(--transition);
}
.service-card:hover .service-link { gap: 14px; }

/* ===== WHY US ===== */
.why-section { padding: 100px 0; background: var(--black); }
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-image { position: relative; }
.why-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: var(--border);
}
.why-badge-img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--black);
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    box-shadow: var(--shadow-gold);
}
.why-badge-img .big { font-size: 2.5rem; line-height: 1; display: block; }
.why-badge-img .small { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.why-content { display: flex; flex-direction: column; gap: 24px; }
.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--dark);
    border-radius: var(--radius);
    border: var(--border);
    transition: border-color var(--transition);
}
.why-item:hover { border-color: var(--gold); }
.why-item-icon {
    width: 50px; height: 50px;
    background: rgba(207,90,24,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.why-item h4 { font-size: 1.1rem; margin-bottom: 6px; }
.why-item p { font-size: 0.88rem; color: var(--gray-light); }

/* ===== PROCESS ===== */
.process-section { padding: 100px 0; background: var(--dark); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    position: relative;
}
.process-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--dark-2);
    border: var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition);
}
.process-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.process-number {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(207,90,24,0.1);
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 16px;
}
.process-icon {
    width: 64px; height: 64px;
    background: rgba(207,90,24,0.1);
    border: 1px solid rgba(207,90,24,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all var(--transition);
}
.process-card:hover .process-icon { background: var(--gold); color: var(--black); border-color: var(--gold); }
.process-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.process-card p { font-size: 0.88rem; color: var(--gray-light); }

/* ===== GALLERY PREVIEW ===== */
.gallery-section { padding: 100px 0; background: var(--black); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 12px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--dark-2);
    cursor: pointer;
}
.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-size: 0.9rem; font-weight: 600; }
.gallery-more { text-align: center; margin-top: 40px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--dark); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--dark-2);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.testimonial-quote {
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}
.testimonial-text { color: var(--gray-light); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.5rem; }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    color: var(--black);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testimonial-author-info strong { display: block; font-size: 0.95rem; color: var(--white); }
.testimonial-author-info span { font-size: 0.8rem; color: var(--gray-light); }

/* ===== CTA ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
    border-top: var(--border);
    border-bottom: var(--border);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at center, rgba(207,90,24,0.06) 0%, transparent 70%);
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-content h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-content p { color: var(--gray-light); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
    border-bottom: var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(207,90,24,0.08) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; }
.page-hero p { color: var(--gray-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--gray-light);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb i { font-size: 0.7rem; }

/* ===== SERVICES PAGE ===== */
.services-page { padding: 80px 0; background: var(--black); }
.service-detail-card {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: border-color var(--transition);
}
.service-detail-card:hover { border-color: rgba(207,90,24,0.4); }
.service-detail-card.reverse { direction: rtl; }
.service-detail-card.reverse > * { direction: ltr; }
.service-detail-img { overflow: hidden; }
.service-detail-img img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; transition: transform 0.5s; }
.service-detail-card:hover .service-detail-img img { transform: scale(1.05); }
.service-detail-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(207,90,24,0.1);
    border: 1px solid rgba(207,90,24,0.3);
    color: var(--gold);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    width: fit-content;
}
.service-detail-body h2 { font-size: 2rem; margin-bottom: 1rem; }
.service-detail-body p { color: var(--gray-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}
.service-features li i { color: var(--gold); font-size: 0.8rem; }

/* ===== GALLERY PAGE ===== */
.gallery-page { padding: 80px 0; background: var(--black); }
.gallery-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 8px 24px;
    border: 2px solid var(--dark-4);
    background: var(--dark);
    color: var(--gray-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    font-weight: 700;
}
.gallery-masonry {
    columns: 3;
    gap: 16px;
}
.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s;
}
.gallery-masonry-item:hover img { transform: scale(1.05); }
.gallery-masonry-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-masonry-item:hover .overlay { opacity: 1; }
.overlay i { color: var(--gold); font-size: 2rem; }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: -40px; right: 0;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: var(--black); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

/* ===== ABOUT PAGE ===== */
.about-section { padding: 80px 0; background: var(--black); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.about-image-wrapper { position: relative; }
.about-image-wrapper img { border-radius: var(--radius-lg); width: 100%; border: var(--border); }
.about-exp-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--gold);
    color: var(--black);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    box-shadow: var(--shadow-gold);
}
.about-exp-badge .num { font-size: 3rem; line-height: 1; display: block; }
.about-exp-badge .txt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.about-text h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.about-text p { color: var(--gray-light); line-height: 1.9; margin-bottom: 1.2rem; font-size: 0.95rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 2rem; }
.about-value {
    padding: 16px;
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius);
    display: flex;
    gap: 12px;
    align-items: center;
    transition: border-color var(--transition);
}
.about-value:hover { border-color: var(--gold); }
.about-value i { color: var(--gold); font-size: 1.2rem; }
.about-value span { font-size: 0.9rem; font-weight: 500; }
.team-section { margin-top: 80px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.team-card {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.team-photo { height: 280px; overflow: hidden; background: var(--dark-2); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-info { padding: 20px; }
.team-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-info span { font-size: 0.82rem; color: var(--gold); font-weight: 500; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; background: var(--black); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--gold); }
.contact-card-icon {
    width: 48px; height: 48px;
    background: rgba(207,90,24,0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-card-body h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-card-body p, .contact-card-body a { font-size: 0.9rem; color: var(--gray-light); }
.contact-card-body a:hover { color: var(--gold); }
.contact-form-card {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.contact-form-card h3 { font-size: 1.6rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(207,90,24,0.1); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select option { background: var(--dark-2); }
.map-section { margin-top: 60px; }
.map-section h3 { font-size: 1.6rem; margin-bottom: 1.5rem; text-align: center; }
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: var(--border);
    height: 400px;
    background: var(--dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; background: var(--dark); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--dark-2);
    border: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    gap: 16px;
}
.faq-question i { color: var(--gold); font-size: 0.9rem; transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer p { padding: 0 24px 20px; color: var(--gray-light); font-size: 0.92rem; line-height: 1.8; }

/* ===== ALERTS ===== */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.92rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: rgba(39,174,96,0.15); border: 1px solid rgba(39,174,96,0.4); color: #27ae60; }
.alert-error { background: rgba(231,76,60,0.15); border: 1px solid rgba(231,76,60,0.4); color: #e74c3c; }
.alert-info { background: rgba(52,152,219,0.15); border: 1px solid rgba(52,152,219,0.4); color: #3498db; }

/* ===== FOOTER ===== */
.footer { background: #070707; }
.footer-top { padding: 80px 0 50px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}
.footer-logo {
    font-family: 'Alfa Slab One', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    background: var(--dark-3);
    border: var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    color: var(--white);
    padding-bottom: 12px;
    border-bottom: 1px solid var(--dark-3);
    position: relative;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
    font-size: 0.88rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}
.footer-col ul a i { font-size: 0.7rem; color: var(--gold); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 10px;
    align-items: flex-start;
    line-height: 1.6;
}
.footer-contact li i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: var(--gray); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--dark-3);
    padding: 20px 0;
    display: flex;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray); }
.footer-bottom .accent { color: var(--gold); }

/* ===== WHATSAPP / SCROLL TOP ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 52px; height: 52px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse-green 2s infinite;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }
@keyframes pulse-green {
    0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px; height: 44px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: var(--shadow-gold);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== PLACEHOLDER IMAGE ===== */
.placeholder-img {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 3rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 60px 0;
    background: var(--gold);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-item {}
.stat-item .num {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}
.stat-item .lbl {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 6px;
}

/* ===== BRANDS ===== */
.brands-section {
    padding: 50px 0;
    background: var(--dark);
    border-top: var(--border);
    border-bottom: var(--border);
}
.brands-track {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.brand-item {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color var(--transition);
}
.brand-item:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
/* ===== LOGO & BRAND IMAGES ===== */
.navbar-brand .logo-img { height: 58px; width: auto; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6)); }
.footer-logo-img { height: 82px; width: auto; margin-bottom: 1.2rem; }
.brand-item img {
    height: 52px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.55;
    transition: opacity var(--transition);
}
.brand-item:hover img { opacity: 1; }

/* ===== FEATURE CARDS (about-mini) ===== */
.features-section { padding: 90px 0; background: var(--dark); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.feature-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--dark-2);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}
.feature-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.feature-card-icon {
    width: 54px; height: 54px;
    flex-shrink: 0;
    background: rgba(207,90,24,0.1);
    border: 1px solid rgba(207,90,24,0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
}
.feature-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.feature-card p { font-size: 0.9rem; color: var(--gray-light); line-height: 1.7; }

/* ===== PPF PACKAGES ===== */
.packages-section { padding: 100px 0; background: var(--black); }
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.package-card {
    background: var(--dark);
    border: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
}
.package-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.package-card.featured { border-color: var(--gold); }
.package-ribbon {
    position: absolute;
    top: 16px; right: -34px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 40px;
    transform: rotate(45deg);
    z-index: 2;
}
.package-img {
    height: 150px;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: var(--border);
}
.package-img img { max-height: 110px; width: auto; object-fit: contain; }
.package-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.package-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    margin-bottom: 4px;
}
.package-dur { color: var(--gold); font-weight: 600; font-size: 0.95rem; margin-bottom: 1.2rem; }
.package-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.5rem; flex: 1; }
.package-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--text); }
.package-features li i { color: var(--gold); font-size: 0.8rem; margin-top: 4px; }
.package-body .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ===== NEWSLETTER ===== */
.newsletter-section { padding: 70px 0; background: var(--gold); }
.newsletter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.newsletter-text h2 {
    color: var(--black);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.newsletter-text p { color: rgba(0,0,0,0.7); font-size: 0.95rem; margin-top: 6px; font-weight: 500; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; min-width: 320px; flex: 1; max-width: 480px; }
.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: 2px solid rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.92);
    border-radius: var(--radius);
    color: #111;
    font-size: 0.95rem;
    outline: none;
}
.newsletter-form input:focus { border-color: var(--black); }
.newsletter-form .btn {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}
.newsletter-form .btn:hover { background: var(--dark-2); transform: translateY(-2px); }

/* ===== WHATSAPP NAV BUTTON ===== */
.btn-wa {
    background: #25d366 !important;
    color: #fff !important;
    padding: 9px 20px !important;
    font-weight: 700 !important;
    border-radius: var(--radius) !important;
}
.btn-wa:hover { background: #20bd5a !important; transform: translateY(-1px); }

@media (max-width: 768px) {
    .newsletter-box { flex-direction: column; text-align: center; }
    .newsletter-form { min-width: auto; width: 100%; }
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .why-grid { gap: 40px; }
    .about-grid { gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item.featured { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    .navbar-toggle { display: flex; }
    .navbar-menu {
        position: fixed;
        top: 70px; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transform: translateX(-100%);
        transition: transform 0.35s ease;
        z-index: 999;
    }
    .navbar-menu.open { transform: translateX(0); }
    .navbar-menu a { font-size: 1.1rem; padding: 12px 30px; }
    .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
    .hero-stats { gap: 24px; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
    .why-grid, .about-grid { grid-template-columns: 1fr; }
    .why-badge-img, .about-exp-badge { right: 10px; }
    .service-detail-card { grid-template-columns: 1fr; }
    .service-detail-card.reverse { direction: ltr; }
    .gallery-masonry { columns: 2; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .lightbox-prev { left: -15px; }
    .lightbox-next { right: -15px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .gallery-masonry { columns: 1; }
    .gallery-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .hero-stat .number { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .contact-form-card { padding: 24px; }
    .service-detail-body { padding: 28px; }
}
