/* =============================================
   CCS CAR ACCESSORIES — MASTER STYLESHEET
   Themes: Dark Grey + Red  |  Light White + Red
   ============================================= */

/* === CSS VARIABLES — DARK THEME (default) === */
:root,
[data-theme="dark"] {
  --red: #e01e24;
  --red-light: #f04040;
  --red-dark: #b81519;
  /* kept for accents that suit dark theme */
  --gold: #c9a84c;
  --gold-light: #e2c06e;
  --gold-dark: #a0802e;
  /* backgrounds — grey scale */
  --dark: #2b2b2b;
  --dark2: #333333;
  --dark3: #3d3d3d;
  --dark4: #474747;
  /* text */
  --gray: #999999;
  --gray-light: #cccccc;
  --white: #ffffff;
  --white-off: #f0f0f0;
  /* borders / shadows */
  --border: rgba(224, 30, 36, 0.18);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 4px 20px rgba(224, 30, 36, 0.25);
  /* logo */
  --logo-color: #e01e24;
  --logo-sub: #cccccc;
  /* nav bg */
  --nav-bg: rgba(43, 43, 43, 0.95);
  --nav-scrolled: rgba(43, 43, 43, 0.99);
  /* card */
  --card-bg: var(--dark3);
  /* body text */
  --text: #ffffff;
  --text-sub: #cccccc;
  /* form */
  --input-bg: var(--dark4);
  --input-color: #ffffff;
  --input-placeholder: rgba(255,255,255,0.3);
  /* map filter */
  --map-filter: invert(90%) hue-rotate(180deg);
  /* mobile nav */
  --mobile-nav-bg: #333333;
  /* font */
  --font-head: "Playfair Display", Georgia, serif;
  --font-display: "Oswald", "Impact", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s ease;
}

/* === CSS VARIABLES — LIGHT THEME === */
[data-theme="light"] {
  --red: #cc1f1f;
  --red-light: #e03535;
  --red-dark: #a01515;
  --gold: #b8852a;
  --gold-light: #d09a3a;
  --gold-dark: #9a6e20;
  --dark: #f5f5f5;
  --dark2: #efefef;
  --dark3: #ffffff;
  --dark4: #e8e8e8;
  --gray: #777777;
  --gray-light: #555555;
  --white: #1a1a1a;
  --white-off: #222222;
  --border: rgba(0, 0, 0, 0.12);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  --shadow-accent: 0 4px 20px rgba(204, 31, 31, 0.2);
  --logo-color: #cc1f1f;
  --logo-sub: #555555;
  --nav-bg: rgba(255, 255, 255, 0.97);
  --nav-scrolled: rgba(255, 255, 255, 0.99);
  --card-bg: #ffffff;
  --text: #1a1a1a;
  --text-sub: #555555;
  --input-bg: #f9f9f9;
  --input-color: #1a1a1a;
  --input-placeholder: rgba(0,0,0,0.3);
  --map-filter: none;
  --mobile-nav-bg: #ffffff;
  --font-head: "Playfair Display", Georgia, serif;
  --font-display: "Oswald", "Impact", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s ease;
}

