@charset "UTF-8";
/* Master SCSS - categorized imports */
/* 1) Settings */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #fafbfc;
  --bg-secondary: #f3f4f6;
  --bg-tertiary: #e5e7eb;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --accent-warm: #d97706;
  --accent-warm-light: #fbbf24;
  --accent-warm-dark: #b45309;
  --accent-blue: #0ea5e9;
  --accent-blue-dark: #0284c7;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
}

[data-theme=dark] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;
  --accent-warm: #f97316;
  --accent-warm-light: #fb923c;
  --accent-warm-dark: #ea580c;
  --border-color: #334155;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: 50px !important;
  scrollbar-color: var(--accent-warm) !important;
}

/* width */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

/* 2) Functional / Site chrome */
/* ═══════════════════════════════════════════════════════════ */
/* HEADER & NAVIGATION */
/* ═══════════════════════════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 251, 252, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  header:not(.scrolled) {
    transition: none !important;
  }
}
[data-theme=dark] header {
  background: rgba(15, 23, 42, 0.8);
}

/* All pages EXCEPT index */
:not(.index_page) header:has(.nav-menu.active) {
  background-color: var(--bg-primary) !important;
  transition: none;
  opacity: 1 !important;
}

/* ONLY index page */
.index_page header:not(.scrolled):has(.nav-menu.active) {
  background-color: #0f172a !important;
  transition: none;
}

/* ═══════════════════════════════════════════════════════════ */
/* NAVIGATION – RESPONSIVE */
/* ═══════════════════════════════════════════════════════════ */
nav {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.logo img {
  width: 12rem;
  height: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.nav-menu a {
  color: var(--text-secondary) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent-warm-light));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
  color: var(--accent-warm);
}

.nav-menu a:hover::after {
  width: 100%;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  padding: 0.5rem;
}

.theme-toggle:hover {
  transform: rotate(20deg);
}

.cta-button {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  padding: 0.625rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.25);
}

/* ── Hamburger button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.35s ease;
}

.index_page header .hamburger span {
  background-color: #fff;
}

.index_page header.scrolled .hamburger span {
  background: var(--text-secondary);
}

.index_page header .hamburger {
  margin-top: 2rem;
}

.index_page header.scrolled .hamburger {
  margin-top: 1rem;
}

.hamburger[aria-expanded=true] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded=true] span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu.active {
  width: 100%;
  height: 100vh;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  display: inline-block;
  overflow-y: scroll;
  z-index: 2000;
}

@media (max-width: 480px) {
  /* Hide scrollbar for Chrome, Safari and Opera */
  .nav-menu.active::-webkit-scrollbar {
    display: none;
  }
  /* Hide scrollbar for IE, Edge and Firefox */
  .nav-menu.active {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
}
.nav-menu li a {
  font-size: 1.15rem;
  padding: 0.8rem 0;
  display: block;
}

.nav-actions {
  justify-content: center;
}

/* ── Mobile menu behavior ── */
@media (max-width: 1200px) {
  .hamburger {
    display: flex;
    z-index: 2000;
    position: fixed;
    right: 2rem;
    top: 2.5rem;
  }
  nav {
    flex-wrap: wrap;
    padding: 1rem;
  }
  [data-theme=dark] .nav-menu {
    background: var(--bg-primary);
  }
  [data-theme=dark] .nav-menu a {
    color: var(--text-primary) !important;
  }
  .index_page .nav-menu {
    background: #0f172a;
  }
  .index_page header.scrolled .nav-menu {
    background: var(--bg-primary) !important;
  }
  .nav-menu {
    display: none;
  }
  .nav-actions {
    margin-right: 5rem;
  }
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(250, 251, 252, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem 2rem 3rem;
    gap: 1.5rem;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    border-top: 1px solid var(--text-tertiary);
  }
  .index_page .hamburger {
    top: 1.5rem;
  }
  .index_page header.scrolled .hamburger {
    top: 2.5rem;
  }
  .nav-menu li a {
    width: 100%;
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--text-tertiary);
  }
  .nav-menu li a:hover {
    background: var(--bg-secondary);
    border-bottom: none;
  }
  .index_page header:not(.scrolled) li a:hover {
    background: none !important;
  }
}
@media (max-width: 380px) {
  .logo img {
    width: 10rem;
    margin-top: 0.5rem;
  }
}
@media (max-width: 640px) {
  .index_page .nav-actions .cta-button {
    display: none;
  }
}
@media (max-width: 590px) {
  .nav-actions .cta-button {
    display: none;
  }
}
@media (max-width: 420px) {
  .index_page .nav-actions .theme-toggle {
    position: fixed;
    right: 4.5rem;
    top: 3rem;
  }
}
@media (max-width: 340px) {
  .nav-actions .theme-toggle {
    position: fixed;
    right: 5rem;
    top: 2rem;
  }
}
@media (max-width: 300px) {
  .nav-actions .theme-toggle {
    width: 1rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  .logo {
    visibility: hidden;
  }
  .hamburger {
    position: fixed;
    left: 1.5rem;
    top: 1.5rem;
  }
}
@media (max-width: 480px) {
  .logo {
    font-size: 1rem;
  }
  nav {
    padding: 1rem;
  }
  .index_page .hamburger {
    position: fixed;
    right: 1.5rem;
    top: 1.5rem;
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* HERO SECTION */
/* ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1), transparent);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08), transparent);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

section {
  padding: 3rem 2rem;
  position: relative;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h2 .accent {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header h2 .accent {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}
.section-header p .section-header h2 {
  font-size: 2rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* CTA STRIPS */
/* ═══════════════════════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
}

.cta-strip-content {
  position: relative;
  z-index: 1;
}

.cta-strip h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-strip p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.cta-strip .cta-button {
  background: white;
  color: var(--accent-warm);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-strip a:nth-child(n+1) {
  margin: 1rem !important;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  section {
    padding: 4rem 2rem;
  }
  .section-container h2 {
    text-align: center;
  }
  .cta-strip h3 {
    font-size: 1.5rem !important;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  .cta-strip p {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem;
    opacity: 0.95;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  section {
    padding: 3rem 1rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 400px) {
  .cta-strip h3 {
    font-size: 1.5rem;
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* FOOTER */
/* ═══════════════════════════════════════════════════════════ */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-section a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-warm);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-tertiary);
  font-size: 0.9rem;
}

