:root {
  --bg: #0a0c12;
  --bg2: #0f1219;
  --bg3: #141720;
  --border: rgba(255,255,255,0.07);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.45);
  --accent: #1e90ff;
  --accent-bright: #38b6ff;
  --accent-bg: rgba(30,144,255,0.12);
  --cta: #1e90ff;
  --cta-hover: #38b6ff;
  --radius: 10px;
  --radius-lg: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg); color: #fff; line-height: 1.6; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 64px;
  background: rgba(10,12,18,0.95); backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text { font-size: 14px; font-weight: 700; color: #fff; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; padding: 6px 12px; border-radius: 6px; transition: all 0.15s; }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.06); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; min-width: 200px;
  background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius);
  padding: 6px; margin-top: 4px; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 8px 12px; border-radius: 6px; font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; }
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-cta {
  background: var(--cta); color: #fff; border: none; border-radius: 8px;
  padding: 10px 18px; font-size: 13px; font-weight: 700; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  transition: background 0.15s; box-shadow: 0 2px 12px rgba(30,144,255,0.3);
}
.nav-cta:hover { background: var(--cta-hover); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
  background: var(--bg2); border-bottom: 0.5px solid var(--border); padding: 16px 24px;
  flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.6); text-decoration: none; padding: 10px 0; font-size: 15px; border-bottom: 0.5px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; }

/* HERO */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: 64px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0c12 0%, #0d1a2e 60%, #0a0c12 100%);
}
.hero-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-video { position: absolute; inset: 0; z-index: 0; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(10,12,18,0.92) 40%, rgba(10,12,18,0.5) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 48px 32px 64px; max-width: 620px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(56,182,255,0.12); border: 0.5px solid rgba(56,182,255,0.3);
  border-radius: 20px; padding: 5px 14px; font-size: 11px; color: var(--accent-bright);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 700; line-height: 1.1; margin-bottom: 18px; }
.hero-h1 .highlight { color: var(--accent-bright); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.55); margin-bottom: 36px; max-width: 480px; line-height: 1.65; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* BUTTONS */
.btn-cta {
  background: var(--cta); color: #fff; border: none; border-radius: 8px;
  padding: 16px 28px; font-size: 16px; font-weight: 700; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 4px 24px rgba(30,144,255,0.4);
}
.btn-cta:hover { background: var(--cta-hover); transform: translateY(-1px); }
.btn-cta:active { transform: translateY(0); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 8px;
  padding: 16px 28px; font-size: 16px; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.15s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

/* HERO STATS */
.hero-stats { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat .num { font-size: 28px; font-weight: 700; color: var(--accent-bright); }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* TRUST BAR */
.trust-bar {
  background: var(--bg2); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border);
  padding: 14px 32px; display: flex; gap: 0; flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5);
  padding: 6px 24px; border-right: 0.5px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); flex-shrink: 0; }

