/*
Theme Name: Raptech58
Theme URI: https://raptech58.com
Author: Raptech58
Author URI: https://raptech58.com
Description: Professional Automotive Car Services & Modification Theme for Raptech58
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: raptech58
Tags: automotive, car-services, modification, professional, dark, red, bold
*/

/* =========================================================
   RAPTECH58 — AUTOMOTIVE PROFESSIONAL THEME
   Color Palette:
     Primary Red   : #E01F2D
     Dark BG       : #0D0D0D
     Dark Card     : #161616
     Dark Surface  : #1E1E1E
     Light Grey    : #B0B0B0
     White         : #FFFFFF
     Yellow Accent : #F5A623
   ========================================================= */

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #E01F2D;
  --red-dark: #B71C27;
  --dark:     #0D0D0D;
  --dark2:    #161616;
  --dark3:    #1E1E1E;
  --dark4:    #252525;
  --grey:     #B0B0B0;
  --grey2:    #6B6B6B;
  --white:    #FFFFFF;
  --yellow:   #F5A623;
  --font-head: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --radius:   6px;
  --transition: 0.3s ease;
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.wp-theme-raptech58:not(.admin-bar) {
  padding-top: 0 !important;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { color: var(--grey); margin-bottom: 1rem; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(224,31,45,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: #d4891c;
  border-color: #d4891c;
  color: var(--white);
}

/* ── Section Titles ────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.section-title { color: var(--white); margin-bottom: 16px; }
.section-title span { color: var(--red); }
.section-subtitle { color: var(--grey); max-width: 560px; font-size: 1.05rem; }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-label { justify-content: center; }
.section-head.center .section-subtitle { margin: 0 auto; }

/* ── Top Bar ───────────────────────────────────────────── */
.topbar {
  background: var(--dark2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 9px 0;
  font-size: 0.82rem;
  margin: 0;
  min-height: 0;
  line-height: 1.3;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 0;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--grey);
}
.topbar-item svg { color: var(--red); flex-shrink: 0; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  color: var(--grey);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  transition: all var(--transition);
}
.topbar-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── Header / Navbar ───────────────────────────────────── */
.site-header {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}

/* Force predictable header spacing even if plugins define .topbar/.site-header */
body.wp-theme-raptech58 > .topbar,
body.wp-theme-raptech58 > .site-header {
  margin-top: 0 !important;
}
body.wp-theme-raptech58 > .topbar {
  padding-top: 9px !important;
  padding-bottom: 9px !important;
  height: auto !important;
  top: auto !important;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text .brand-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}
.logo-text .brand-sub {
  font-size: 0.7rem;
  color: var(--grey);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 8px 16px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.main-nav a:hover, .main-nav a.active { color: var(--red); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.header-phone svg { color: var(--red); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--red); border-left-color: var(--red); background: rgba(224,31,45,0.05); }

/* ── Hero Section ──────────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, #0D0D0D 0%, #1a0505 60%, #0D0D0D 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
  pointer-events: none;
}
.hero-red-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(224,31,45,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bottom-glow {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224,31,45,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,31,45,0.12);
  border: 1px solid rgba(224,31,45,0.3);
  color: var(--red);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}
.hero-badge::before { content: '●'; font-size: 0.5rem; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title .accent { color: var(--red); display: block; }
.hero-title .stroke {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero-desc { font-size: 1.1rem; color: var(--grey); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label { font-size: 0.82rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.1em; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-car-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-car-svg {
  width: 85%;
  height: 85%;
  object-fit: contain;
}
.hero-float-card {
  position: absolute;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.hero-float-card.card-top-left { top: -16px; left: -24px; }
.hero-float-card.card-bottom-right { bottom: -16px; right: -24px; }
.float-card-icon {
  width: 40px; height: 40px;
  background: rgba(224,31,45,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}
.float-card-num { font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; color: var(--white); line-height:1; }
.float-card-text { font-size: 0.75rem; color: var(--grey); }

/* ── Services Section ──────────────────────────────────── */
.services { padding: 100px 0; background: var(--dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { border-color: rgba(224,31,45,0.2); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 12px; right: 20px;
  line-height: 1;
  pointer-events: none;
}
.service-icon {
  width: 60px; height: 60px;
  background: rgba(224,31,45,0.1);
  border: 1px solid rgba(224,31,45,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--red); border-color: var(--red); }
.service-icon svg { width: 28px; height: 28px; color: var(--red); transition: color var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.25rem; }
.service-card p { font-size: 0.92rem; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-family: var(--font-head);
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  transition: gap var(--transition);
}
.service-link:hover { gap: 12px; color: var(--red); }

/* ── About Section ─────────────────────────────────────── */
.about { padding: 100px 0; background: var(--dark2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.07);
}
.about-img-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--red);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
}
.about-img-badge .num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.about-img-badge .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.1em; }
.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--dark3); border-radius: 10px; padding: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color var(--transition);
}
.about-feature:hover { border-color: rgba(224,31,45,0.2); }
.about-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(224,31,45,0.1); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.about-feature h4 { color: var(--white); margin-bottom: 4px; font-size: 1rem; }
.about-feature p { font-size: 0.88rem; margin-bottom: 0; }

