/* =========================================
   Skye Wallpaper Installers — style.css
   ========================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-main: #F7FAFC;
  --bg-secondary: #E8EEF5;
  --bg-white: #FFFFFF;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --accent: #3B82F6;
  --accent-hover: #2563EB;
  --border: #D1D5DB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 12px;
  --btn-radius: 12px;
  --header-h: 72px;
  --font-head: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.22s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--bg-main);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }

/* ---- Layout ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-alt { background: var(--bg-secondary); }
.section-white { background: var(--bg-white); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  height: 58px;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px rgba(37,99,235,0.3);
  transform: translateY(-2px);
  color: #fff !important;
}
.btn-outline {
  background: transparent;
  color: var(--accent) !important;
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff !important;
}
.btn-white {
  background: #fff;
  color: var(--accent) !important;
}
.btn-white:hover {
  background: var(--bg-secondary);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  color: var(--accent-hover) !important;
}
.submit-btn {
  width: 100%;
  height: 58px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,99,235,0.3);
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
}
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.2;
}
.logo-text span { color: var(--accent); }

/* Desktop Nav */
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { background: var(--bg-secondary); color: var(--accent); }
.nav-link.active { color: var(--accent); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.dropdown-toggle:hover { background: var(--bg-secondary); color: var(--accent); }
.dropdown-toggle svg { transition: transform var(--transition); }
.dropdown:hover .dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  opacity: 0;
  animation: none;
}
.dropdown:hover .dropdown-menu a {
  animation: slideIn 0.2s forwards;
}
.dropdown:hover .dropdown-menu a:nth-child(1) { animation-delay: 0.02s; }
.dropdown:hover .dropdown-menu a:nth-child(2) { animation-delay: 0.05s; }
.dropdown:hover .dropdown-menu a:nth-child(3) { animation-delay: 0.08s; }
.dropdown:hover .dropdown-menu a:nth-child(4) { animation-delay: 0.11s; }
.dropdown:hover .dropdown-menu a:nth-child(5) { animation-delay: 0.14s; }
.dropdown:hover .dropdown-menu a:nth-child(6) { animation-delay: 0.17s; }
.dropdown:hover .dropdown-menu a:nth-child(7) { animation-delay: 0.2s; }
.dropdown:hover .dropdown-menu a:nth-child(8) { animation-delay: 0.23s; }
.dropdown:hover .dropdown-menu a:nth-child(9) { animation-delay: 0.26s; }
.dropdown:hover .dropdown-menu a:nth-child(10) { animation-delay: 0.29s; }
.dropdown:hover .dropdown-menu a:nth-child(11) { animation-delay: 0.32s; }
.dropdown:hover .dropdown-menu a:nth-child(12) { animation-delay: 0.35s; }
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
.dropdown-menu a:hover { background: var(--bg-secondary); color: var(--accent); }

/* Header contact info */
.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-contact a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-contact a:hover { color: var(--accent); }
.header-contact .btn { height: 42px; padding: 0 18px; font-size: 0.88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: 50%;
  min-width: 260px;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
  display: flex;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1999;
}
.mobile-nav-overlay.open { display: block; }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text-dark);
}
.mobile-nav-body {
  padding: 16px;
  flex: 1;
}
.mobile-nav-body a,
.mobile-nav-body .mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
}
.mobile-nav-body a:hover,
.mobile-nav-body .mobile-dropdown-toggle:hover { background: var(--bg-secondary); color: var(--accent); }
.mobile-dropdown-panel {
  display: none;
  padding-left: 16px;
}
.mobile-dropdown-panel.open { display: block; }
.mobile-dropdown-panel a { font-size: 0.88rem; color: var(--text-muted); }
.mobile-nav-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
}
.mobile-nav-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e293b 0%, #1e3a5f 60%, #1e293b 100%);
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}
.hero-content { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,246,0.2);
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.82); margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: #fff; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.hero-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