#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-tertiary);
  border-top: var(--bg-primary) 1px solid;
  color: var(--text-primary);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  font-size: 14px;
}

#cookie-notice a {
  color: var(--accent-warm);
  text-decoration: none;
}

#cookie-notice a:hover {
  color: var(--accent-warm-light);
}

#cookie-notice button {
  background: #fff;
  color: #111;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: 600;
}

#cookie-notice button:hover {
  opacity: 0.8;
}

@media (max-width: 600px) {
  #cookie-notice {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
/* 3) Layout / Utilities */
/* ═══════════════════════════════════════════════════════════ */
/* VIDEO PLAYER */
/* ═══════════════════════════════════════════════════════════ */
.video-player-wrapper {
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
}

.video-display {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}

.video-display video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  font-size: 4rem;
}

.video-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  align-items: center;
}

.control-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.video-btn {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.video-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.video-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.video-time-display {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 120px;
  text-align: center;
}

.progress-bar {
  flex: 1;
  min-width: 150px;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent-warm-light));
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
}

.speed-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.speed-select {
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
}

.video-info {
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.video-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.video-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.video-meta {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════ */
/* NAVIGATION CONTROLS */
/* ═══════════════════════════════════════════════════════════ */
.navigation-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.nav-btn {
  background: var(--bg-secondary);
  color: var(--accent-warm);
  border: 2px solid var(--accent-warm);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.nav-btn:hover:not(:disabled) {
  background: var(--accent-warm);
  color: white;
  transform: translateY(-2px);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.video-counter {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 80px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════ */
/* VIDEO GRID */
/* ═══════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-header h2 .accent {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.video-thumbnail {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail img {
  max-width: 100%;
}

.video-thumbnail:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-warm);
}

.video-thumbnail.active {
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}

.thumbnail-image {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.7), rgba(249, 115, 22, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-thumbnail:hover .thumbnail-overlay {
  opacity: 1;
}

.play-icon {
  font-size: 3rem;
  color: white;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.thumbnail-content {
  padding: 1.25rem;
}

.thumbnail-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.thumbnail-description {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.thumbnail-meta {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  display: flex;
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .video-controls {
    flex-direction: column;
    gap: 1rem;
  }
  .control-group {
    width: 100%;
    justify-content: center;
  }
  .progress-bar {
    width: 100%;
  }
  .navigation-controls {
    gap: 0.5rem;
  }
  .nav-btn {
    flex: 1;
    min-width: 100px;
  }
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-controls {
    gap: 0.75rem;
  }
  .video-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  .navigation-controls {
    flex-direction: column;
  }
  .nav-btn,
  .video-counter {
    width: 100%;
  }
  .video-info h2 {
    font-size: 1.25rem;
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .video-controls {
    flex-direction: column;
    gap: 1rem;
  }
  .control-group {
    width: 100%;
    justify-content: center;
  }
  .progress-bar {
    width: 100%;
  }
  .navigation-controls {
    gap: 0.5rem;
  }
  .nav-btn {
    flex: 1;
    min-width: 100px;
  }
  .video-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-controls {
    gap: 0.75rem;
  }
  .video-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  .navigation-controls {
    flex-direction: column;
  }
  .nav-btn,
  .video-counter {
    width: 100%;
  }
  .video-info h2 {
    font-size: 1.25rem;
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* FILTER BUTTONS */
/* ═══════════════════════════════════════════════════════════ */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
}

.filter-btn:hover {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  border-color: var(--accent-warm);
  box-shadow: 0 8px 16px rgba(217, 119, 6, 0.3);
}

/* ═══════════════════════════════════════════════════════════ */
/* GALLERY GRID */
/* ═══════════════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem !important;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  cursor: pointer;
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
  height: 350px;
}

@media (max-width: 360px) {
  .gallery-item {
    margin-top: 1rem;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.gallery-item:nth-child(1) {
  animation-delay: 0.05s;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.15s;
}

.gallery-item:nth-child(4) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(5) {
  animation-delay: 0.25s;
}

.gallery-item:nth-child(6) {
  animation-delay: 0.3s;
}

.gallery-item:nth-child(7) {
  animation-delay: 0.35s;
}

.gallery-item:nth-child(8) {
  animation-delay: 0.4s;
}

.gallery-item:nth-child(9) {
  animation-delay: 0.45s;
}

.gallery-item:nth-child(10) {
  animation-delay: 0.5s;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.gallery-image img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 20px 20px;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.15) rotate(2deg);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.8), rgba(249, 115, 22, 0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
  z-index: 2;
}

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

.overlay-icon {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 0.75rem;
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.overlay-text {
  color: white;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.gallery-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  color: white;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

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

.gallery-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.gallery-type {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════ */
/* LIGHTBOX MODAL */
/* ═══════════════════════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(5px);
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 90vw;
  max-width: 600px;
  max-height: 85vh;
  background: var(--bg-primary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.lightbox-image-container {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
}

.lightbox-image {
  max-height: 100vh;
  max-width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.lightbox-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 20px 20px;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.lightbox-info {
  padding: 2rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.lightbox-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.lightbox-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.lightbox-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--text-tertiary);
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg) scale(1.1);
}

.nav-lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.nav-lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 1.5rem;
}

.next-btn {
  right: 1.5rem;
}

.image-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════ */
/* BEFORE/AFTER SECTION */
/* ═══════════════════════════════════════════════════════════ */
.gallery-before-after-section {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  margin-bottom: 4rem;
}

.gallery-before-after-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .gallery-before-after-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .comparison-wrapper {
    order: -1;
    margin-bottom: 2rem;
  }
}
.comparison-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 450px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.comparison-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.comparison-image img {
  width: 100%;
}

.comparison-image.after {
  clip-path: inset(0 50% 0 0);
}

.comparison-slider {
  position: absolute;
  width: 4px;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent-warm-light));
  left: 50%;
  top: 0;
  cursor: col-resize;
  z-index: 5;
  box-shadow: 0 0 10px rgba(217, 119, 6, 0.5);
  transform: translateX(-2px);
}

.comparison-slider::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-label {
  position: absolute;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.label-before {
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.label-after {
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.before-after-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.before-after-info h3 .accent {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.before-after-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.before-after-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--bg-primary);
  border-left: 4px solid var(--accent-warm);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  background: linear-gradient(90deg, var(--bg-primary), var(--bg-secondary));
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-text {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════ */
/* STATS SECTION */
/* ═══════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-warm);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* FEATURED PROJECTS */
/* ═══════════════════════════════════════════════════════════ */
.featured-section {
  background: var(--bg-secondary);
  padding: 3rem 2rem;
  border-radius: 16px;
  margin-bottom: 4rem;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.featured-section h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.featured-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.featured-project-card {
  background: var(--bg-primary);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.featured-project-card img {
  width: 100%;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.featured-project-card::before {
  content: "⭐ Featured";
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 0 0 0 8px;
  animation: slideDown 0.6s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.featured-project-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.featured-project-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.featured-project-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.featured-project-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .featured-section {
    padding: 1rem 1rem;
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* CLOSE BUTTON ENHANCEMENT */
/* ═══════════════════════════════════════════════════════════ */
.close-btn::after {
  content: "Click to Close";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 100;
}

.close-btn:hover::after {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .gallery-grid {
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 2rem;
    overflow-x: visible;
  }
  .gallery-item {
    height: 160px;
  }
  .filter-container {
    gap: 0.75rem;
  }
  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  .lightbox-content {
    max-width: 95vw;
    max-height: 80vh;
    border-radius: 16px;
  }
  .lightbox-info {
    padding: 1.5rem;
  }
  .lightbox-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 360px) {
  .gallery-grid {
    display: block;
    grid-template-rows: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  .gallery-item {
    width: 100%;
    height: 300px;
  }
  .filter-container {
    gap: 0.5rem;
  }
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  .gallery-overlay {
    justify-content: flex-end;
  }
  .overlay-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .overlay-text {
    font-size: 0.9rem;
  }
  .close-btn,
  .nav-lightbox-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .nav-lightbox-btn {
    width: 40px;
    height: 40px;
  }
  .prev-btn {
    left: 0.75rem;
  }
  .next-btn {
    right: 0.75rem;
  }
  .lightbox-content {
    max-width: 98vw;
    border-radius: 12px;
  }
}
/* 4) Webpages (content styles) */
/* ═══════════════════════════════════════════════════════════ */
/* HEADER */
/* ═══════════════════════════════════════════════════════════ */
.index-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 251, 252, 0);
  backdrop-filter: blur(0px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  border: none;
}

.index-header.scrolled {
  background: rgba(250, 251, 252, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--border-color);
}

[data-theme=dark] .index-header {
  background: rgba(15, 23, 42, 0.8);
}

.index-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.index-header.scrolled .logo {
  color: var(--text-primary);
}

.index_page .nav-menu a {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.index_page header {
  background: rgba(15, 23, 42, 0) !important;
  height: 8rem;
  padding: 1rem;
}

.index_page header.scrolled {
  background: var(--bg-primary) !important;
}

.index_page header.scrolled .nav-menu a {
  color: var(--text-secondary) !important;
  transition: none;
}

.index_page .theme-toggle {
  color: rgb(17, 17, 17) !important;
}

.index-header.scrolled .theme-toggle {
  color: var(--text-primary);
}

.index-cta-button {
  background: var(--accent-warm);
  color: white;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.index-cta-button:hover {
  color: #0f172a;
  background-color: var(accent-warm-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.4);
}

.index_page .featured-projects-grid {
  margin-top: 1.5rem;
}

.view-ourwork-wrapper-CTA {
  max-width: 1400px;
  border-radius: 1rem;
  height: 5.5rem;
  margin: 0 auto 0 auto;
  background: var(--bg-secondary);
}

.view-ourwork-wrapper-CTA a {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  padding: 1rem;
  margin: 1rem;
  border-radius: 0 1rem 0 1rem;
  text-decoration: none;
  font-weight: bold;
  box-shadow: var(--shadow-md);
}

@media (max-width: 620px) {
  .view-ourwork-wrapper-CTA {
    height: 11.5rem;
  }
  .view-ourwork-wrapper-CTA a {
    width: 90%;
    text-align: center;
    float: inline-start;
  }
}
.view-ourwork-wrapper-CTA a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.4);
}

.view-our-videos {
  float: left;
}

.view-our-gallery {
  float: right;
}

/* ═══════════════════════════════════════════════════════════ */
/* HERO */
/* ═══════════════════════════════════════════════════════════ */
.index-hero {
  position: relative;
  min-height: 100vh; /* fallback */
  min-height: 100svh; /* modern stable fix */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1a1a2e 100%);
  background-image: url(../assets/images/index-background_CTA1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.index-hero::before,
.index-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.index-hero::before {
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.2), transparent);
}

.index-hero::after {
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15), transparent);
  animation-direction: reverse;
  animation-duration: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-40px);
  }
}
.index-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
}

.index-hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  animation: slideUp 1s ease-out 0.2s both;
}

.index-hero h2 .gradient-text {
  font-size: 2.5rem;
  background-color: var(--accent-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.index-hero p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  animation: slideUp 1s ease-out 0.4s both;
}

.index-hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 1s ease-out 0.6s both;
}

.index-hero-buttons .cta-button {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.index-hero-buttons .secondary-btn {
  color: #000;
  background: rgb(255, 255, 255);
  border: 2px solid rgb(240, 240, 240);
  backdrop-filter: blur(10px);
}

.secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.8) !important;
  border-color: rgb(217, 217, 217);
  color: #636363 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  animation: bounce 2s infinite;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* STATS */
/* ═══════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* FEATURES */
/* ═══════════════════════════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature-card {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════ */
/* DID YOU KNOW */
/* ═══════════════════════════════════════════════════════════ */
.did-you-know {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
  padding: 4rem 3rem;
  border-radius: 16px;
  color: white;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.did-you-know::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 50%;
}

.did-you-know-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.did-you-know-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  line-height: 1.8;
}

.did-you-know-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

@media (max-width: 410px) {
  .did-you-know {
    padding: 1rem 1rem;
  }
  .did-you-know-card {
    padding: 1rem 1rem;
  }
  .did-you-know-content {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* TIPS */
/* ═══════════════════════════════════════════════════════════ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.tip-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-warm);
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.tip-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.tip-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.tip-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* REVIEWS */
/* ═══════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.review-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.8;
}

.review-author {
  font-weight: 700;
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* SOCIAL */
/* ═══════════════════════════════════════════════════════════ */
.social-section {
  text-align: center;
  margin: 4rem 0;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 480px) {
  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
.social-link:hover {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  border-color: var(--accent-warm);
  transform: translateY(-8px) scale(1.1);
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .index-hero h1 {
    font-size: 2.5rem;
    margin-top: 3rem;
  }
  .index-hero p {
    font-size: 1.1rem;
  }
  .index-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  section {
    padding: 3rem 1rem;
  }
  h2 {
    font-size: 2rem;
  }
  .email-form {
    flex-direction: column;
  }
  .email-form input, .email-form button {
    min-width: 100%;
  }
}
@media (max-width: 480px) {
  .index-header {
    padding: 1rem;
  }
  .logo {
    font-size: 1.2rem;
  }
  .index-hero h1 {
    font-size: 1.8rem;
  }
  .index-hero p {
    font-size: 1rem;
  }
  section {
    padding: 2rem 1rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .stats-grid, .features-grid, .reviews-grid, .blog-grid, .tips-grid {
    grid-template-columns: 1fr;
  }
}
/* Home */
/* ═══════════════════════════════════════════════════════════ */
/* CONTENT SECTIONS */
/* ═══════════════════════════════════════════════════════════ */
/* History Section */
.history {
  background: var(--bg-secondary);
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.history-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.history-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}

.history-visual {
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-tertiary));
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  min-height: 350px;
  border: 1px solid var(--border-color);
}

.history-visual img {
  max-width: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--border-color);
}

@media (max-width: 1200px) {
  .history-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .history-visual {
    order: -1;
    margin-bottom: 2rem;
  }
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-year {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent-warm);
}

.timeline-content h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* Services Section */
.services {
  background: var(--bg-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-warm);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-warm), var(--accent-warm-light));
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Quality Commitment Section */
.quality {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.quality-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quality-visual {
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  min-height: 350px;
  order: 2;
}

.quality-visual img {
  max-width: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--border-color);
}

@media (max-width: 1200px) {
  .quality-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .quality-visual {
    order: -1;
    margin-bottom: 2rem;
  }
}
.quality-text {
  order: 1;
}

.quality-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.quality-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 420px) {
  .values-grid {
    display: block;
    text-align: center;
  }
}
.value-item {
  background: var(--bg-primary);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-warm);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.value-item h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.value-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* Reviews Section */
.reviews {
  background: var(--bg-secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  color: var(--accent-warm);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.review-role {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Portfolio Section */
.portfolio {
  background: var(--bg-primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.portfolio-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(217, 119, 6, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.portfolio-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.9));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 700;
  font-size: 1rem;
}

[data-theme=dark] .portfolio-label {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
}

.portfolio-item:hover .portfolio-label {
  transform: translateY(0);
}

.service-tabs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  border-bottom: 2px solid var(--border-color);
}

.service-tab {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-secondary);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.service-tab.active {
  color: var(--accent-warm);
  border-bottom-color: var(--accent-warm);
}

.service-tab:hover {
  color: var(--text-primary);
}

.service-content {
  display: none;
}

.service-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.service-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.service-visual {
  font-size: 6rem;
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 2px solid var(--border-color);
}

.service-visual img {
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-description h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.service-description p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
}

.feature-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-box {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  margin-top: 2rem;
}

.pricing-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.price-range {
  font-size: 1.8rem;
  color: var(--accent-warm);
  font-weight: 900;
  margin-bottom: 1rem;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.applications {
  margin-top: 3rem;
}

.applications h4 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.application-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.application-card p {
  width: 100%;
}

.application-card a {
  width: 100%;
  max-height: 4rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  padding: 1rem;
  margin: 1rem 0rem;
  text-align: center;
  border-radius: 0 1rem 0 1rem;
  text-decoration: none;
  font-weight: bold;
  align-self: flex-end;
  float: left;
  box-shadow: var(--shadow-md);
}

.application-card a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.4);
}

.application-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.application-card h5 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.application-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .service-overview {
    grid-template-columns: 1fr;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .service-tabs {
    flex-direction: column;
  }
  .service-tab {
    width: 100%;
    border-bottom: none;
    border-left: 3px solid transparent;
    padding-left: 1.5rem;
    margin-bottom: 0;
  }
  .service-tab.active {
    border-left-color: var(--accent-warm);
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* HERO SECTION */
/* ═══════════════════════════════════════════════════════════ */
.plastering-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.plastering-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1), transparent);
  border-radius: 50%;
  z-index: 0;
}

.plastering-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08), transparent);
  border-radius: 50%;
  z-index: 0;
}

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