/* ── Stats Banner ──────────────────────────────────────── */
.stats-banner {
  background: var(--red);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 8px; }
.stat-num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: rgba(255,255,255,0.6); }
.stat-label {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.stats-divider {
  width: 1px; background: rgba(255,255,255,0.2);
  height: 80px; margin: auto;
  display: none;
}

/* ── Why Choose Us ─────────────────────────────────────── */
.why-us { padding: 100px 0; background: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--dark2);
  transition: all var(--transition);
}
.why-item:hover { border-color: rgba(224,31,45,0.2); transform: translateX(6px); }
.why-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  min-width: 48px;
}
.why-item h4 { color: var(--white); margin-bottom: 6px; }
.why-item p { font-size: 0.9rem; margin-bottom: 0; }
.why-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border: 1px solid rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
}

/* ── Team / Technicians ────────────────────────────────── */
.team { padding: 100px 0; background: var(--dark2); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--dark3);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); border-color: rgba(224,31,45,0.2); }
.team-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--dark4), var(--dark2));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.team-photo svg { width: 60%; height: 60%; opacity: 0.15; color: var(--red); }
.team-info { padding: 20px; }
.team-info h4 { color: var(--white); margin-bottom: 4px; font-size: 1.1rem; }
.team-info .role { font-size: 0.82rem; color: var(--red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.team-social { display: flex; gap: 8px; margin-top: 14px; }
.team-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05);
  border-radius: 6px; color: var(--grey); font-size: 0.75rem;
  transition: all var(--transition);
}
.team-social a:hover { background: var(--red); color: var(--white); }

/* ── Process / How It Works ────────────────────────────── */
.process { padding: 100px 0; background: var(--dark); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%;
  width: 80%; height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(224,31,45,0.1));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 80px; height: 80px;
  background: var(--dark2);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 900;
  color: var(--grey);
  transition: all var(--transition);
  position: relative;
}
.process-step.active .step-circle,
.process-step:hover .step-circle {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(224,31,45,0.15);
}
.step-circle svg { width: 32px; height: 32px; }
.process-step h4 { color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }

/* ── Testimonials ──────────────────────────────────────── */
.testimonials { padding: 100px 0; background: var(--dark2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--dark3);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-4px); border-color: rgba(224,31,45,0.2); }
.testi-quote {
  font-size: 3rem; color: var(--red); line-height: 1;
  margin-bottom: 12px; font-family: Georgia, serif;
}
.testi-text { color: var(--grey); font-size: 0.95rem; margin-bottom: 20px; font-style: italic; }
.testi-stars { color: var(--yellow); margin-bottom: 16px; letter-spacing: 3px; font-size: 0.9rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 900;
  color: var(--white); font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-author-name { color: var(--white); font-weight: 700; font-size: 0.95rem; }
.testi-author-role { font-size: 0.8rem; color: var(--grey2); }

/* ── CTA Banner ────────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dark2) 0%, #1a0505 50%, var(--dark2) 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(224,31,45,0.12), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative; z-index: 1;
}
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact / Booking ─────────────────────────────────── */
.booking { padding: 100px 0; background: var(--dark); }
.booking-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.booking-info { }
.booking-info-items { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.booking-info-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.booking-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(224,31,45,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.booking-info-item h4 { color: var(--white); margin-bottom: 4px; }
.booking-info-item p { margin-bottom: 0; font-size: 0.92rem; }
.booking-form {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 40px;
}
.booking-form h3 { color: var(--white); margin-bottom: 8px; }
.booking-form > p { font-size: 0.92rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; color: var(--grey); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white);
  padding: 13px 16px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark2); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; font-size: 1.05rem; padding: 15px 32px; }

/* ── Blog Section ──────────────────────────────────────── */
.blog { padding: 100px 0; background: var(--dark2); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--dark3);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.35); border-color: rgba(224,31,45,0.2); }
.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark4), var(--dark2));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: var(--white);
  padding: 4px 12px; border-radius: 4px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 12px; }
