/* ============================================
   EINSIGN — Premium Website Styles
   ============================================ */

/* --- Variables --- */
:root {
  --midnight: #2a0810;
  --midnight-2: #3d0f1f;
  --midnight-3: #4a1429;
  --midnight-4: #5a1a35;
  --champagne: #c9a55a;
  --champagne-light: #e0bd72;
  --champagne-deep: #a8862e;
  --champagne-dim: rgba(201, 165, 90, 0.12);
  --champagne-glow: rgba(201, 165, 90, 0.25);
  --ivory: #ece2c5;
  --cream: #f5ead5;
  --muted: #b8a89a;
  --muted-2: #6a5a4a;
  --border: rgba(201, 165, 90, 0.18);
  --border-strong: rgba(201, 165, 90, 0.4);
  --bg-dark: var(--midnight);
  --bg-card: var(--midnight-2);
  --gold: var(--champagne);
  --gold-light: var(--champagne-light);
  --gold-dim: var(--champagne-dim);
  --text-muted: var(--muted);
  --text-body: var(--ivory);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  --radius: 0px;
  --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--midnight);
  color: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 165, 90, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

::selection { background: var(--champagne); color: var(--bg-dark); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--champagne-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--champagne); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--cream);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* --- Typography --- */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-size: clamp(38px, 5.5vw, 60px);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--champagne); font-weight: 400; }

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  background: var(--champagne);
  color: var(--midnight);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--champagne-light);
  letter-spacing: 2.5px;
}

.btn-ghost {
  display: inline-block;
  padding: 16px 36px;
  border: 1px solid var(--border-strong);
  color: var(--champagne-light);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-ghost:hover { background: var(--champagne-dim); border-color: var(--champagne); }

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Shimmer line separator animation */
.shimmer {
  position: relative;
  overflow: hidden;
}
.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 165, 90, 0.08), transparent);
  animation: shimmer-sweep 4s ease-in-out infinite;
}
@keyframes shimmer-sweep {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* Subtle animated border on service cards */
.service-card {
  background: var(--midnight-2);
  border: 1px solid var(--border);
  padding: 56px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.6s ease;
}
.service-card:hover {
  background: var(--midnight-3);
}
.service-card:hover::before { width: 100%; }

/* Feature block entrance stagger */
.feature-block:nth-child(1) { transition-delay: 0.1s; }
.feature-block:nth-child(2) { transition-delay: 0.2s; }
.feature-block:nth-child(3) { transition-delay: 0.3s; }
.feature-block:nth-child(4) { transition-delay: 0.4s; }
.feature-block:nth-child(5) { transition-delay: 0.5s; }
.feature-block:nth-child(6) { transition-delay: 0.6s; }

/* Hero scroll line pulse */
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--champagne), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Glowing accent on section hover */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 16px;
  text-align: center;
  transition: color 0.3s;
}

/* Lightbox subtle zoom */
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  animation: lightbox-zoom 0.4s ease;
}
@keyframes lightbox-zoom {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(42, 8, 16, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--champagne);
  font-size: 36px;
  cursor: pointer;
  transition: transform 0.3s;
}
.lightbox-close:hover { transform: rotate(90deg); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  background: rgba(42, 8, 16, 0.78);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s;
}
.navbar.scrolled {
  background: rgba(42, 8, 16, 0.92);
  padding: 16px 6%;
}
.nav-logo img {
  height: 44px;
  width: auto;
  background: white;
  border-radius: 6px;
  padding: 4px;
}

.nav-links { display: flex; gap: 44px; align-items: center; }
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.4s ease;
}
.nav-link:hover { color: var(--champagne-light); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  padding: 11px 26px;
  background: transparent;
  color: var(--champagne);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--champagne);
  transition: var(--transition);
}
.nav-cta:hover { background: var(--champagne); color: var(--midnight); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--champagne);
  transition: 0.3s;
  display: block;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/hero-cnc.jpg') center/cover no-repeat;
  filter: brightness(0.8);
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201, 165, 90, 0.14) 0%, transparent 50%),
    linear-gradient(180deg, rgba(42, 8, 16, 0.45) 0%, rgba(42, 8, 16, 0.65) 60%, var(--midnight) 100%);
  z-index: 1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}