.plastering-hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.plastering-hero-text h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plastering-hero-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.plastering-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.plastering-hero-buttons a {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  box-shadow: var(--shadow-lg);
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.3);
}

.plastering-hero-visual {
  font-size: 5rem;
  text-align: center;
}

.plastering-hero-visual img {
  max-width: 100%;
  border-radius: 20%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--border-color);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* SERVICES GRID */
/* ═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-secondary);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.service-features li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-features li::before {
  content: "✓";
  color: var(--accent-warm);
  font-weight: 800;
  flex-shrink: 0;
}

.service-link {
  color: var(--accent-warm);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* PROCESS SECTION */
/* ═══════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════ */
/* CTA SECTION */
/* ═══════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  text-align: center;
  border-radius: 16px;
  padding: 4rem 2rem;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.white-btn {
  background: white;
  color: var(--accent-warm);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.white-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════════ */
/* COMPARISON TABLE */
/* ═══════════════════════════════════════════════════════════ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}

@media (max-width: 380px) {
  .comparison-table {
    font-size: 0.8rem !important;
  }
}
.comparison-table th,
.comparison-table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  font-weight: 700;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.check-mark {
  color: var(--accent-warm);
  font-weight: 800;
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* BENEFITS SECTION */
/* ═══════════════════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .plastering-hero-content {
    grid-template-columns: 1fr;
  }
  .plastering-hero-text h1 {
    font-size: 2rem;
  }
  .plastering-hero-visual {
    font-size: 3rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .plastering-hero-buttons {
    flex-direction: column;
  }
  .plastering-hero-buttons a {
    width: 100%;
    justify-content: center;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .white-btn {
    width: 100%;
    justify-content: center;
  }
  .comparison-table {
    font-size: 0.9rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }
}
@media (max-width: 480px) {
  .plastering-hero {
    padding: 3rem 1rem;
  }
  .plastering-hero-text h1 {
    font-size: 1.5rem;
  }
  section {
    padding: 2rem 1rem;
  }
  .section-header h2 {
    font-size: 1.25rem;
  }
  .services-grid {
    gap: 1rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .cta-section {
    padding: 2rem 1rem;
  }
  .cta-section h2 {
    font-size: 1.5rem;
  }
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .plastering-hero-visual {
    font-size: 2.5rem;
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* HERO SECTION */
/* ═══════════════════════════════════════════════════════════ */
.rendering-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.rendering-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1), transparent);
  border-radius: 50%;
  z-index: 0;
}