.blog-meta span { font-size: 0.8rem; color: var(--grey2); display: flex; align-items: center; gap: 5px; }
.blog-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-body h3 a { color: var(--white); transition: color var(--transition); }
.blog-body h3 a:hover { color: var(--red); }
.blog-body p { font-size: 0.9rem; margin-bottom: 16px; }
.read-more { color: var(--red); font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.read-more:hover { gap: 12px; color: var(--red); }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-about .footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.footer-about p { font-size: 0.92rem; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; color: var(--grey);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-widget h4 {
  font-family: var(--font-head);
  font-size: 1.1rem; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--grey); font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
  transition: all var(--transition);
}
.footer-links a::before { content: '›'; color: var(--red); font-size: 1.1rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-item svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { color: var(--grey); font-size: 0.9rem; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { margin-bottom: 0; font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--grey); font-size: 0.85rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--red); }

/* ── Scroll To Top ─────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 46px; height: 46px;
  background: var(--red); color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  box-shadow: 0 4px 16px rgba(224,31,45,0.4);
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--red-dark); transform: translateY(-3px); }

/* ── Inner Page ────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a0505 100%);
  padding: 72px 0;
  text-align: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(224,31,45,0.1), transparent 60%);
}
.page-banner h1 { position: relative; z-index: 1; font-size: 3rem; }
.breadcrumb {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 12px; font-size: 0.9rem; color: var(--grey);
}
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--red); }

/* ── Content Area ──────────────────────────────────────── */
.content-wrap { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; }
.content-main {}
.sidebar {}

/* ── Sidebar Widgets ───────────────────────────────────── */
.widget {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
}
.widget-title {
  font-family: var(--font-head);
  font-size: 1.1rem; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}

/* ── Cards / Utilities ─────────────────────────────────── */
.card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 28px;
}
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 4px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.badge-red { background: rgba(224,31,45,0.15); color: var(--red); }
.badge-yellow { background: rgba(245,166,35,0.15); color: var(--yellow); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .hero-grid { gap: 40px; }
  .about-grid { gap: 48px; }
  .why-grid { gap: 48px; }
  .booking-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .booking-form { padding: 24px; }
  .header-phone { display: none; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
}

/* ═══════════════════════════════════════════════
   NEW ADDITIONS — Real hero, gallery, brand strip,
   service SVGs, time slots, WhatsApp
═══════════════════════════════════════════════ */

/* ── Hero Real (full bleed photo) ──────────────── */
.hero-real {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
}
.hero-real-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-real-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(13,13,13,0.92) 75%,
    rgba(13,13,13,1) 100%
  );
}
.hero-real-content {
  position: relative; z-index: 2;
  padding-top: 120px;
  padding-bottom: 0;
  width: 100%;
}
.hero-real-inner {
  max-width: 720px;
  padding-bottom: 56px;
}
.hero-trust-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0;
}
.hero-trust-item {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  background: rgba(13,13,13,0.7);
  backdrop-filter: blur(8px);
}
.hero-trust-item:last-child { border-right: none; }
.hero-trust-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.hero-trust-lbl {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ── Brand Marquee Strip ───────────────────────── */
.brand-strip {
  background: var(--red);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.brand-strip-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
  gap: 0;
}
.brand-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.9);
  border-right: 1px solid rgba(255,255,255,0.2);
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Service SVG images ────────────────────────── */
.services-grid-wrap { grid-template-columns: repeat(3, 1fr); }
.service-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.05);
  line-height: 0;
}
.service-svg {
  width: 100%;
  height: auto;
  display: block;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.service-tags span {
  background: rgba(224,31,45,0.1);
  border: 1px solid rgba(224,31,45,0.2);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 4px;
}

/* ── Gallery Section ───────────────────────────── */
.gallery-section { padding: 100px 0 0; background: var(--dark2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 6px;
  margin-top: 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-large {
  grid-row: span 2;
}
.gallery-item-wide {
  grid-column: span 2;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(224,31,45,0);
  display: flex; align-items: flex-end;
  padding: 16px;
  transition: background var(--transition);
}
.gallery-item:hover .gallery-overlay {
  background: rgba(224,31,45,0.35);
}
.gallery-overlay span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ── Time Slot Picker ──────────────────────────── */
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0;
  min-height: 44px;
  align-items: flex-start;
}
.time-slot-hint { font-size: 0.82rem; color: var(--grey2); align-self: center; }
.time-slot-btn {
  padding: 7px 13px;
  background: var(--dark4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.time-slot-btn:hover { border-color: var(--red); color: var(--red); }
.time-slot-btn.selected { background: var(--red); border-color: var(--red); color: var(--white); }
.time-slot-btn.booked { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.05); color: var(--grey2); cursor: not-allowed; text-decoration: line-through; }

/* ── WhatsApp Float Button ─────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: var(--white);
}
.wa-float svg { flex-shrink: 0; }
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark2);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0; pointer-events: none;
  transform: translateX(8px);
  transition: all var(--transition);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--dark2);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* ── Scroll to top (re-add since we removed from footer) ── */
.scroll-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 999;
  width: 46px; height: 46px;
  background: var(--dark3); color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.1);
  opacity: 0; visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--red); border-color: var(--red); }

/* ── Production URL update ──────────────────────── */
/* Site URLs managed via WordPress admin or wp-config.php */

