/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #1976D2;
  --blue-dark: #0D47A1;
  --blue-light: #BBDEFB;
  --blue-bg: #e8f1fb;
  --red: #D32F2F;
  --orange: #E65100;
  --dark: #0d1b2a;
  --dark-mid: #152238;
  --dark-light: #1b2838;
  --gray: #f0f2f5;
  --gray-mid: #78909c;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #333;
  line-height: 1.5;
  background: var(--white);
  font-size: 15px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 6px 0;
  font-size: .82rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar span { opacity: .9; }

.top-bar a {
  color: var(--white);
  transition: opacity var(--transition);
}

.top-bar a:hover { opacity: .8; }

.top-bar-phone {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-phone svg {
  width: 16px;
  height: 16px;
}

/* ===== HEADER / NAV ===== */
header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

nav { position: relative; }

nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}

nav a {
  font-weight: 600;
  font-size: .88rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: .3px;
}

nav a:hover,
nav a.active {
  color: var(--blue);
  background: var(--blue-bg);
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, rgba(13,27,42,.78) 0%, rgba(21,34,56,.72) 50%, rgba(27,40,56,.68) 100%),
              url('../images/stock/hero.jpg') center 30%/cover no-repeat;
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(25,118,210,.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(211,47,47,.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #42a5f5, #90caf9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  line-height: 1.65;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.hero-stat .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-light);
  display: block;
  line-height: 1.1;
}

.hero-stat .lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 2px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: .8rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--blue-light);
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: .3px;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(25,118,210,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(211,47,47,.35);
}

.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
section { padding: 48px 0; }
section.compact { padding: 36px 0; }
section.tight { padding: 28px 0; }

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header .divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 2px;
  margin: 0 auto 14px;
}

.section-header h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.section-header p {
  color: var(--gray-mid);
  max-width: 580px;
  margin: 0 auto;
  font-size: .95rem;
}

.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,.7); }
.section-header.light .divider { background: linear-gradient(90deg, #42a5f5, #ef5350); }

.bg-gray { background: var(--gray); }
.bg-dark {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: var(--white);
}
.bg-blue { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: var(--white); }

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,.04);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.service-icon svg { width: 24px; height: 24px; color: var(--blue); }

.service-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.service-card p {
  color: #666;
  font-size: .87rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

.service-card .learn-more {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card .learn-more:hover { color: var(--blue-dark); }

/* ===== TRUST BADGES ===== */
.trust-bar {
  background: var(--gray);
  padding: 24px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
}

.trust-item svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}

/* ===== SPLIT SECTION (text + image side by side) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.split-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.split-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.split-content .divider {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 2px;
  margin: 10px auto 14px;
}

.split-content p {
  font-size: .95rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.split-content .btn { margin-top: 8px; align-self: center; }

.split-image {
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  position: absolute;
  top: 0;
  left: 0;
}

.split-image img.watermark {
  position: static;
  width: auto;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  opacity: .15;
}

.split-image svg {
  width: 120px;
  height: 120px;
  color: var(--blue);
  opacity: .2;
}

.split.dark-bg .split-content { background: var(--dark); color: var(--white); }
.split.dark-bg .split-content p { color: rgba(255,255,255,.75); }
.split.dark-bg .split-content h2 { color: var(--white); }
.split.dark-bg .split-image { background: var(--dark-mid); position: relative; }
.split.dark-bg .split-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,27,42,.4);
  z-index: 1;
}

.split.blue-bg .split-content { background: var(--blue); color: var(--white); }
.split.blue-bg .split-content p { color: rgba(255,255,255,.85); }
.split.blue-bg .split-content h2 { color: var(--white); }
.split.blue-bg .split-image { background: var(--blue-dark); }

/* ===== FEATURE BOXES (dark bg with icons) ===== */
.features-dark {
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  padding: 48px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.features-dark::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: url('../images/watermark.png') no-repeat center/contain;
  opacity: .03;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 24px 18px;
  text-align: center;
  transition: all var(--transition);
}

.feature-box:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-3px);
}

.feature-box svg {
  width: 36px;
  height: 36px;
  color: var(--blue-light);
  margin-bottom: 12px;
}