.rendering-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08), transparent);
  border-radius: 50%;
  z-index: 0;
}

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

.rendering-hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.rendering-hero-text h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rendering-hero-text p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.rendering-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.rendering-hero-buttons a {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  box-shadow: var(--shadow-lg);
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.3);
}

.secondary-btn {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--accent-warm);
}

.secondary-btn:hover {
  background: var(--accent-warm);
  color: white;
}

.rendering-hero-visual {
  font-size: 5rem;
  text-align: center;
}

.rendering-hero-visual img {
  max-width: 100%;
  border-radius: 20%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--border-color);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* SERVICES GRID */
/* ═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-secondary);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.service-features li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.service-features li::before {
  content: "✓";
  color: var(--accent-warm);
  font-weight: 800;
  flex-shrink: 0;
}

.service-link {
  color: var(--accent-warm);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* PROCESS SECTION */
/* ═══════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.process-step p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════ */
/* CTA SECTION */
/* ═══════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  text-align: center;
  border-radius: 16px;
  padding: 4rem 2rem;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.white-btn {
  background: white;
  color: var(--accent-warm);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.white-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════════════════════ */
/* COMPARISON TABLE */
/* ═══════════════════════════════════════════════════════════ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-secondary);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  font-weight: 700;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

.check-mark {
  color: var(--accent-warm);
  font-weight: 800;
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* BENEFITS SECTION */
/* ═══════════════════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.benefit-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .rendering-hero-content {
    grid-template-columns: 1fr;
  }
  .renderinghero-text h1 {
    font-size: 2rem;
  }
  .rendering-hero-visual {
    font-size: 3rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .renderinghero-buttons {
    flex-direction: column;
  }
  .renderinghero-buttons a {
    width: 100%;
    justify-content: center;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .white-btn {
    width: 100%;
    justify-content: center;
  }
  .comparison-table {
    font-size: 0.9rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }
}
@media (max-width: 480px) {
  .rendering-hero {
    padding: 3rem 1rem;
  }
  .rendering-hero-text h1 {
    font-size: 1.5rem;
  }
  .services-grid {
    gap: 1rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .cta-section {
    padding: 2rem 1rem;
  }
  .cta-section h2 {
    font-size: 1.5rem;
  }
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .rendering-hero-visual {
    font-size: 2.5rem;
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* REVIEWS SECTION */
/* ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════ */
/* VIDEO SECTION */
/* ═══════════════════════════════════════════════════════════ */
.video-container {
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  margin-bottom: 2rem;
}