/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
iframe {
  display: block;
  width: 100%;
  border: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold {
  color: var(--red);
}
.section {
  padding: 80px 0;
}
.center-btn {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 0.8rem;
  color: var(--gray-light);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--nav-scrolled);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer-col .logo-img {
  width: 48px;
  height: 48px;
}
.logo-ccs {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--logo-color);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--logo-sub);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.3;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.btn-nav {
  background: var(--red);
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition:
    background var(--transition),
    transform var(--transition) !important;
}
.btn-nav:hover {
  background: var(--red-light) !important;
  transform: translateY(-1px);
}
.btn-nav::after {
  display: none !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--red);
  color: #ffffff;
  box-shadow: var(--shadow-accent);
}
.btn-gold:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224, 30, 36, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 18px 42px;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
  text-align: center;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-block;
  background: rgba(224, 30, 36, 0.1);
  color: var(--red);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: rgba(224, 30, 36, 0.15);
  color: #ffffff;
  border: 1px solid rgba(224, 30, 36, 0.4);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  margin: 8px auto 0;
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(5px);
  }
}
.hero-dots {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  gap: 0;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat p {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background: var(--dark2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  border-color: rgba(224, 30, 36, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-accent);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(224, 30, 36, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--red);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.service-link:hover {
  color: var(--red-light);
  letter-spacing: 2px;
}
/* =============================================
   WHY SECTION
   ============================================= */
.why-section {
  background: var(--dark);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: grayscale(20%) contrast(1.1);
}
.why-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: #ffffff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  border: 4px solid var(--dark);
}
.why-exp-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.why-content .section-title {
  text-align: left;
}
.why-content .section-badge {
  margin-bottom: 12px;
}
.why-desc {
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.8;
}
.why-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.why-list li {
  font-size: 0.9rem;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-check {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   GALLERY SECTION (Home)
   ============================================= */
.gallery-section {
  background: var(--dark2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
}
.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   VIDEO SECTION
   ============================================= */
.video-section {
  background: var(--dark);
}
.video-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  align-items: start;
}
.video-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark3);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-caption {
  padding: 16px 0 0;
}
.video-caption h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.video-caption p {
  font-size: 0.825rem;
  color: var(--gray);
}
.video-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.video-card:hover {
  border-color: rgba(224, 30, 36, 0.12);
}
.main-video .video-wrapper {
  padding-bottom: 60%;
}
.video-wrapper.shorts {
  padding-bottom: 177.78%;
}
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.shorts-grid .video-card .video-caption {
  padding: 12px 16px 16px;
}
.shorts-grid .video-caption h4 {
  font-size: 0.95rem;
}
.video-wrapper video.local-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.video-card .video-caption {
  padding: 16px 20px 20px;
}

/* =============================================
   BEFORE / AFTER
   ============================================= */
.ba-section {
  background: var(--dark2);
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark3);
  border: 1px solid var(--border);
}
.ba-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.ba-after {
  opacity: 0;
}
.ba-card:hover .ba-before {
  opacity: 0;
}
.ba-card:hover .ba-after {
  opacity: 1;
}
.ba-label-before,
.ba-label-after {
  position: absolute;
  top: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 2px;
  z-index: 2;
}
.ba-label-before {
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.8);
  transition: opacity 0.3s;
}
.ba-label-after {
  right: 12px;
  background: var(--red);
  color: var(--dark);
  opacity: 0;
  transition: opacity 0.3s;
}
.ba-card:hover .ba-label-before {
  opacity: 0;
}
.ba-card:hover .ba-label-after {
  opacity: 1;
}
.ba-card > p {
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
  border-top: 1px solid var(--border);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-section {
  background: var(--dark);
}
.testimonial-slider {
  overflow: hidden;
  margin: 0 -12px;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
  padding: 0 12px;
  gap: 24px;
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  flex-shrink: 0;
}
.stars {
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.client-avatar {
  width: 42px;
  height: 42px;
  background: var(--red);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.client-info strong {
  display: block;
  font-size: 0.9rem;
}
.client-info span {
  font-size: 0.75rem;
  color: var(--gray);
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
.t-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--dark3);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.t-btn:hover {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  position: relative;
  padding: 100px 0;
  background-image: url("../assets/gallery/body-kits/d63d1a8d-8cc1-40cc-a25f-d850077e067c.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.cta-content p {
  color: var(--gray-light);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-about {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 16px;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-col ul a:hover {
  color: var(--red);
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 14px;
  line-height: 1.5;
}
.contact-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--red);
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-links a svg {
  width: 18px;
  height: 18px;
  fill: var(--gray-light);
  stroke: none;
}
.social-links a:hover {
  background: var(--red);
  border-color: var(--red);
}
.social-links a:hover svg {
  fill: #ffffff;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  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:
    transform var(--transition),
    box-shadow var(--transition);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.7)
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin: 12px 0 8px;
}
.page-hero-content p {
  color: var(--gray-light);
  font-size: 1rem;
  letter-spacing: 1px;
}

/* =============================================
   GALLERY PAGE — FILTER TABS
   ============================================= */
.filter-section {
  background: var(--dark2);
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 62px;
  z-index: 100;
}
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-light);
  background: var(--dark3);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
}

/* =============================================
   GALLERY PAGE — MASONRY GRID
   ============================================= */
.gallery-full-section {
  background: var(--dark);
}
.masonry-grid {
  columns: 3;
  column-gap: 12px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  display: block;
}
.masonry-tall img {
  height: 400px;
  object-fit: cover;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img {
  transform: scale(1.05);
}
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-item:hover .masonry-overlay {
  opacity: 1;
}
.masonry-cat {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 4px;
}
.masonry-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  flex: 1;
}
.lightbox-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  transition: var(--transition);
  margin-top: 8px;
}
.lightbox-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--dark);
}
.masonry-item.hidden {
  display: none;
}

/* =============================================
   GALLERY PAGE — VIDEO MASONRY
   ============================================= */