.particle-layer-1 .particle {
  width: 2px;
  height: 2px;
  background: var(--champagne);
  box-shadow: 0 0 6px 1px rgba(201, 165, 90, 0.4);
  animation-duration: 12s;
}
.particle-layer-2 .particle {
  width: 3px;
  height: 3px;
  background: transparent;
  border: 1px solid rgba(201, 165, 90, 0.3);
  animation-duration: 18s;
}
@keyframes particle-float {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  10% { opacity: 0.7; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px) translateX(20px); }
}

/* Floating geometric shapes */
.hero-geo {
  position: absolute;
  border: 1px solid rgba(201, 165, 90, 0.08);
  opacity: 0;
  animation: geo-float 20s ease-in-out infinite;
  pointer-events: none;
}
.hero-geo-1 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}
.hero-geo-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  left: 5%;
  transform: rotate(45deg);
  animation-delay: -5s;
}
.hero-geo-3 {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 20%;
  right: 10%;
  animation-delay: -10s;
}
.hero-geo-4 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  bottom: 20%;
  right: 5%;
  animation-delay: -15s;
}
@keyframes geo-float {
  0%, 100% { opacity: 0; transform: translateY(0) rotate(0deg); }
  25% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-30px) rotate(90deg); }
  75% { opacity: 0.5; }
}

/* Subtle grid pattern in hero */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 165, 90, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 165, 90, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 1;
  animation: grid-pulse 8s ease-in-out infinite;
}
@keyframes grid-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 22px;
  border: 1px solid var(--border);
  background: rgba(201, 165, 90, 0.04);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 36px;
}
.hero-badge::before, .hero-badge::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--champagne);
}
.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.02;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-title span { display: block; }
.hero-title-accent {
  font-style: italic;
  color: var(--champagne);
}
.hero-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--champagne), transparent);
  animation: scroll-pulse 2s infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 6%;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 60px;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--champagne);
  font-style: italic;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 120px 6%;
  max-width: 1400px;
  margin: 0 auto;
}
.about-content .section-title { margin-bottom: 28px; }
.about-text {
  font-size: 16px;
  color: var(--ivory);
  margin-bottom: 20px;
  line-height: 1.9;
}
.about-features { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  font-size: 15px;
  color: var(--champagne);
  margin-top: 4px;
  flex-shrink: 0;
}
.feature h4 {
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}
.feature p { font-size: 14px; color: var(--muted); }

.about-visual { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}
.about-img-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s;
}
.about-img-frame:hover img { transform: scale(1.03); }
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 0;
  z-index: -1;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 120px 6%;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}
.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}
.services-intro {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.service-card {
  background: var(--midnight-2);
  border: 1px solid var(--border);
  padding: 56px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.6s ease;
}
.service-card:hover {
  background: var(--midnight-3);
}
.service-card:hover::before { width: 100%; }
.service-icon {
  color: var(--champagne);
  margin-bottom: 32px;
  transition: transform 0.4s;
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--cream);
}
.service-card p { font-size: 15px; color: var(--muted); line-height: 1.8; }
.service-card-link { display: block; }
.service-card-link .service-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--champagne);
  text-transform: uppercase;
  transition: letter-spacing 0.3s;
}
.service-card-link:hover .service-cta { letter-spacing: 2px; }

/* Navbar Dropdown */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  min-width: 240px;
  padding: 8px 0;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ivory);
  transition: background 0.3s, color 0.3s;
}
.nav-dropdown-menu a:hover { background: var(--champagne-dim); color: var(--champagne); }

/* Others Section */
.others-section {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212,168,83,0.08) 100%);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 60px 48px;
  text-align: center;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.others-section h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 16px; }
.others-section p { color: var(--muted); max-width: 600px; margin: 0 auto 28px; line-height: 1.8; }

/* ============================================
   GALLERY
   ============================================ */