.feature-box h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-box p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.why-item {
  display: flex;
  gap: 12px;
  padding: 18px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg { width: 20px; height: 20px; color: var(--white); }

.why-item h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.why-item p {
  font-size: .82rem;
  color: #666;
  line-height: 1.45;
}

/* Dark variant */
.why-item-dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.why-item-dark h4 { color: var(--white); }
.why-item-dark p { color: rgba(255,255,255,.6); }

.why-item-dark .why-icon {
  background: rgba(255,255,255,.12);
}

.why-item-dark .why-icon svg { color: var(--blue-light); }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--blue);
  position: relative;
}

.testimonial-card .stars {
  color: #FFC107;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: .9rem;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
}

.testimonial-card .author {
  font-weight: 700;
  font-size: .85rem;
  color: var(--dark);
}

.testimonial-card .author span {
  font-weight: 400;
  color: var(--gray-mid);
}

.read-more-link {
  color: var(--blue);
  font-weight: 600;
  font-style: normal;
  font-size: .82rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.read-more-link:hover {
  color: var(--blue-dark);
  text-decoration: underline;
}

/* ===== CTA BANNERS ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-banner p {
  font-size: .95rem;
  opacity: .9;
  margin-bottom: 20px;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--blue-dark);
  font-weight: 700;
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

.emergency-banner {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: var(--white);
  padding: 36px 0;
  text-align: center;
}

.emergency-banner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.emergency-banner p {
  font-size: .92rem;
  opacity: .9;
  margin-bottom: 16px;
}

.emergency-banner .btn {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}

.emergency-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* ===== ABOUT / VALUES ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.about-text h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.about-text .divider {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 2px;
  margin: 10px 0 14px;
}

.about-text p {
  color: #555;
  margin-bottom: 12px;
  font-size: .95rem;
  line-height: 1.65;
}

.about-image {
  background: linear-gradient(135deg, var(--blue-bg), #e3f2fd);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  position: absolute;
  top: 0;
  left: 0;
}

.about-image img.logo-img {
  position: static;
  width: auto;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.value-card {
  background: var(--white);
  padding: 24px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
  border-top: 3px solid var(--blue);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.value-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.value-card p {
  color: #666;
  font-size: .84rem;
  line-height: 1.5;
}

.value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: var(--blue-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg { width: 26px; height: 26px; color: var(--blue); }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.contact-info {
  padding: 32px 28px;
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  color: var(--white);
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-info > p {
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
  font-size: .9rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(25,118,210,.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg { width: 18px; height: 18px; color: var(--blue-light); }

.contact-detail h4 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-mid);
  margin-bottom: 1px;
}

.contact-detail a,
.contact-detail p {
  color: var(--white);
  font-size: .95rem;
  font-weight: 500;
}

.contact-detail a:hover { color: var(--blue-light); }

.phone-link {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--blue-light) !important;
}

/* ===== FORM ===== */
.contact-form {
  background: var(--white);
  padding: 32px 28px;
}

.contact-form h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group { margin-bottom: 12px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .82rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25,118,210,.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 50px;
  background: var(--blue);
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: .3px;
}

.form-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(25,118,210,.35);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 40px 0 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 28px;
}

.footer-brand p { font-size: .84rem; line-height: 1.6; }

footer h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

footer ul li { margin-bottom: 8px; }
footer ul a { font-size: .84rem; transition: color var(--transition); }
footer ul a:hover { color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  text-align: center;
  font-size: .8rem;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--dark-mid));
  color: var(--white);
  padding: 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: url('../images/watermark.png') no-repeat center/contain;
  opacity: .04;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.page-hero p {
  color: rgba(255,255,255,.65);
  font-size: .95rem;
}

/* ===== SERVICES PAGE DETAIL ===== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid #eee;
}

.service-detail:last-child { border-bottom: none; }

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-image {
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  position: absolute;
  top: 0;
  left: 0;
}

.service-detail-image svg {
  width: 80px;
  height: 80px;
  color: var(--blue);
  opacity: .3;
}

.service-detail-content {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.service-detail-content .divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 2px;
  margin: 8px 0 12px;
}

.service-detail-content p {
  color: #555;
  font-size: .92rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.service-detail-content .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* Dark variant for alternating */