/* CTA BAND */
.cta-band {
  background: var(--cta); padding: 56px 32px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.15; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.btn-white {
  background: #fff; color: var(--cta); border: none; border-radius: 8px;
  padding: 18px 36px; font-size: 18px; font-weight: 800; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  transition: transform 0.1s, box-shadow 0.15s; box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }

/* SECTIONS */
.section { padding: 72px 32px; max-width: 1100px; margin: 0 auto; }
.section-eyebrow { font-size: 11px; color: var(--accent-bright); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; }
.section-h2 { font-size: clamp(24px, 3.5vw, 36px); font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.section-sub { font-size: 15px; color: var(--muted); margin-bottom: 36px; max-width: 520px; }
.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; }
.service-card {
  background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 20px; transition: border-color 0.15s, background 0.15s; text-decoration: none; display: block;
}
.service-card:hover { border-color: rgba(56,182,255,0.3); background: var(--bg3); }
.service-icon { font-size: 28px; margin-bottom: 14px; }
.service-name { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.service-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; background: var(--bg2); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 24px 12px 10px; font-size: 12px; color: rgba(255,255,255,0.8);
}
.img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: var(--bg3); color: var(--muted); font-size: 12px; flex-direction: column; gap: 8px;
  min-height: 200px;
}

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.review-card { background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.review-stars { color: #facc15; font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.review-author { font-size: 12px; color: var(--muted); }
.review-author strong { color: rgba(255,255,255,0.7); }

/* QUOTE FORM */
.quote-wrap { background: var(--bg2); border-top: 0.5px solid var(--border); }
.quote-inner { max-width: 1100px; margin: 0 auto; padding: 72px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.quote-left h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; color: #fff; margin-bottom: 12px; }
.quote-left p { font-size: 15px; color: var(--muted); margin-bottom: 24px; line-height: 1.65; }
.contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contact-icon { width: 40px; height: 40px; background: var(--accent-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-label { font-size: 11px; color: var(--muted); }
.contact-value { font-size: 15px; color: #fff; font-weight: 600; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 12px; color: var(--muted); font-weight: 500; letter-spacing: 0.04em; }
.form-input, .form-select, .form-textarea {
  background: var(--bg3); border: 0.5px solid rgba(255,255,255,0.12); border-radius: 8px;
  padding: 12px 14px; color: #fff; font-size: 14px; font-family: inherit; transition: border-color 0.15s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--accent-bright); }
.form-select option { background: #1a1d26; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--cta); color: #fff; border: none; border-radius: 8px;
  padding: 16px; font-size: 16px; font-weight: 700; cursor: pointer; width: 100%;
  margin-top: 8px; transition: background 0.15s; box-shadow: 0 4px 20px rgba(30,144,255,0.3);
}
.form-submit:hover { background: var(--cta-hover); }

/* CITY PAGE */
.page-hero { padding: 120px 32px 64px; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--accent-bright); text-decoration: none; }
.page-h1 { font-size: clamp(28px, 4.5vw, 48px); font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.15; }
.page-sub { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 560px; margin-bottom: 32px; line-height: 1.65; }
.service-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 32px 0; }
.service-pill {
  background: var(--bg2); border: 0.5px solid var(--border); border-radius: 8px;
  padding: 10px 16px; font-size: 13px; color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 8px;
}
.check { color: var(--accent-bright); }
.city-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; max-width: 1100px; margin: 0 auto; padding: 0 32px 72px; }
.city-body h2 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.city-body p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.faq-item { border-bottom: 0.5px solid var(--border); padding: 16px 0; }
.faq-q { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.6; }
.faq-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; }

/* CITIES STRIP */
.cities-strip { background: var(--bg2); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); padding: 48px 32px; }
.cities-strip-inner { max-width: 1100px; margin: 0 auto; }
.city-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.city-btn {
  background: var(--bg3); border: 0.5px solid var(--border); border-radius: 8px;
  padding: 12px 20px; color: #fff; text-decoration: none; font-size: 14px; font-weight: 600;
  transition: border-color 0.15s, background 0.15s;
}
.city-btn:hover { border-color: var(--accent-bright); background: var(--accent-bg); }

/* FOOTER */
.footer { background: #070810; border-top: 0.5px solid var(--border); padding: 48px 32px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; color: var(--muted); margin-top: 12px; max-width: 280px; line-height: 1.65; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 10px; transition: color 0.12s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 0.5px solid var(--border); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-phone { font-size: 13px; color: var(--accent-bright); text-decoration: none; font-weight: 600; }

/* SUCCESS MESSAGE */
.success-msg { background: rgba(30,144,255,0.1); border: 0.5px solid rgba(30,144,255,0.3); border-radius: 8px; padding: 16px; color: var(--accent-bright); font-size: 14px; display: none; margin-top: 12px; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .hero-content { padding: 32px 20px 48px; }
  .hero-btns { flex-direction: column; }
  .btn-cta, .btn-outline { width: 100%; justify-content: center; }
  .section { padding: 48px 20px; }
  .quote-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .city-grid { grid-template-columns: 1fr; padding: 0 20px 48px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .cta-band { padding: 40px 20px; }
  .footer { padding: 40px 20px 20px; }
  .page-hero { padding: 100px 20px 48px; }
  .trust-bar { flex-direction: column; align-items: flex-start; }
  .trust-item { border-right: none; border-bottom: 0.5px solid var(--border); width: 100%; }
  .trust-item:last-child { border-bottom: none; }
  .cities-strip { padding: 40px 20px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── LOGO WATERMARK ── */
.logo-watermark {
  position: absolute; bottom: 24px; right: 24px; z-index: 3;
  opacity: 0.85;
}
.logo-watermark img { height: 52px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }

/* ── REVIEW GRID EXPANDED ── */
.reviews-grid-lg { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.review-card-lg { background: var(--bg2); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 22px; }
.review-card-lg .review-stars { color: #facc15; font-size: 15px; margin-bottom: 10px; letter-spacing: 2px; }
.review-card-lg .review-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.review-card-lg .review-author { font-size: 12px; color: var(--muted); }
.review-card-lg .review-author strong { color: rgba(255,255,255,0.75); }

/* ── GALLERY CATEGORIES ── */
.gallery-category { margin-bottom: 56px; }
.gallery-category-title { font-size: 13px; color: var(--accent-bright); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 0.5px solid var(--border); }

/* ── NAV LOGO BIGGER ── */
.nav-logo img { height: 42px; }

/* ── HERO LOGO ── */
.hero-logo { margin-bottom: 20px; }
.hero-logo img { height: 64px; width: auto; filter: drop-shadow(0 2px 12px rgba(30,144,255,0.4)); }