.gallery { padding: 120px 6%; }
.gallery-header { text-align: center; margin-bottom: 60px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-grid .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g-item:nth-child(4) { grid-column: span 2; }
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  cursor: pointer;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.g-item:hover img { transform: scale(1.08); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42, 8, 16, 0.85));
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  font-size: 14px;
  font-weight: 600;
  color: var(--champagne-light);
  letter-spacing: 1px;
}
.gallery-cta {
  text-align: center;
  margin-top: 60px;
}
.gallery-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* New Gallery Layout - 3 + 2 grid */
.gallery-new {
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-rows: 300px;
}
.gallery-new .g-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
.gallery-new .g-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
.gallery-new .g-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.gallery-new .g-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
.gallery-new .g-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
.gallery-new .g-item:nth-child(4),
.gallery-new .g-item:nth-child(5) {
  margin-top: -20px;
}
@media (max-width: 900px) {
  .gallery-new {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .gallery-new {
    grid-template-columns: 1fr !important;
  }
  .gallery-new .g-item:nth-child(4),
  .gallery-new .g-item:nth-child(5) {
    margin-top: 0;
  }
}

/* ============================================
   PRODUCTS / APPLICATIONS
   ============================================ */
.products { padding: 100px 0; }
.products-header { text-align: center; padding: 0 6%; margin-bottom: 60px; }
.products-scroll {
  display: flex;
  gap: 24px;
  padding: 0 6%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.products-scroll::-webkit-scrollbar { display: none; }
.product-item {
  min-width: 260px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 36px 28px;
  transition: var(--transition);
}
.product-item:hover {
  border-color: var(--champagne);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.product-icon { font-size: 36px; margin-bottom: 16px; }
.product-item h4 { font-size: 17px; margin-bottom: 8px; color: var(--cream); }
.product-item p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ============================================
   PROCESS / CTA
   ============================================ */
.process-cta {
  position: relative;
  padding: 120px 6%;
  text-align: center;
  overflow: hidden;
}
.process-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(42, 8, 16, 0.92), rgba(42, 8, 16, 0.88)),
    url('assets/wood-patterns-2.jpg') center/cover no-repeat fixed;
}
.process-cta-content { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; }
.process-cta .section-title { color: var(--cream); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 50px 0 60px;
}
.step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 40px 30px;
  text-align: left;
  transition: var(--transition);
}
.step:hover { background: rgba(201, 165, 90, 0.05); border-color: var(--champagne); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--champagne);
  opacity: 0.4;
  margin-bottom: 16px;
}
.step h4 { font-size: 19px; margin-bottom: 12px; color: var(--cream); }
.step p { font-size: 15px; color: var(--muted); line-height: 1.8; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 6%;
  max-width: 1300px;
  margin: 0 auto;
}
.contact-intro { font-size: 16px; color: var(--muted); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 30px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 24px; flex-shrink: 0; }
.contact-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 6px;
}
.contact-item p { font-size: 15px; color: var(--ivory); }
.contact-item a { color: var(--champagne-light); transition: color 0.3s; }
.contact-item a:hover { color: var(--champagne); }

