/* ============================================================
   Pro Services — style.css
   ============================================================ */

/* ─── CSS VARIABLES ───────────────────────────────────────── */
:root {
  --orange:       #FF6B1A;
  --orange-hover: #FF8C45;
  --orange-glow:  rgba(255, 107, 26, 0.25);

  --bg:           #0A0A0A;
  --bg-2:         #111111;
  --bg-3:         #181818;
  --bg-card:      #141414;
  --bg-card-hover:#1C1C1C;

  --text:         #F0EDE8;
  --text-muted:   #888880;
  --text-faint:   #444440;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(255,107,26,0.4);

  --radius:    14px;
  --radius-sm:  8px;
  --radius-lg: 20px;

  --shadow:        0 4px 24px rgba(0,0,0,0.4);
  --shadow-hover:  0 8px 40px rgba(0,0,0,0.6);
  --shadow-orange: 0 0 30px rgba(255,107,26,0.2);

  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --bg:           #F5F2EE;
  --bg-2:         #EDEAE5;
  --bg-3:         #E5E2DE;
  --bg-card:      #FFFFFF;
  --bg-card-hover:#FFFBF8;
  --text:         #1A1A18;
  --text-muted:   #6B6B65;
  --text-faint:   #B0ADA8;
  --border:       rgba(0,0,0,0.08);
  --border-hover: rgba(255,107,26,0.5);
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);
}

/* ─── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
a   { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 99px; }

/* ─── UTILITY ─────────────────────────────────────────────── */
.container { width: min(1200px, 100% - 2rem); margin-inline: auto; }

.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 4px 12px;
  border: 1px solid var(--orange-glow);
  border-radius: 99px;
  background: rgba(255,107,26,0.08);
  margin-bottom: 1rem;
}

.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-head p { color: var(--text-muted); max-width: 520px; margin-inline: auto; font-size: 1rem; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 20px rgba(255,107,26,0.35); }
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,26,0.45); }
.btn-outline  { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ─── NAVBAR ──────────────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}
[data-theme="light"] #navbar { background: rgba(245,242,238,0.88); }

.nav-inner { display: flex; align-items: center; gap: 1rem; padding: 0.9rem 0; }

.nav-logo { font-family: var(--font-head); font-size: 1.25rem; font-weight: 800; color: var(--text); flex-shrink: 0; }
.nav-logo span { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin-left: 2rem; }
.nav-links a {
  padding: 0.45rem 0.8rem; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--border); }

.nav-right { display: flex; align-items: center; gap: 0.6rem; margin-left: auto; flex-shrink: 0; }

.nav-whatsapp {
  background: #25D366; color: #fff;
  padding: 0.45rem 0.9rem; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem;
  transition: all var(--transition);
}
.nav-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); }

.lang-switcher {
  display: flex; align-items: center;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.lang-btn {
  background: none; border: none; color: var(--text-muted);
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  padding: 0.4rem 0.6rem; cursor: pointer;
  transition: all var(--transition);
}
.lang-btn.active, .lang-btn:hover { background: var(--orange); color: #fff; }

.theme-toggle {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--bg-3); border: 1px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem;
  transition: all var(--transition);
}
.theme-toggle:hover { border-color: var(--orange); color: var(--orange); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* Mobile nav */
.mobile-nav { display: none; flex-direction: column; gap: 0.5rem; padding: 1rem 0 1.5rem; border-top: 1px solid var(--border); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; padding: 0.5rem 0; transition: color var(--transition); }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav-controls { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; padding-top: 0.5rem; }

/* ─── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: calc(100vh - 65px);
  display: flex; align-items: center;
  padding: 5rem 0; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255,107,26,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,107,26,0.04) 0%, transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-left { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 500; color: var(--orange);
  background: rgba(255,107,26,0.08); border: 1px solid rgba(255,107,26,0.2);
  border-radius: 99px; padding: 0.4rem 1rem; margin-bottom: 1.5rem;
}
.hero-badge::before { content: "●"; font-size: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.hero-title em { font-style: normal; color: var(--orange); }

.hero-sub { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; max-width: 480px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 2rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; line-height: 1; }
.stat-num span { color: var(--orange); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* Hero right */
.hero-right { position: relative; }
.hero-illustration {
  width: 100%; aspect-ratio: 4/3.2;
  border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
/* When a real photo is used */
.hero-illustration img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  border-radius: var(--radius-lg);
}
.hero-illustration svg { width: 75%; max-width: 340px; }

.hero-float-card {
  position: absolute;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 500;
  backdrop-filter: blur(12px);
  animation: float 4s ease-in-out infinite;
}
.hero-float-card .icon { font-size: 1.2rem; }
.hero-float-1 { top: 8%; right: -8%; animation-delay: 0s; }
.hero-float-2 { bottom: 12%; left: -8%; animation-delay: 1.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ─── SERVICES ────────────────────────────────────────────── */
#services { padding: 6rem 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }

.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem 1.25rem;
  transition: all var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transition: transform var(--transition);
}
.service-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 2rem; margin-bottom: 1rem; display: inline-block; }
.service-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.service-link    { font-size: 0.82rem; color: var(--orange); font-weight: 600; }
.service-card:hover .service-link { text-decoration: underline; }

/* ─── GALLERY ─────────────────────────────────────────────── */
#gallery { padding: 5rem 0; background: var(--bg-2); }

/* 5-column compact grid — handles 20+ photos neatly */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 160px;
  gap: 6px;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
/* Hide broken/missing images gracefully */
.gallery-item img[src=""] ,
.gallery-item img:not([src]) { display: none; }

.gallery-item:hover img { transform: scale(1.06); }

/* Overlay caption — compact */
.gallery-caption {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.25s ease;
  display: flex; align-items: flex-end;
  padding: 0.55rem 0.6rem;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption span {
  font-size: 0.72rem; font-weight: 600; color: #fff;
  font-family: var(--font-head);
  line-height: 1.2;
}

/* Placeholder when no image set */
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; color: var(--text-faint); font-size: 0.8rem;
}
.gallery-placeholder .ph-icon { font-size: 2rem; opacity: 0.4; }

/* ─── VIDEO SECTION ───────────────────────────────────────── */
#videos { padding: 5rem 0; background: var(--bg); }

/* 3-column compact video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.video-item {
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

/* Native <video> element */
.video-item video {
  width: 100%;
  height: 175px;
  object-fit: cover;
  display: block;
  background: #000;
}

/* YouTube / iframe wrapper — keeps 16:9 ratio */
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.video-caption {
  padding: 0.45rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  font-family: var(--font-head);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── PRICING BANNER ──────────────────────────────────────── */
#pricing-note {
  background: linear-gradient(135deg, rgba(255,107,26,0.08) 0%, rgba(255,107,26,0.04) 100%);
  border-top: 1px solid rgba(255,107,26,0.15);
  border-bottom: 1px solid rgba(255,107,26,0.15);
  padding: 2.5rem 0;
}
.pricing-inner {
  display: flex; align-items: center; gap: 1.5rem;
  justify-content: center; flex-wrap: wrap; text-align: center;
}
.pricing-icon { font-size: 2rem; }
.pricing-text h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.25rem; }
.pricing-text p  { font-size: 0.9rem; color: var(--text-muted); }