.video-player {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--bg-tertiary);
  overflow: hidden;
}

.video-player iframe,
.video-player video,
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0;
}

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  font-size: 3rem;
  color: var(--text-tertiary);
}

.video-nav {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.video-info {
  flex: 1;
}

.video-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.video-description {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.video-counter {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
  min-width: 60px;
  text-align: right;
}

.video-controls {
  display: flex;
  gap: 1rem;
}

.video-btn {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.video-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════════════════════ */
/* STATS SECTION */
/* ═══════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .video-nav {
    flex-direction: column;
    gap: 1rem;
  }
  .video-counter {
    width: 100%;
    text-align: center;
  }
  .modal-content {
    padding: 1rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .reviews-grid {
    gap: 1rem;
  }
  .review-card {
    padding: 1.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .video-controls {
    width: 100%;
    flex-direction: column;
  }
  .video-btn {
    width: 100%;
  }
  .modal-content {
    max-width: 100%;
    padding: 1rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 2rem;
  }
}
.ba-section {
  max-width: 1300px;
  margin: 0 auto !important;
  padding: 5rem 1.25rem;
}

.ba-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.ba-header h2 {
  font-size: 2.6rem;
  color: var(--ba-dark);
  margin-bottom: 0.8rem;
}

.ba-header p {
  font-size: 1.15rem;
  color: #64748b;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
}

.ba-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--ba-shadow);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.ba-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.ba-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
}

.ba-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-card:hover .ba-overlay {
  opacity: 1;
}

.ba-overlay-emoji {
  font-size: 4.5rem;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.ba-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ba-label.after {
  background: var(--bg-primary) !important;
  color: var(--text-primary);
}

/* ────────────────────────────────────────
    Modal
──────────────────────────────────────── */
.ba-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: grid;
  place-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.ba-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.ba-modal-box {
  display: flex;
  flex-direction: column;
  background: white;
  width: 100%;
  max-width: 600px;
  max-height: 85vh;
  margin: 1rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  position: relative;
}

.ba-modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.9rem;
  cursor: pointer;
  z-index: 10;
  display: grid;
  place-items: center;
  transition: background 0.2s;
}

.ba-modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.85);
}