.contact-form-wrap { }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 44px;
}
.contact-form h3 {
  font-size: 24px;
  margin-bottom: 28px;
  color: var(--cream);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row input, .contact-form input, .contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--cream);
  transition: border-color 0.3s;
  outline: none;
}
.form-row input::placeholder, .contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.form-row input:focus, .contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--champagne);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; margin-top: 8px; font-size: 14px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 6% 40px;
  border-top: 1px solid var(--border);
  text-align: center;
  background: var(--bg-dark);
}
.footer-logo img { height: 50px; margin: 0 auto 16px; background: white; border-radius: 0; padding: 5px; }
.footer-logo p { font-size: 12px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }
.footer-links { display: flex; gap: 30px; justify-content: center; margin: 30px 0; flex-wrap: wrap; }
.footer-links a { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--champagne); }
.footer-copy { font-size: 12px; color: var(--muted); margin-top: 20px; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  z-index: 200;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: wa-pulse 3s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ============================================
   LIGHTBOX
   ============================================ */
/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-grid .g-item:nth-child(4) { grid-column: span 1; }
}
@media (max-width: 900px) {
  .navbar { flex-wrap: wrap; gap: 12px; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 16px;
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }
  .about { grid-template-columns: 1fr; gap: 50px; }
  .about-visual { order: -1; }
  .about-img-frame img { height: 350px; }
  .stats-bar { flex-wrap: wrap; gap: 30px; }
  .stat-item { padding: 0 30px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 24px; }
  .contact { grid-template-columns: 1fr; gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 15px; padding: 0 10px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
  .section-title { font-size: 28px; }
  .stat-number { font-size: 26px; }
  .stat-item { padding: 0 20px; }
  .about { padding: 80px 6%; }
  .about-content { text-align: center; }
  .about-features { align-items: center; }
  .about-img-frame img { height: 280px !important; }
  .services { padding: 80px 6%; }
  .services-grid { gap: 16px; }
  .gallery { padding: 80px 6%; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-grid .g-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .gallery-new { grid-auto-rows: 250px; }
  .products { padding: 60px 0; }
  .product-item { min-width: 220px; }
  .process-cta { padding: 80px 6%; }
  .step { padding: 30px 24px; }
  .contact { padding: 80px 6%; gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .navbar { padding: 14px 5%; }
  .navbar.scrolled { padding: 10px 5%; }
  .nav-cta { padding: 8px 16px; font-size: 10px; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .footer { padding: 40px 6% 30px; }
  .footer-links { gap: 20px; }
}

/* ============================================
   PROJECT MODAL
   ============================================ */
.project-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.project-modal.active {
  display: flex;
}
.project-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}
.project-modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modal-slide-in 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes modal-slide-in {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.project-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}
.project-modal-close:hover { color: var(--champagne); }
.project-modal-header {
  text-align: center;
  margin-bottom: 32px;
}
.project-modal-header h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.project-modal-header p {
  color: var(--muted);
  font-size: 15px;
}

.project-form .form-group {
  margin-bottom: 20px;
}
.project-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 8px;
}
.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--cream);
  transition: border-color 0.3s;
  outline: none;
}
.project-form input::placeholder,
.project-form textarea::placeholder { color: var(--muted); }
.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus { border-color: var(--champagne); }
.project-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239a8f82' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.project-form select option {
  background: var(--bg-card);
  color: var(--cream);
}
.project-form textarea { resize: vertical; min-height: 80px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.btn-whatsapp-direct {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.btn-whatsapp-direct:hover {
  background: #1da851;
  transform: scale(1.02);
}
.btn-submit-email {
  flex: 1;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--champagne), #b8892f);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit-email:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--champagne));
  transform: scale(1.02);
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn-primary, .btn-ghost, .nav-cta, .btn-whatsapp-direct {
    min-height: 48px;
    min-width: 48px;
  }
  .service-card, .product-item, .step {
    -webkit-tap-highlight-color: rgba(201, 165, 90, 0.1);
  }
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 6% 60px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) sepia(0.15);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(42, 8, 16, 0.3) 0%, transparent 60%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.breadcrumb {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--champagne); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--cream);
}
.page-hero-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-page-content { padding: 80px 6%; }
.service-intro {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}
.service-intro h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
  color: var(--cream);
}
.service-intro p {
  font-size: 16px;
  color: var(--ivory);
  line-height: 1.9;
  margin-bottom: 16px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 80px;
}
.feature-block {
  background: var(--midnight-2);
  border: 1px solid var(--border);
  padding: 32px 24px;
  transition: var(--transition);
}
.feature-block:hover {
  background: var(--midnight-3);
  transform: translateY(-4px);
}
.feature-block-icon {
  color: var(--champagne);
  font-size: 32px;
  margin-bottom: 16px;
}
.feature-block h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--cream);
}
.feature-block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.applications-section { background: var(--bg-card); padding: 80px 6%; }
.applications-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 50px;
  color: var(--cream);
}
.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.application-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 24px 20px;
  text-align: center;
  font-size: 15px;
  color: var(--ivory);
  transition: var(--transition);
  cursor: pointer;
}
.application-item:hover {
  background: rgba(212,168,83,0.08);
  color: var(--champagne);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.gallery-section { padding: 80px 6%; }
.gallery-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 50px;
  color: var(--cream);
}
.service-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 280px;
  gap: 20px;
  max-width: 1200px;
  margin: 60px auto;
}
.showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--border);
}
.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.05);
  transition: transform 0.8s, filter 0.6s;
}
.showcase-item:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.1); }
.showcase-item.showcase-tall { grid-row: span 2; }
.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,10,8,0.85));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}
.showcase-item:hover .showcase-overlay { opacity: 1; }
.showcase-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--champagne);
  font-style: italic;
}

.process-section { background: var(--bg-card); padding: 80px 6%; }
.process-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 50px;
  color: var(--cream);
}
.process-steps-service {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-step {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 0;
  position: relative;
}
.process-step-num {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--champagne), #b8892f);
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 18px;
  font-family: 'Cormorant Garamond', serif;
}
.process-step h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--cream);
}
.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-section { padding: 80px 6%; max-width: 1000px; margin: 0 auto; }
.faq-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 16px;
  color: var(--cream);
}
.faq-section .section-label { text-align: center; display: block; margin-bottom: 10px; }
.faq-section-intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
  font-size: 15px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 0;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(212,168,83,0.4); }
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  color: var(--champagne);
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s;
  font-family: 'Montserrat', sans-serif;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--ivory);
  font-size: 15px;
  line-height: 1.8;
}