.video-gallery-section {
  background: var(--dark2);
}
.video-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-tile {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.video-tile:hover {
  border-color: rgba(224, 30, 36, 0.12);
  transform: translateY(-4px);
}
.video-tile-info {
  padding: 16px 20px 20px;
}
.video-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  background: rgba(224, 30, 36, 0.1);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.video-tile-info h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 6px;
}
.video-tile-info p {
  font-size: 0.825rem;
  color: var(--gray);
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-img-wrap {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}
.lightbox-img-wrap img {
  max-height: 80vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}
.lightbox-caption {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-top: 16px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2.5rem;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-prev {
  left: 24px;
}
.lightbox-next {
  right: 24px;
}
.lightbox-nav:hover {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

/* =============================================
   SERVICES PAGE — SERVICE DETAIL CARDS
   ============================================= */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail-card:first-of-type {
  padding-top: 0;
}
.service-detail-card:last-of-type {
  border-bottom: none;
}
.service-detail-card.reverse {
  direction: rtl;
}
.service-detail-card.reverse > * {
  direction: ltr;
}
.sdc-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sdc-image .media-carousel {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  min-height: unset;
  height: auto;
}
.sdc-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.sdc-image:hover img {
  transform: scale(1.04);
}
.sdc-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(224, 30, 36, 0.12);
  line-height: 1;
  display: block;
  margin-bottom: -8px;
}
.sdc-content h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.sdc-content > p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.sdc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.sdc-list li {
  font-size: 0.875rem;
  color: var(--gray-light);
}
.sdc-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.package-card {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.featured-pkg {
  border-color: var(--red);
  background: rgba(224, 30, 36, 0.12);
}
.featured-pkg:hover,
.package-card:hover {
  border-color: var(--red);
}
.pkg-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--dark);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 10px;
}
.pkg-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-light);
  margin-bottom: 4px;
}
.pkg-price {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
}
.pkg-desc {
  display: block;
  font-size: 0.7rem;
  color: var(--gray);
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-section {
  background: var(--dark2);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 220px;
}
.step-circle {
  width: 60px;
  height: 60px;
  background: var(--red);
  color: #ffffff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-step h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.825rem;
  color: var(--gray);
  line-height: 1.6;
}
.process-connector {
  flex-shrink: 0;
  height: 2px;
  background: var(--border);
  width: 60px;
  margin-top: 30px;
  position: relative;
}
.process-connector::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--red);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
  background: var(--dark);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-header {
  margin-bottom: 36px;
}
.contact-info-header p {
  color: var(--gray);
  line-height: 1.7;
  margin-top: 12px;
}
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: var(--transition);
}
.info-card:hover {
  border-color: rgba(224, 30, 36, 0.12);
}
.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(224, 30, 36, 0.12);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
}
.info-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.info-card p {
  font-size: 0.825rem;
  color: var(--gray);
  line-height: 1.6;
}
.contact-social {
  margin-top: 24px;
}

/* Booking Form */
.contact-form-wrap {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 40px;
}
.form-header {
  margin-bottom: 32px;
}
.form-header h3 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  margin-bottom: 8px;
}
.form-header p {
  font-size: 0.875rem;
  color: var(--gray);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
}
.form-group.full-width {
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-light);
}
.req {
  color: var(--red);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--input-color);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--input-placeholder);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-group select option {
  background: var(--dark4);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.825rem;
  color: var(--gray);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.checkbox-label input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--red);
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: var(--radius);
  color: #15803d;
  font-size: 0.875rem;
}
.form-success.show {
  display: flex;
}
.form-success svg {
  width: 20px;
  height: 20px;
  stroke: #16a34a;
  flex-shrink: 0;
}
[data-theme="light"] .form-success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.4);
  color: #166534;
}
[data-theme="light"] .form-success svg {
  stroke: #166534;
}