.ba-slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #111;
  overflow: hidden;
}

.ba-before-img,
.ba-after-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ba-after-img {
  clip-path: inset(0 50% 0 0);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
  background: white;
  left: 50%;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle-knob {
  width: 52px;
  height: 52px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.ba-labels {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  text-shadow: 0 2px 8px black;
  pointer-events: none;
  z-index: 8;
  padding: 0 2.5rem;
}

.ba-info {
  padding: 2rem 2.5rem;
  text-align: center;
}

.ba-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--ba-dark);
}

.ba-info p.tip {
  margin-top: 1.2rem;
  color: #64748b;
  font-size: 0.98rem;
}

.ba-cta {
  text-align: center;
  margin-top: 4rem;
}

.ba-cta a {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: var(--ba-primary);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.15rem;
  transition: all 0.3s;
}

.ba-cta a:hover {
  background: #a83224;
  transform: translateY(-3px);
}

/* 5) Pages / Templates */
/* ═══════════════════════════════════════════════════════════ */
/* CALCULATOR SECTION */
/* ═══════════════════════════════════════════════════════════ */
.calculator-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}

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

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Calculator Form */
.calculator-form {
  background: var(--bg-primary);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.calculator-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.form-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.form-section h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.input-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.form-group input,
.form-group select {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input::-moz-placeholder {
  color: var(--text-tertiary);
}

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

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.unit-label {
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-secondary);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  margin-bottom: 0.75rem;
}

.checkbox-item:hover {
  background: var(--bg-tertiary);
  border-color: var(--accent-warm);
}

.checkbox-item input[type=checkbox] {
  width: auto;
  cursor: pointer;
  accent-color: var(--accent-warm);
}

.checkbox-item label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-secondary);
  flex: 1;
}

.calc-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1rem;
}

.calc-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.25);
}

/* Quote Result */
.quote-result {
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  padding: 2.5rem;
  border-radius: 12px;
  border: 2px solid var(--accent-warm);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}

.quote-result h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.quote-breakdown {
  margin-bottom: 2rem;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg-primary);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-color);
}

.breakdown-label {
  font-weight: 600;
  color: var(--text-secondary);
}

.breakdown-value {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1.05rem;
}

.breakdown-item.material {
  background: var(--bg-secondary);
  border-color: var(--accent-warm);
}

.breakdown-item.material .breakdown-value {
  color: var(--accent-warm);
}

.quote-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--accent-warm), transparent);
  margin: 1.5rem 0;
}

.quote-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  border-radius: 8px;
  color: white;
  text-align: right;
  margin-bottom: 1.5rem;
}

.quote-total-label {
  font-weight: 700;
  font-size: 1.1rem;
}

.quote-total-value {
  font-weight: 800;
  font-size: 2rem;
  font-family: "Space Mono", monospace;
}

.quote-notes {
  background: var(--bg-secondary);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-warm);
  margin-bottom: 1.5rem;
}

.quote-notes h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.quote-notes p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0.25rem 0;
}

.quote-action {
  display: flex;
  gap: 1rem;
}

.quote-action a,
.quote-action button {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.quote-action .primary {
  background: white;
  color: var(--accent-warm);
}

.quote-action .primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.quote-action .secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid white;
}