/* ===== FORM ===== */
.feedback-form-container h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form .form-group { margin-bottom: 12px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-main);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.contact-form textarea { height: 90px; resize: vertical; }
.contact-form .form-submit { margin-top: 8px; }
#form-success { text-align: center; padding: 24px; }
#form-success p { color: #059669; font-weight: 600; font-size: 1rem; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #1F2937 100%);
  padding: calc(var(--header-h) + 48px) 0 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233B82F6' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: #fff; position: relative; z-index: 1; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.75); position: relative; z-index: 1; font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== SERVICE CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 10px; }
.card-body p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 16px; }
.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { gap: 8px; color: var(--accent-hover); }
.card-link svg { transition: transform var(--transition); }
.card-link:hover svg { transform: translateX(3px); }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-header .tag {
  display: inline-block;
  background: rgba(59,130,246,0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}
.section-header.center p { margin: 0 auto; }

/* ===== FEATURE LIST ===== */
.features-list { list-style: none; padding: 0; }
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.features-list li:last-child { border-bottom: none; }
.check-icon {
  width: 22px; height: 22px;
  background: rgba(59,130,246,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg { color: var(--accent); }

/* ===== TWO-COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.img-rounded { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.img-rounded img { width: 100%; height: 100%; object-fit: cover; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: 12px; }
.testimonial p { color: var(--text-dark); font-size: 0.95rem; margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.88rem; color: var(--text-muted); }

/* ===== MAP ===== */
.map-section { background: var(--bg-secondary); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); height: 420px; }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 24px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(59,130,246,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-item-text strong { display: block; font-weight: 600; margin-bottom: 2px; }
.contact-item-text a { color: var(--text-dark); }
.contact-item-text a:hover { color: var(--accent); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--bg-white);
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text-dark);
  text-align: left;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-secondary); }
.faq-question svg { flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--bg-white);
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 16px 22px 20px;
}
.faq-answer p { color: var(--text-muted); font-size: 0.92rem; }

/* ===== AREA LINKS GRID ===== */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.area-link {
  display: block;
  padding: 14px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  text-align: center;
  transition: all var(--transition);
}
.area-link:hover {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59,130,246,0.25);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #1d4ed8 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PROCESS STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.step {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 48px; height: 48px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}
.footer-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.footer-about p { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-col ul { padding: 0; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== STICKY BUTTON ===== */
.sticky-quote-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
}
.sticky-quote-btn .btn {
  box-shadow: 0 8px 28px rgba(59,130,246,0.4);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.7);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-main);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.modal-close:hover { background: var(--bg-secondary); color: var(--text-dark); }

/* ===== SERVICE/CITY PAGE SPECIFIC ===== */
.content-section { padding: 56px 0; }
.content-section h2 { margin-bottom: 20px; }
.bullet-list {
  padding: 0;
  margin: 0 0 20px;
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--bg-secondary);
}
.bullet-list li:last-child { border-bottom: none; }
.bullet-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.ol-steps { padding-left: 0; counter-reset: step; margin: 0 0 20px; }
.ol-steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-secondary);
  font-size: 0.95rem;
}
.ol-steps li:last-child { border-bottom: none; }
.ol-steps li::before {
  content: counter(step);
  min-width: 28px; height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.info-box {
  background: rgba(59,130,246,0.06);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 18px 20px;
  margin: 20px 0;
}
.info-box p { margin: 0; font-size: 0.92rem; color: var(--text-dark); }

/* ===== ABOUT US ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.team-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.team-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  text-align: center;
}
.team-avatar {
  width: 64px; height: 64px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
}
.team-card h4 { margin-bottom: 4px; font-size: 0.95rem; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.color-accent { color: var(--accent); }
.color-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.body-text { font-size: 1rem; color: var(--text-dark); line-height: 1.7; }
.lead { font-size: 1.1rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 32px; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .desktop-nav, .header-contact { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero { min-height: auto; padding-top: var(--header-h); }
  .hero-stats { gap: 16px; }
  .two-col, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 48px 0; }
  .hero-form-card { padding: 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .sticky-quote-btn { right: 50%; transform: translateX(50%); }
  .modal-box { padding: 24px; }
  .team-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .mobile-nav { width: 80%; min-width: 260px; }
}