/* FAQ */
.faq-section {
  background: var(--dark2);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--red);
}
.faq-icon {
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 0 24px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

/* MAP */
.map-section {
  position: relative;
}
.map-header {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}
.map-header h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
}
.map-wrapper iframe {
  display: block;
  filter: var(--map-filter);
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .why-inner {
    gap: 48px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .ba-grid {
    grid-template-columns: 1fr 1fr;
  }
  .masonry-grid {
    columns: 2;
  }
  .video-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-detail-card {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .why-inner {
    grid-template-columns: 1fr;
  }
  .why-image img {
    max-height: 320px;
    object-fit: cover;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .service-detail-card,
  .service-detail-card.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .process-steps {
    flex-direction: column;
    align-items: center;
  }
  .process-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }
  .process-connector::after {
    display: none;
  }
  .stats-inner {
    flex-wrap: wrap;
  }
  .stat {
    min-width: 45%;
  }
  .stat-divider {
    display: none;
  }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--mobile-nav-bg);
    flex-direction: column;
    gap: 0;
    padding: 24px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links a {
    font-size: 1rem;
  }
  .btn-nav {
    display: inline-block;
    margin-top: 8px;
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 16/7;
  }
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    min-width: 100%;
  }
  .masonry-grid {
    columns: 1;
  }
  .video-masonry {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .sdc-packages {
    grid-template-columns: 1fr;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .lightbox-nav {
    display: none;
  }
  .lightbox {
    padding: 24px;
  }
  .section {
    padding: 60px 0;
  }
  .video-side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item-wide {
    grid-column: span 1;
  }
  .stats-inner {
    flex-direction: column;
    align-items: center;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }
}

/* =============================================
   THEME TOGGLE BUTTON
   ============================================= */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.5px;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--red);
  color: var(--red);
}
.theme-toggle .toggle-icon {
  font-size: 1rem;
  line-height: 1;
}
.theme-toggle .toggle-label {
  display: none;
}
@media (min-width: 900px) {
  .theme-toggle .toggle-label {
    display: inline;
  }
}

/* =============================================
   HERO — VIDEO BACKGROUND
   ============================================= */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-video-wrap iframe,
.hero-video-wrap .hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: none;
  object-fit: cover;
  pointer-events: none;
}
/* Hide slide fallback while background video is active */
.hero-video-wrap ~ .hero-slides {
  display: none;
}

/* =============================================
   LIGHT THEME — SPECIFIC OVERRIDES
   ============================================= */
[data-theme="light"] .topbar {
  background: #eeeeee;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
[data-theme="light"] .topbar span {
  color: #555555;
}
[data-theme="light"] .stats-bar {
  background: #eeeeee;
}
[data-theme="light"] .stat-num {
  color: #1a1a1a;
}
[data-theme="light"] .services-section {
  background: #f0f0f0;
}
[data-theme="light"] .service-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .gallery-section {
  background: #f0f0f0;
}
[data-theme="light"] .testimonial-section {
  background: #f5f5f5;
}
[data-theme="light"] .testimonial-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .testimonial-card p {
  color: #555555;
}
[data-theme="light"] .ba-section {
  background: #efefef;
}
[data-theme="light"] .ba-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .ba-card > p {
  color: #666;
  border-top-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .video-section {
  background: #f5f5f5;
}
[data-theme="light"] .video-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .footer {
  background: #e8e8e8;
  border-top-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .footer-bottom {
  border-top-color: rgba(0,0,0,0.1);
  color: #666;
}
[data-theme="light"] .footer-about {
  color: #555;
}
[data-theme="light"] .footer-col ul a {
  color: #555;
}
[data-theme="light"] .contact-list li {
  color: #555;
}
[data-theme="light"] .social-links a {
  background: #e0e0e0;
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .social-links a svg {
  fill: #555555;
}
[data-theme="light"] .t-btn {
  background: #eeeeee;
  color: #1a1a1a;
  border-color: rgba(0,0,0,0.15);
}
[data-theme="light"] .filter-section {
  background: #eeeeee;
  border-bottom-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .filter-btn {
  background: #e0e0e0;
  color: #444;
  border-color: rgba(0,0,0,0.12);
}
[data-theme="light"] .gallery-full-section {
  background: #f5f5f5;
}
[data-theme="light"] .video-gallery-section {
  background: #eeeeee;
}
[data-theme="light"] .video-tile {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .contact-section {
  background: #f5f5f5;
}
[data-theme="light"] .info-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .contact-form-wrap {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
  background: #f5f5f5;
  border-color: rgba(0,0,0,0.15);
  color: #1a1a1a;
}
[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
  color: rgba(0,0,0,0.3);
}
[data-theme="light"] .form-group label {
  color: #444;
}
[data-theme="light"] .form-group select option {
  background: #ffffff;
  color: #1a1a1a;
}
[data-theme="light"] .faq-section {
  background: #eeeeee;
}
[data-theme="light"] .faq-question {
  color: #1a1a1a;
}
[data-theme="light"] .faq-item {
  border-bottom-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .map-wrapper iframe {
  filter: none;
}
[data-theme="light"] .process-section {
  background: #eeeeee;
}
[data-theme="light"] .package-card {
  background: #f0f0f0;
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .page-hero-content h1 {
  color: #ffffff;
}
[data-theme="light"] .btn-outline {
  border-color: rgba(0,0,0,0.3);
  color: #1a1a1a;
}
[data-theme="light"] .btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}
[data-theme="light"] .why-section {
  background: #f5f5f5;
}
[data-theme="light"] .nav-links {
  background: #ffffff;
}

/* =============================================
   SOCIAL EMBED SECTION
   ============================================= */
.social-section {
  background: var(--dark2);
  padding: 70px 0;
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.social-col h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-col h3 svg {
  width: 24px;
  height: 24px;
}
.social-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--dark3);
  min-height: 420px;
  display: flex;
  flex-direction: column;
}
.social-embed-wrap iframe {
  flex: 1;
  min-height: 420px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 14px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background var(--transition);
  border-top: 1px solid rgba(255,255,255,0.1);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--red-light);
}
.social-btn svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}
[data-theme="light"] .social-section {
  background: #eeeeee;
}
[data-theme="light"] .social-embed-wrap {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr;
  }
  .theme-toggle {
    padding: 5px 10px;
  }
}

/* =============================================
   PAGE LOADER
   ============================================= */
body.is-loading {
  overflow: hidden;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
[data-theme="light"] .page-loader {
  background: #f5f5f5;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.loader-logo {
  width: 88px;
  height: auto;
  object-fit: contain;
  animation: loaderPulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(224, 30, 36, 0.45));
}
.loader-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin: 0;
}
.loader-bar {
  width: 120px;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
[data-theme="light"] .loader-bar {
  background: rgba(0, 0, 0, 0.08);
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--red);
  border-radius: 2px;
  animation: loaderBar 1.2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}
@keyframes loaderBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(250%);
  }
}