.service-detail.dark-row .service-detail-content {
  background: var(--dark);
  color: var(--white);
}
.service-detail.dark-row .service-detail-content h3 { color: var(--white); }
.service-detail.dark-row .service-detail-content p { color: rgba(255,255,255,.7); }
.service-detail.dark-row .service-detail-image { background: var(--dark-mid); position: relative; }
.service-detail.dark-row .service-detail-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13,27,42,.35);
  z-index: 1;
}
.service-detail.dark-row .service-detail-image svg { color: var(--blue-light); opacity: .15; }

/* ===== WHY GRID 3-COL VARIANT ===== */
.why-grid-3col {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== FULL-WIDTH IMAGE CTA SECTIONS ===== */
.image-cta {
  position: relative;
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.image-cta-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
}

.image-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.image-cta-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.82) 0%, rgba(21,34,56,.75) 50%, rgba(13,27,42,.82) 100%);
}

.image-cta .container {
  position: relative;
  z-index: 1;
}

.image-cta .section-header p {
  max-width: 620px;
}

/* ===== PROCESS / HOW IT WORKS ===== */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-step {
  text-align: center;
  flex: 1;
  max-width: 280px;
  padding: 0 20px;
}

.process-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(25,118,210,.3);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.process-step p {
  font-size: .88rem;
  color: #666;
  line-height: 1.55;
}

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue));
  margin-top: 28px;
  flex-shrink: 0;
  border-radius: 1px;
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== EMERGENCY PULSE ===== */
.emergency-banner .btn {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,.4); }
  50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(25,118,210,.4);
  opacity: 0;
  transform: translateY(16px);
  transition: all .3s ease;
  z-index: 500;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25,118,210,.5);
}

/* ===== GOOGLE VERIFIED BADGE ON REVIEWS ===== */
.testimonial-card .author::after {
  content: ' \2713 Google';
  font-size: .72rem;
  font-weight: 600;
  color: var(--blue);
  margin-left: 6px;
}

/* ===== BRYANT SECTION ===== */
.bryant-section {
  padding: 48px 0;
  background: var(--white);
}

.bryant-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

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

.bryant-logo-side img {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.bryant-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.bryant-content > p {
  color: #555;
  font-size: .94rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.bryant-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}

.bryant-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .88rem;
  color: var(--dark);
  font-weight: 500;
}

.bryant-feature svg {
  color: #D32F2F;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Partner section (about page) */
.partner-section {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.partner-section-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}

/* ===== CUSTOMER PHOTO GALLERY ===== */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.photo-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--gray);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.photo-card:hover img {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  color: var(--white);
}

.photo-card:hover .photo-overlay {
  opacity: 1;
}

.photos-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  background: var(--gray);
  border-radius: var(--radius-sm);
  color: var(--gray-mid);
  font-size: .9rem;
}

/* ===== PHOTO LIGHTBOX ===== */
.photo-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.photo-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.photo-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  z-index: 2;
  opacity: .8;
  transition: opacity .2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  z-index: 2;
  opacity: .7;
  transition: opacity .2s, background .2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
  background: rgba(255,255,255,.2);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  font-weight: 600;
  background: rgba(0,0,0,.5);
  padding: 6px 16px;
  border-radius: 20px;
}

/* ===== SERVICE PAGE (individual) ===== */
.service-page-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.service-page-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.service-page-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.service-page-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 8px;
}

.service-page-text h2:first-child {
  margin-top: 0;
}

