:root, [data-theme="dark"] {
  --color-bg: #0a0a0a;
  --color-bg-rgb: 10, 10, 10;
  --color-surface: #111111;
  --color-surface-2: #1a1a1a;
  --color-border: rgba(255,255,255,0.06);
  --color-text: #f5f5f5;
  --color-text-muted: #a0a0a0;

  /* BRAND COLORS EXTRACTED FROM LOGO */
  --color-primary: #F03C36;
  --color-primary-hover: #D82B24;
  --color-accent: #CA8A04; /* Luxury gold accent */

  --font-display: 'Barlow Condensed', 'Bebas Neue', sans-serif;
  --font-body: 'Jost', 'General Sans', 'Satoshi', sans-serif;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.6);
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Z-INDEX SCALE */
  --z-beam: 10;
  --z-nav: 100;
  --z-overlay: 200;
  --z-drawer: 300;
}

[data-theme="light"] {
  --color-bg: #f9f9fc;
  --color-bg-rgb: 249, 249, 252;
  --color-surface: #ffffff;
  --color-surface-2: #f0f0f4;
  --color-border: rgba(0,0,0,0.15);
  --color-text: #111111;
  --color-text-muted: #555555;
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle noise texture for dark mode */
body[data-theme="dark"]::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Accessibility: Focus rings */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

h1, h2, h3, h4, .display-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

button {
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition-interactive);
}

/* Utility Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.grid {
  display: grid;
  gap: 2rem;
}

/* Brand Components */
.btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Liquid Canvas Hero System */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  background-color: var(--color-bg);
  pointer-events: none;
}



/* Hero Animation System */
.hero-animation-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.car-container {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translate(-50%, -50%) translateX(-100vw);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.car-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  will-change: clip-path;
}

.car-dirty {
  z-index: 1;
}

[data-theme="light"] .car-dirty {
  /* No filter needed, image is naturally dirty */
}

.car-clean {
  z-index: 2;
  clip-path: inset(0 0 0 100%);
}

.car-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scaleX(-1);
}

/* Light mode specific car images */
[data-theme="light"] .car-clean .car-image {
  content: url('/assets/ultra-clean-car-DShKnb6Z.png');
}

[data-theme="light"] .car-dirty .car-image {
  content: url('/assets/ultra-dirty-car-BpgD1xH8.png');
}