/* =============================================
   MEDIA CAROUSEL
   ============================================= */
.media-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark3);
}
.media-carousel--featured {
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
}
.media-carousel-viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
}
.media-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
}
.media-carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}
.media-carousel-slide img,
.media-carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #0a0a0a;
}
.sdc-image .media-carousel-slide img,
.sdc-image .media-carousel-slide video {
  object-fit: contain;
}
.media-carousel--featured .media-carousel-viewport {
  height: 100%;
}
.sdc-image .media-carousel-viewport {
  height: 100%;
  aspect-ratio: 9 / 16;
}
.mc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--transition);
}
.mc-arrow:hover {
  background: var(--red);
}
.mc-prev { left: 10px; }
.mc-next { right: 10px; }
.mc-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.mc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
  border: none;
}
.mc-dot.is-active {
  background: var(--red);
  transform: scale(1.2);
}
.mc-caption {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  padding: 0 16px;
  z-index: 2;
  pointer-events: none;
}
.featured-video-wrap {
  margin-bottom: 32px;
}

/* =============================================
   YOUTUBE LAZY LOAD
   ============================================= */
.yt-lazy {
  position: relative;
  background: #000;
}
.yt-lazy-play,
.social-yt-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  background: none;
  display: block;
}
.yt-lazy-play img,
.social-yt-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yt-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.social-yt-card {
  min-height: auto !important;
}
.social-yt-preview {
  position: relative;
  aspect-ratio: 16 / 9;
  flex: none;
}
.social-yt-preview img {
  position: absolute;
  inset: 0;
}

/* =============================================
   FORM & MAP
   ============================================= */
.form-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
}
.map-address {
  text-align: center;
  padding: 14px;
  background: var(--dark2);
  font-size: 0.9rem;
}
.map-address a {
  color: var(--red);
  font-weight: 500;
}

/* =============================================
   MOBILE RESPONSIVE — EXTRA
   ============================================= */
@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }
  .video-side {
    grid-template-columns: 1fr !important;
  }
  .shorts-grid,
  .yt-shorts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .media-carousel--featured {
    max-width: 100%;
  }
  .sdc-image .media-carousel {
    max-width: 100%;
  }
  .sdc-image .media-carousel-viewport {
    aspect-ratio: 9 / 16;
    height: auto;
    max-height: 70vh;
  }
  .nav-inner {
    gap: 8px;
  }
  .logo-text {
    font-size: 0.65rem;
  }
  .logo-img {
    width: 38px;
    height: 38px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item-wide {
    grid-column: span 1;
  }
  .stats-inner {
    gap: 16px;
  }
  .stat {
    min-width: 100%;
  }
  .process-step {
    max-width: 100%;
  }
  .social-embed-wrap iframe {
    min-height: 320px;
  }
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-sub {
    font-size: 0.85rem;
  }
  .shorts-grid,
  .yt-shorts-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .container {
    padding: 0 16px;
  }
  .mc-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
  }
  .page-hero-content h1 {
    font-size: 2rem;
  }
  .map-wrapper iframe {
    height: 320px;
  }
}