.service-page-text p {
  color: #555;
  font-size: .94rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.service-page-text ul,
.service-page-text ol {
  color: #555;
  font-size: .94rem;
  line-height: 1.7;
  margin: 0 0 16px 20px;
}

.service-page-text li {
  margin-bottom: 6px;
}

/* ===== CITY GRID (service areas hub) ===== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.city-card {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
  text-decoration: none;
  transition: all var(--transition);
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.city-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.city-card span {
  font-size: .82rem;
  color: var(--gray-mid);
}

.city-card .learn-more {
  margin-top: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--blue);
}

/* ===== CITY PAGE CONTENT ===== */
.city-page-content {
  max-width: 800px;
  margin: 0 auto;
}

.city-page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.city-page-content p {
  color: #555;
  font-size: .94rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet (768px - 1024px) --- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid-3col { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .hero { min-height: 440px; padding: 64px 0 56px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-inner { gap: 24px; }

  .split-content { padding: 36px 28px; }
  .split-content h2 { font-size: 1.5rem; }

  .service-detail-content { padding: 28px 24px; }
  .service-detail-content h3 { font-size: 1.25rem; }

  .contact-layout { grid-template-columns: 1fr 1.3fr; }
  .service-page-content { gap: 24px; }
  .photo-gallery { grid-template-columns: repeat(3, 1fr); }
  .city-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-banner h2 { font-size: 1.45rem; }
  .emergency-banner h2 { font-size: 1.3rem; }

  .image-cta { padding: 56px 0; }

  .process-connector { width: 40px; }
}

/* --- Phone landscape / small tablet (max 768px) --- */
@media (max-width: 768px) {
  body { font-size: 14px; }
  .container { padding: 0 16px; }
  section { padding: 36px 0; }
  section.compact { padding: 28px 0; }
  section.tight { padding: 20px 0; }

  /* Top bar */
  .top-bar { padding: 5px 0; font-size: .78rem; }
  .top-bar .container { justify-content: center; text-align: center; }
  .top-bar span { display: none; }
  .top-bar-phone { font-size: .92rem; }

  /* Header / Nav */
  header .container { padding-top: 6px; padding-bottom: 6px; }

  .logo img { height: 44px; }

  nav { position: static; }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 0;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
    border-top: 1px solid #eee;
    z-index: 9999;
  }

  nav ul.active { display: flex; }

  nav ul li {
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  nav ul li:last-child { border-bottom: none; }

  nav a {
    display: block;
    padding: 14px 20px !important;
    font-size: .95rem;
    text-align: left;
    color: var(--dark);
    background: var(--white);
    border-radius: 0 !important;
    margin: 0 !important;
    text-transform: none;
    letter-spacing: 0;
    white-space: nowrap;
  }

  nav a:hover,
  nav a.active {
    color: var(--blue);
    background: var(--blue-bg);
  }

  .nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 14px 20px !important;
    border-radius: 0 !important;
    margin: 0 !important;
    text-align: center !important;
  }

  .nav-cta:hover {
    background: var(--blue-dark) !important;
    color: var(--white) !important;
  }

  .nav-toggle { display: block; }

  /* Hero */
  .hero { padding: 40px 0 36px; min-height: 0; }
  .hero h1 { font-size: 1.85rem; line-height: 1.18; }
  .hero-text p { font-size: .95rem; margin-bottom: 18px; }

  .hero-inner { grid-template-columns: 1fr; gap: 20px; }

  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; justify-content: center; padding: 14px 24px; }

  .hero-badges { justify-content: flex-start; }
  .hero-badge { font-size: .75rem; padding: 6px 10px; }

  .hero-stat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat { padding: 14px 12px; }
  .hero-stat .num { font-size: 1.4rem; }
  .hero-stat .lbl { font-size: .72rem; }

  /* Trust bar */
  .trust-bar { padding: 16px 0; }
  .trust-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .trust-item { font-size: .8rem; gap: 6px; justify-content: center; }
  .trust-item svg { width: 22px; height: 22px; }

  /* Service cards */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 20px 18px; }

  /* Features grid */
  .features-dark { padding: 36px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-box { padding: 18px 14px; }
  .feature-box svg { width: 30px; height: 30px; margin-bottom: 8px; }
  .feature-box h4 { font-size: .88rem; }
  .feature-box p { font-size: .78rem; }

  /* Split sections */
  .split,
  .about-content {
    grid-template-columns: 1fr;
  }

  .split-content { padding: 28px 20px; }
  .split-content h2 { font-size: 1.4rem; }
  .split-content p { font-size: .9rem; }

  .split-image { min-height: 180px; }
  .split-image img { max-height: 140px; }

  /* Image CTA sections */
  .image-cta { padding: 48px 0; }

  /* Process steps */
  .process-steps { flex-direction: column; align-items: center; gap: 6px; }
  .process-connector { width: 2px; height: 28px; margin: 0; }
  .process-step { max-width: 100%; padding: 0 16px; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .value-card { padding: 18px 14px; }
  .value-card h3 { font-size: .92rem; }
  .value-card p { font-size: .8rem; }
  .value-icon { width: 44px; height: 44px; margin-bottom: 10px; }
  .value-icon svg { width: 22px; height: 22px; }

  /* Why Choose Us grid */
  .why-grid-3col { grid-template-columns: 1fr; }
  .why-item { padding: 14px 12px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 18px 16px; }

  /* Bryant / Partner */
  .bryant-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .bryant-logo-side img { width: 160px; }
  .bryant-features { grid-template-columns: 1fr; }
  .bryant-feature { justify-content: center; }
  .partner-section { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .partner-section-logo { width: 90px; }

  /* Photo gallery */
  .photo-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Service page individual */
  .service-page-content { grid-template-columns: 1fr; }
  .service-page-image { position: static; }

  /* City grid */
  .city-grid { grid-template-columns: 1fr; }

  /* Service Detail (services page) */
  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-detail-image { min-height: 140px; }
  .service-detail-image svg { width: 56px; height: 56px; }
  .service-detail-content { padding: 24px 20px; }
  .service-detail-content h3 { font-size: 1.2rem; }
  .service-detail-content p { font-size: .88rem; }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
    border-radius: var(--radius-sm);
  }

  .contact-info { padding: 24px 20px; }
  .contact-info h2 { font-size: 1.3rem; }

  .contact-form { padding: 24px 20px; }
  .contact-form h2 { font-size: 1.2rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* CTA Banners */
  .cta-banner { padding: 32px 0; }
  .cta-banner h2 { font-size: 1.3rem; }
  .cta-banner p { font-size: .88rem; }
  .cta-banner .btn { width: 100%; justify-content: center; }

  .emergency-banner { padding: 28px 0 !important; }
  .emergency-banner h2 { font-size: 1.25rem; }
  .emergency-banner p { font-size: .85rem; }
  .emergency-banner .btn { width: auto; }

  /* Page hero (inner pages) */
  .page-hero { padding: 28px 0; }
  .page-hero h1 { font-size: 1.7rem; }
  .page-hero p { font-size: .88rem; }

  /* Section headers */
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: .88rem; }

  /* About */
  .about-text h2 { font-size: 1.4rem; }
  .about-image { min-height: 200px; padding: 24px; }
  .about-image img { max-height: 140px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .footer-brand { text-align: center; }
  .footer-brand img { margin: 0 auto 10px; }
  footer h4 { margin-bottom: 8px; }
  footer ul li { margin-bottom: 6px; }
  .footer-bottom { font-size: .75rem; }

  /* Buttons general */
  .btn { padding: 12px 22px; font-size: .88rem; }
}

/* --- Small phone (max 480px) --- */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .logo img { height: 36px; }

  .hero h1 { font-size: 1.5rem; }
  .hero { padding: 28px 0 24px; min-height: 0; }

  .hero-stat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-stat { padding: 10px 8px; }
  .hero-stat .num { font-size: 1.2rem; }
  .hero-stat .lbl { font-size: .68rem; }

  .hero-badges { gap: 6px; }
  .hero-badge { font-size: .7rem; padding: 5px 8px; }
  .hero-badge svg { width: 14px; height: 14px; }

  .trust-items { grid-template-columns: 1fr 1fr; gap: 8px; }
  .trust-item { font-size: .75rem; gap: 5px; }
  .trust-item svg { width: 18px; height: 18px; }

  .services-grid { gap: 10px; }
  .service-card { padding: 16px 14px; }
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: .82rem; }

  .features-grid { grid-template-columns: 1fr; gap: 10px; }

  .values-grid { grid-template-columns: 1fr; gap: 10px; }

  .split-content { padding: 22px 16px; }
  .split-content h2 { font-size: 1.25rem; }

  .image-cta { padding: 36px 0; }
  .process-num { width: 48px; height: 48px; font-size: 1.2rem; }
  .process-step h3 { font-size: .95rem; }
  .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }

  .service-detail-content { padding: 20px 16px; }
  .service-detail-image { min-height: 100px; }
  .service-detail-image svg { width: 44px; height: 44px; }

  .contact-info { padding: 20px 16px; }
  .contact-form { padding: 20px 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 10px 12px; font-size: .88rem; }

  .section-header h2 { font-size: 1.3rem; }
  .page-hero h1 { font-size: 1.4rem; }

  .cta-banner h2 { font-size: 1.15rem; }
  .emergency-banner h2 { font-size: 1.1rem; }

  .testimonial-card { padding: 16px 14px; }
  .testimonial-card blockquote { font-size: .85rem; }

  .footer-grid { gap: 20px; }
}