.detailing-beam {
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 400px;
  background: var(--color-primary);
  box-shadow: 0 0 20px var(--color-primary), 0 0 40px var(--color-primary), 0 0 60px var(--color-primary);
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .car-container { transform: translate(-50%, -50%) !important; transition: none !important; }
  .car-dirty { display: none !important; }
  .car-clean { clip-path: inset(0 0 0 0) !important; }
  .detailing-beam { display: none !important; }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(var(--color-bg-rgb), 0.75) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-title-part {
  overflow: hidden;
}

.hero-title-part > * {
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(40px);
}

.hero-title-part:nth-child(1) > * { animation-delay: 0.1s; }
.hero-title-part:nth-child(2) > * { animation-delay: 0.25s; }

.hero-subtitle {
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
  opacity: 0;
  transform: translateY(20px);
}

.hero-ctas {
  animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.55s;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 1280px;
  margin: 0 auto;
  z-index: var(--z-nav);
  background: rgba(var(--color-bg-rgb), 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  height: 70px;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-primary);
}

.brand-logo {
  display: block;
  height: 60px;
  width: auto;
  object-fit: contain;
}

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



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

.motto-eyebrow {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.hero-title span {
  color: var(--color-primary);
}

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

.hero-ctas {
  display: flex;
  gap: 1rem;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: var(--color-bg);
}

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

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  margin: 0 auto;
}

.featured-service {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 4rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.featured-image {
  height: 100%;
  background: url('/assets/service-premium-wash-clean-D3mTthtd.png') center/cover no-repeat;
}

.featured-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.featured-content p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

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

.service-card {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition-interactive);
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  background: var(--color-bg);
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background: var(--color-surface);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
  color: var(--color-primary);
}

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

.footer-sk-link {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.footer-sk-logo {
  height: 35px;
  width: auto;
  margin-left: 0.5rem;
  opacity: 0.8;
  transition: opacity var(--transition-interactive), transform var(--transition-interactive);
}

[data-theme="light"] .footer-sk-logo {
  content: url('https://skservices.in/image.png');
}

.footer-sk-link:hover .footer-sk-logo {
  opacity: 1;
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ═══════════════════════════════════════════════ */

.theme-toggle-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-interactive);
  position: relative;
  z-index: 1001;
}

.theme-toggle-btn:hover {
  background: var(--color-surface-2);
}

/* ═══════════════════════════════════════════════
   NAV CTA AREA
   ═══════════════════════════════════════════════ */

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ═══════════════════════════════════════════════
   HAMBURGER BUTTON (hidden on desktop)
   ═══════════════════════════════════════════════ */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid var(--color-text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animated X when active */
.hamburger-btn.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   MOBILE NAV DRAWER & OVERLAY (hidden on desktop)
   ═══════════════════════════════════════════════ */

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  overflow-y: auto;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-header .brand-logo {
  height: 50px;
}

.mobile-nav-close {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-interactive);
}

.mobile-nav-close:hover {
  background: var(--color-surface-2);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.mobile-nav-links li {
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav-links a {
  display: block;
  padding: 1rem 0.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  transition: var(--transition-interactive);
}

.mobile-nav-links a:hover {
  color: var(--color-primary);
  padding-left: 1rem;
}

.mobile-nav-cta {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.mobile-nav-contact a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.mobile-nav-contact a:hover {
  color: var(--color-primary);
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════ */

.about {
  padding: 6rem 0;
  background: var(--color-surface-2);
}

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

/* ═══════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════ */

.contact {
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   FORM COMPONENTS
   ═══════════════════════════════════════════════ */

.contact-form-container {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.form-input {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0.75rem;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

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

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a0a0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 768px)
   ═══════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Navigation */
  .nav-links {
    display: none;
  }

  .nav-book-btn {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .navbar {
    height: 70px;
  }

  .brand-logo {
    height: 50px;
  }

  /* Hero */
  .hero {
    padding-top: 70px;
    min-height: 85vh;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 120px;
  }

  .motto-eyebrow {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Hero car animation scales down */
  .car-container {
    width: 500px;
    height: 250px;
    top: 52%;
  }

  .detailing-beam {
    height: 250px;
    top: 52%;
  }

  /* Services */
  .services {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .featured-service {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 200px;
  }

  .featured-content {
    padding: 2rem;
  }

  .featured-content h3 {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-img {
    height: 150px;
  }

  /* About */
  .about {
    padding: 4rem 0;
  }

  /* Contact */
  .contact {
    padding: 4rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

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

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ═══════════════════════════════════════════════ */

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 100px;
  }

  .hero-content {
    max-width: 100%;
  }

  /* Car animation is very small at this size */
  .car-container {
    width: 350px;
    height: 175px;
    top: 52%;
  }

  .detailing-beam {
    height: 175px;
    top: 52%;
  }

  /* Services go single column on small phones */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .featured-content h3 {
    font-size: 1.4rem;
  }

  .featured-content p {
    font-size: 1rem;
  }

  .featured-content {
    padding: 1.5rem;
  }

  .service-card h4 {
    font-size: 1.2rem;
  }

  /* About */
  .about {
    padding: 3rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact {
    padding: 3rem 0;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .contact-form .btn-primary {
    padding: 1rem;
    font-size: 1rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
   


/* ═══════════════════════════════════════════════
   SERVICE MODAL
   ═══════════════════════════════════════════════ */

.service-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.service-modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  box-shadow: var(--shadow-lg);
}

.service-modal-overlay.is-open .service-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(var(--color-bg-rgb), 0.5);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-interactive);
}

.service-modal-close:hover {
  background: var(--color-surface-2);
  color: var(--color-primary);
}

.service-modal-content {
  padding: 2.5rem;
}

.service-modal-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
}

.service-modal-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.service-modal-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.service-modal-body h4 {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-modal-body ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-modal-body li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-muted);
}

.service-modal-body li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 0.9rem;
}

.service-modal-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: flex-end;
}

/* Image Lightbox Modal */
.image-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.image-modal-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-modal-overlay.is-open .image-modal-img {
  transform: scale(1);
}

.image-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-interactive);
  z-index: 10001;
}

.image-modal-close:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
}