.quote-action .secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════ */
/* INFO SECTION */
/* ═══════════════════════════════════════════════════════════ */
.info-section {
  padding: 6rem 2rem;
  background: var(--bg-primary);
}

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

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.info-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .calculator-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .quote-result {
    position: static;
    top: auto;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .calculator-form {
    padding: 1.5rem;
  }
  .quote-result {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .calculator-section {
    padding: 3rem 1rem;
  }
  .info-section {
    padding: 3rem 1rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .calculator-form,
  .quote-result {
    padding: 1rem;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .breakdown-item {
    padding: 0.75rem;
  }
  .quote-total {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .quote-action {
    flex-direction: column;
  }
  .input-wrapper {
    flex-direction: column;
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* CONTACT FORM SECTION */
/* ═══════════════════════════════════════════════════════════ */
.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 1200px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
/* Contact Info */
.contact-info-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-card {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-warm);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.info-card a {
  color: var(--accent-warm);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: var(--accent-warm-light);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

@media (max-width: 1200px) {
  .follow-us-contactpg {
    text-align: center;
  }
}
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--text-primary);
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  border-color: transparent;
  transform: translateY(-4px);
}

/* Contact Form */
.contact-form-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.contact-form {
  background: var(--bg-secondary);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

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

@media (max-width: 400px) {
  .form-group {
    margin-top: 1rem;
  }
  .contact-container * {
    line-height: 2rem;
    margin: 0;
  }
}
.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input::-moz-placeholder, .form-group textarea::-moz-placeholder {
  color: var(--text-tertiary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 400px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.checkbox-group {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-item input[type=checkbox] {
  width: auto;
  cursor: pointer;
  accent-color: var(--accent-warm);
}

.checkbox-item label {
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1rem;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.25);
}

.form-submit:active {
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════ */
/* FAQ SECTION */
/* ═══════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--bg-secondary);
  padding: 6rem 2rem;
}

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

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-warm);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-primary);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.faq-question::after {
  content: "▼";
  font-size: 0.75rem;
  color: var(--accent-warm);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-secondary);
}

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

/* 6) Legal / Misc */
/* ═══════════════════════════════════════════════════════════ */
/* CONTENT SECTION */
/* ═══════════════════════════════════════════════════════════ */
.content-section {
  padding: 6rem 2rem;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
}

.last-updated {
  text-align: center;
  color: var(--text-tertiary);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border-left: 4px solid var(--accent-warm);
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-icon {
  font-size: 1.5rem;
}

.policy-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.policy-section h3:first-of-type {
  margin-top: 0;
}

.policy-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.policy-section ul {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-secondary);
}

.policy-section li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.highlight-box {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-warm);
  margin: 1.5rem 0;
  color: var(--text-secondary);
}

.highlight-box strong {
  color: var(--text-primary);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.data-table th {
  background: var(--bg-tertiary);
  font-weight: 700;
  color: var(--text-primary);
}

.data-table tr:last-child td {
  border-bottom: none;
}

.contact-card {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-top: 2rem;
  text-align: center;
}

.contact-card h3 {
  margin-top: 0;
}

.contact-card p {
  margin: 1rem 0;
}

.contact-card a {
  color: var(--accent-warm);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--accent-warm-light);
}

/* ═══════════════════════════════════════════════════════════ */
/* TABLE OF CONTENTS */
/* ═══════════════════════════════════════════════════════════ */
.toc {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 3rem;
}

.toc h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.toc ul {
  list-style: none;
  margin: 0;
}

.toc li {
  margin-bottom: 0.75rem;
}

.toc a {
  color: var(--accent-warm);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.toc a:hover {
  color: var(--accent-warm-light);
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .policy-section h2 {
    font-size: 1.5rem;
  }
  .data-table {
    font-size: 0.85rem;
  }
  .data-table th,
  .data-table td {
    padding: 0.75rem;
  }
}
@media (max-width: 480px) {
  .content-section {
    padding: 2rem 1rem;
  }
  .policy-section h2 {
    font-size: 1.25rem;
  }
  .policy-section h3 {
    font-size: 1.05rem;
  }
  .toc {
    padding: 1.5rem;
  }
  .highlight-box {
    padding: 1rem;
  }
  .contact-card {
    padding: 1.5rem;
  }
  .data-table th,
  .data-table td {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* CONTENT SECTION */
/* ═══════════════════════════════════════════════════════════ */
.content-section {
  padding: 6rem 2rem;
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
}

.last-updated {
  text-align: center;
  color: var(--text-tertiary);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border-left: 4px solid var(--accent-warm);
}

.terms-section {
  margin-bottom: 3rem;
}

.terms-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-icon {
  font-size: 1.5rem;
}

.terms-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.terms-section h3:first-of-type {
  margin-top: 0;
}

.terms-section p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 0.95rem;
}

.terms-section ul, .terms-section ol {
  margin: 1rem 0 1rem 2rem;
  color: var(--text-secondary);
}

.terms-section li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.highlight-box {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-warm);
  margin: 1.5rem 0;
  color: var(--text-secondary);
}

.highlight-box strong {
  color: var(--text-primary);
}

.warning-box {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.1), rgba(249, 115, 22, 0.05));
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-warm);
  margin: 1.5rem 0;
  color: var(--text-secondary);
}

.service-terms-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
}

.service-terms-table th,
.service-terms-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.service-terms-table th {
  background: var(--bg-tertiary);
  font-weight: 700;
  color: var(--text-primary);
}

.service-terms-table tr:last-child td {
  border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════ */
/* TABLE OF CONTENTS */
/* ═══════════════════════════════════════════════════════════ */
.toc {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 3rem;
}

.toc h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.toc ul {
  list-style: none;
  margin: 0;
}

.toc li {
  margin-bottom: 0.75rem;
}

.toc a {
  color: var(--accent-warm);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.toc a:hover {
  color: var(--accent-warm-light);
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .content-section {
    padding: 3rem 1rem;
  }
  .terms-section h2 {
    font-size: 1.5rem;
  }
  .service-terms-table {
    font-size: 0.85rem;
  }
  .service-terms-table th,
  .service-terms-table td {
    padding: 0.75rem;
  }
}
@media (max-width: 480px) {
  .content-section {
    padding: 2rem 1rem;
  }
  .terms-section h2 {
    font-size: 1.25rem;
  }
  .terms-section h3 {
    font-size: 1.05rem;
  }
  .toc {
    padding: 1.5rem;
  }
  .highlight-box,
  .warning-box {
    padding: 1rem;
  }
  .service-terms-table th,
  .service-terms-table td {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* SEARCH BAR */
/* ═══════════════════════════════════════════════════════════ */
.search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-box {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.search-box input {
  width: 100%;
  padding: 1rem 1.5rem 1rem 3rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.search-box input:focus {
  outline: none;
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
  background: var(--bg-secondary);
}

.search-box::before {
  content: "🔍";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════════════════════════ */
/* CATEGORY TABS */
/* ═══════════════════════════════════════════════════════════ */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.category-tab {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
}

.category-tab:hover {
  border-color: var(--accent-warm);
  color: var(--accent-warm);
  transform: translateY(-2px);
}

.category-tab.active {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  border-color: var(--accent-warm);
  box-shadow: 0 8px 16px rgba(217, 119, 6, 0.3);
}

/* ═══════════════════════════════════════════════════════════ */
/* FAQ ITEMS */
/* ═══════════════════════════════════════════════════════════ */
.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.faq-item {
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.faq-item:nth-child(1) {
  animation-delay: 0.05s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.15s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.2s;
}

.faq-item:nth-child(5) {
  animation-delay: 0.25s;
}

.faq-item:nth-child(6) {
  animation-delay: 0.3s;
}

.faq-item:nth-child(7) {
  animation-delay: 0.35s;
}

.faq-item:nth-child(8) {
  animation-delay: 0.4s;
}

.faq-item:nth-child(9) {
  animation-delay: 0.45s;
}

.faq-item:nth-child(10) {
  animation-delay: 0.5s;
}

.faq-item:hover:not(.open) {
  border-color: var(--accent-warm-light);
  box-shadow: var(--shadow-md);
}

.faq-item.open {
  border-color: var(--accent-warm);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  padding: 1.75rem;
  background: var(--bg-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (max-width: 600px) {
  .faq-number {
    display: none;
  }
}
@media (max-width: 500px) {
  .faq-toggle {
    display: none !important;
  }
}
.faq-question:hover {
  background: linear-gradient(90deg, var(--bg-secondary), rgba(217, 119, 6, 0.08));
  padding-left: 2rem;
}

.faq-item.open .faq-question {
  background: linear-gradient(90deg, var(--bg-secondary), rgba(217, 119, 6, 0.12));
  border-bottom: 3px solid var(--accent-warm);
  box-shadow: inset 0 -3px 0 0 rgba(217, 119, 6, 0.2);
}

.faq-question-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.faq-number {
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 2rem;
  text-align: center;
}

.faq-icon {
  font-size: 1.3rem;
  display: inline-block;
  min-width: 1.5rem;
}

.faq-toggle {
  font-size: 1.3rem;
  color: var(--accent-warm);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  flex-shrink: 0;
  display: inline-block;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
  color: var(--accent-warm-light);
}

.faq-item:hover .faq-toggle {
  color: var(--accent-warm-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 1200px;
}

.faq-answer-text {
  padding: 2rem;
  color: var(--text-secondary);
  line-height: 1.9;
  font-size: 0.98rem;
  background: linear-gradient(135deg, var(--bg-primary), rgba(217, 119, 6, 0.02));
  border-top: 3px solid var(--border-color);
  border-left: 4px solid var(--accent-warm);
}

/* ═══════════════════════════════════════════════════════════ */
/* CTA SECTION */
/* ═══════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  padding: 3rem 2rem;
  border-radius: 16px;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-xl);
  margin: 4rem 0;
}

.cta-section h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.cta-section .cta-button {
  background: white;
  color: var(--accent-warm);
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .faq-question-text {
    font-size: 1rem;
  }
  .search-box input {
    padding: 0.85rem 1.5rem 0.85rem 2.8rem;
  }
  .search-box::before {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .faq-item {
    border-radius: 8px;
  }
  .faq-question {
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .faq-question-text {
    font-size: 0.95rem;
  }
  .faq-toggle {
    align-self: flex-end;
    margin-top: -2rem;
    margin-right: 0;
  }
  .search-box input {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.95rem;
  }
  .category-tabs {
    gap: 0.5rem;
  }
  .category-tab {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  .cta-section h3 {
    font-size: 1.5rem;
  }
  .cta-section p {
    font-size: 1rem;
  }
}
/* ═══════════════════════════════════════════════════════════ */
/* ERROR SECTION */
/* ═══════════════════════════════════════════════════════════ */
.error-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.error-content {
  max-width: 700px;
  text-align: center;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.error-icon {
  font-size: 8rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.error-code {
  font-family: "Space Mono", monospace;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.error-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.error-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.error-details {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  text-align: left;
}

.error-details h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.error-details p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.error-details p:last-child {
  margin-bottom: 0;
}

.error-codes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.code-item {
  background: var(--bg-secondary);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.code-item:hover {
  border-color: var(--accent-warm);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.code-item strong {
  display: block;
  color: var(--accent-warm);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-family: "Space Mono", monospace;
}

.code-item span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.action-button {
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.action-primary {
  background: linear-gradient(135deg, var(--accent-warm), var(--accent-warm-light));
  color: white;
  box-shadow: var(--shadow-md);
}

.action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.25);
}

.action-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.action-secondary:hover {
  background: var(--bg-tertiary);
}

/* ═══════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN */
/* ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .error-code {
    font-size: 3rem;
  }
  .error-title {
    font-size: 2rem;
  }
  .error-icon {
    font-size: 6rem;
  }
  .error-description {
    font-size: 1rem;
  }
  .error-actions {
    flex-direction: column;
  }
  .action-button {
    width: 100%;
    justify-content: center;
  }
  .error-codes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .error-container {
    padding: 2rem 1rem;
  }
  .error-code {
    font-size: 2.5rem;
  }
  .error-title {
    font-size: 1.5rem;
  }
  .error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  .error-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .error-details {
    padding: 1.5rem;
  }
  .error-codes {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=master.css.map */