/* ── Responsive additions ───────────────────────── */
@media (max-width: 1024px) {
  .services-grid-wrap { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item-large { grid-row: span 1; }
  .gallery-item-wide { grid-column: span 1; }
  .hero-trust-row { flex-wrap: wrap; }
  .hero-trust-item { flex: 0 0 50%; }
}
@media (max-width: 768px) {
  .hero-real { min-height: 90vh; }
  .hero-trust-row { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .services-grid-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 220px; }
  .gallery-item-large, .gallery-item-wide { grid-row: span 1; grid-column: span 1; }
  .wa-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
}
@media (max-width: 480px) {
  .hero-trust-row { grid-template-columns: 1fr 1fr; }
  .hero-trust-num { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════════
   CAROUSEL
═══════════════════════════════════════════════ */
.hero-carousel {
  position: relative;
  overflow: hidden;
  display: block; /* override .hero flex row to avoid side-by-side split */
  min-height: 100vh;
}
.carousel-slides { position: relative; width: 100%; min-height: 100vh; }
.carousel-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.9s ease;
  pointer-events: none;
}
.carousel-slide.active { opacity: 1; pointer-events: auto; }
/* slide content overlay */
.slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 0 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px; padding-right: 24px;
  z-index: 3;
}
/* video bg */
.slide-video-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.slide-video-bg iframe,
.slide-video-bg video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; /* 16:9 */
  min-height: 100vh; min-width: 177.78vh;
  pointer-events: none;
}
/* Controls */
.carousel-prev,
.carousel-next {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(224,31,45,0.8);
  border: none; border-radius: 50%;
  color: #fff; font-size: 2rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
.carousel-prev:hover, .carousel-next:hover { background: var(--red); transform: translateY(-50%) scale(1.1); }
.carousel-dots {
  position: absolute; bottom: 180px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: none; cursor: pointer;
  transition: all var(--transition);
}
.carousel-dot.active { background: var(--red); transform: scale(1.3); }

/* ═══════════════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════════════ */
.lightbox-modal {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox-modal.active { opacity: 1; visibility: visible; }
.lightbox-content {
  position: relative;
  max-width: 92vw; max-height: 88vh;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox-content img {
  max-width: 90vw; max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: zoom-in;
  display: block;
}
.lightbox-close {
  position: fixed; top: 20px; right: 24px; z-index: 100001;
  background: var(--red); border: none; border-radius: 50%;
  width: 44px; height: 44px; font-size: 1.6rem;
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: transform var(--transition);
}
.lightbox-close:hover { transform: rotate(90deg) scale(1.1); }
.lightbox-prev,
.lightbox-next {
  position: fixed; top: 50%; z-index: 100001;
  transform: translateY(-50%);
  background: rgba(224,31,45,0.8); border: none; border-radius: 50%;
  width: 52px; height: 52px; font-size: 2.2rem;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--red); }
.lightbox-caption {
  margin-top: 12px; font-size: 0.9rem; color: var(--grey);
  text-align: center; max-width: 600px;
}
.lightbox-zoom-controls {
  display: flex; gap: 8px; margin-top: 10px;
}
.lightbox-zoom-controls button {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; color: #fff;
  width: 36px; height: 36px; font-size: 1.2rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-zoom-controls button:hover { background: var(--red); }

/* ── Gallery overlay inner ── */
.gallery-overlay-inner {
  display: flex; flex-direction: column; gap: 3px;
}
.gallery-overlay-inner small {
  font-size: 0.72rem; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.gallery-zoom-icon {
  font-size: 1.4rem; font-weight: 300; line-height: 1;
  color: rgba(255,255,255,0.7);
}

/* ── Gallery Filter Tabs ── */
.gallery-filter-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px; justify-content: center;
}
.gallery-filter-btn {
  padding: 8px 20px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  color: var(--grey); font-family: var(--font-head);
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--red); border-color: var(--red); color: #fff;
}

/* ── Dynamic gallery grid ── */
.gallery-grid-dynamic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
}
.gallery-grid-dynamic .gallery-item-large { grid-row: span 2; }
.gallery-grid-dynamic .gallery-item-wide  { grid-column: span 2; }

/* responsive carousel */
@media (max-width: 768px) {
  .carousel-prev { left: 8px; width: 40px; height: 40px; font-size: 1.6rem; }
  .carousel-next { right: 8px; width: 40px; height: 40px; font-size: 1.6rem; }
  .carousel-dots { bottom: 160px; }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .gallery-grid-dynamic { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-grid-dynamic .gallery-item-large,
  .gallery-grid-dynamic .gallery-item-wide { grid-row: span 1; grid-column: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid-dynamic { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-filter-tabs { gap: 6px; }
  .gallery-filter-btn { padding: 6px 14px; font-size: 0.75rem; }
}