/* ─── HOW IT WORKS ────────────────────────────────────────── */
#how-it-works { padding: 6rem 0; background: var(--bg-2); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; position: relative; }
.steps-grid::before {
  content: ""; position: absolute;
  top: 28px; left: calc(16.66% + 28px); right: calc(16.66% + 28px);
  height: 1px; background: var(--orange); opacity: 0.25;
}
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center;
  transition: all var(--transition);
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-orange); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #FF8C45);
  color: #fff; font-family: var(--font-head); font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(255,107,26,0.35);
}
.step-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ─── SERVICE AREAS ───────────────────────────────────────── */
#service-areas { padding: 6rem 0; background: var(--bg); }
.areas-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.areas-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; margin-bottom: 0.75rem; line-height: 1.2;
}
.areas-info p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

.areas-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.area-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 99px; padding: 0.6rem 1.25rem;
  font-size: 0.88rem; font-weight: 500; transition: all var(--transition);
}
.area-badge:hover { border-color: var(--orange); color: var(--orange); background: rgba(255,107,26,0.06); }
.area-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

.areas-features { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.areas-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: var(--text-muted); }
.areas-features li::before { content: "✓"; color: var(--orange); font-weight: 700; font-size: 0.9rem; }

.map-placeholder {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.75rem;
  color: var(--text-muted); font-size: 0.88rem;
  overflow: hidden; position: relative;
}
.map-placeholder svg    { opacity: 0.15; position: absolute; width: 100%; height: 100%; }
.map-placeholder .map-label { position: relative; z-index: 1; text-align: center; }
.map-placeholder .map-label span { display: block; font-size: 2rem; margin-bottom: 0.25rem; }

/* ─── CONTACT ─────────────────────────────────────────────── */
#contact { padding: 6rem 0; background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; margin-bottom: 0.75rem; line-height: 1.2;
}
.contact-info p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; margin-bottom: 2rem; }

.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  transition: all var(--transition);
}
.contact-item:hover { border-color: var(--border-hover); }
.contact-item-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: rgba(255,107,26,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text span { display: block; font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-item-text strong { font-size: 0.9rem; font-weight: 500; }

/* Form */
.contact-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0.03em; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.7rem 0.9rem;
  color: var(--text); font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color var(--transition); outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-glow); }

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }

.form-submit { width: 100%; justify-content: center; padding: 0.9rem; font-size: 0.95rem; }

.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .check { font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-success h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.form-success p  { color: var(--text-muted); font-size: 0.9rem; }

/* ─── FOOTER ──────────────────────────────────────────────── */
#footer { background: var(--bg-3); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-top: 0.75rem; max-width: 220px; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-faint); }
.footer-bottom a { color: var(--orange); }

/* ─── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--orange); border-radius: var(--radius);
  padding: 0.85rem 1.25rem; font-size: 0.88rem;
  box-shadow: var(--shadow);
  transform: translateX(200%); transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  z-index: 9999; max-width: 280px;
}
.toast.show { transform: translateX(0); }

/* ─── SCROLL ANIMATIONS ───────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.9); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text); font-size: 1.1rem;
  transition: all var(--transition);
}
.lightbox-close:hover { border-color: var(--orange); color: var(--orange); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  /* 4-col on tablet */
  .gallery-grid  { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; }
  /* 2-col video on tablet */
  .video-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
  .hero-float-1 { right: 0; }
  .hero-float-2 { left: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid    { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .areas-layout  { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  /* 3-col gallery on small tablet */
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 120px; }
  /* 1-col video on small tablet */
  .video-grid    { grid-template-columns: 1fr; }
  .video-item video { height: 210px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .hero-btns     { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .hero-float-1, .hero-float-2 { display: none; }
  /* 2-col gallery on mobile */
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 110px; gap: 4px; }
  .video-grid    { grid-template-columns: 1fr; }
  .video-item video { height: 190px; }
}