.related-services { background: var(--bg-card); padding: 80px 6%; }
.related-services h2 {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 50px;
  color: var(--cream);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.related-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  display: block;
}
.related-card:hover {
  background: rgba(212,168,83,0.05);
  border-color: rgba(212,168,83,0.4);
  transform: translateY(-4px);
}
.related-card-icon { font-size: 36px; margin-bottom: 16px; color: var(--champagne); }
.related-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--cream); }
.related-card p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.related-card .arrow { color: var(--champagne); font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

.service-cta-section {
  padding: 80px 6%;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212,168,83,0.1) 100%);
}
.service-cta-section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
  color: var(--cream);
}
.service-cta-section p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 16px;
}
.service-cta-section .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-contacts {
  margin-top: 20px;
  font-size: 15px;
  color: var(--muted);
}
.cta-contacts a {
  color: var(--champagne);
  transition: color 0.3s;
}
.cta-contacts a:hover { color: var(--champagne-light); }

/* Service Intro Section */
.service-intro-section {
  padding: 100px 6% 80px;
}
.service-intro-section .service-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.service-intro-section .section-title {
  margin-bottom: 32px;
}
.service-intro-section p {
  font-size: 16px;
  color: var(--ivory);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Service Features Section */
.service-features-section {
  padding: 80px 6%;
  background: var(--bg-card);
}
.service-features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.service-features-header .section-title {
  margin-bottom: 0;
}
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Showcase Section */
.service-showcase-section {
  padding: 80px 6%;
}
.service-showcase-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.service-showcase-header .section-title {
  margin-bottom: 16px;
}
.service-showcase-subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-top: 8px;
}
.service-showcase-section .service-showcase-grid {
  max-width: 1200px;
  margin: 0 auto;
}

/* Visual Capability Section */
.visual-capability-section {
  padding: 80px 6%;
}
.visual-capability-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.vc-item {
  display: flex;
  align-items: center;
  gap: 50px;
}
.vc-item.vc-image-left {
  flex-direction: row;
}
.vc-item.vc-image-right {
  flex-direction: row-reverse;
}
.vc-image {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.vc-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.vc-item:hover .vc-image img {
  transform: scale(1.03);
}
.vc-content {
  flex: 1;
}
.vc-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.vc-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .vc-item, .vc-item.vc-image-left, .vc-item.vc-image-right {
    flex-direction: column;
    gap: 24px;
  }
  .vc-image {
    flex: none;
    width: 100%;
  }
  .vc-image img {
    height: 260px;
  }
}

/* Service Areas Section */
.service-areas-section {
  padding: 80px 6%;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.service-areas-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.service-areas-content .section-title {
  margin-bottom: 20px;
}
.service-areas-content > p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 30px;
}
.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.service-areas-list span {
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.service-areas-list span:hover {
  background: var(--champagne-dim);
  border-color: var(--champagne);
}

/* Page Hero Title */
.page-hero-title {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--cream);
}

@media (max-width: 968px) {
  .service-features, .process-steps-service { grid-template-columns: repeat(2, 1fr); }
  .applications-grid, .related-grid, .service-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service-features, .process-steps-service, .applications-grid, .related-grid, .service-showcase-grid, .service-features-grid { grid-template-columns: 1fr; }
  .service-showcase-grid { grid-auto-rows: 220px; }
  .showcase-item.showcase-tall { grid-row: span 1; }
  .page-hero { min-height: 50vh; padding-top: 100px; }
  .service-intro-section { padding: 60px 6% 40px; }
  .service-features-section, .service-showcase-section { padding: 60px 6%; }
}

@media (max-width: 600px) {
  .project-modal-content { padding: 28px 20px; max-height: 85vh; }
  .project-modal-header h2 { font-size: 24px; }
  .project-modal-header p { font-size: 15px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; }
  .btn-whatsapp-direct, .btn-submit-email { padding: 16px 20px; }
  .project-form input, .project-form select, .project-form textarea { padding: 12px 14px; font-size: 16px; }
}