/* ============================================================
   NAIN BROTHERS ROOFING LTD. – Main Stylesheet
   Colors: Navy #1a2e5a | Blue #3b82c4 | Red #d72b2b | White #fff
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

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

:root {
  --navy:   #1a2e5a;
  --blue:   #3b82c4;
  --blue2:  #4fa3d1;
  --red:    #d72b2b;
  --dark:   #0e1b38;
  --light:  #f4f7fb;
  --gray:   #6b7280;
  --white:  #ffffff;
  --shadow: 0 4px 24px rgba(26,46,90,.12);
  --radius: 10px;
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #2d2d2d;
  background: var(--white);
  line-height: 1.7;
}

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

h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
}

/* ── UTILITIES ────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 50px;
}
.text-center { text-align: center; }
.section-header { margin-bottom: 50px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: .4px;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(215,43,43,.35);
}
.btn-primary:hover {
  background: #b81f1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(215,43,43,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

/* ── ACCENT LINE ──────────────────────────────────────────── */
.accent-line {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  border-radius: 4px;
  margin-bottom: 20px;
}

/* ── TOPBAR ───────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: .82rem;
  color: var(--white);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--white); transition: color var(--transition); }
.topbar a:hover { color: var(--blue2); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }

/* ── HEADER / NAV ─────────────────────────────────────────── */
.header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26,46,90,.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.logo img { height: 64px; width: auto; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--navy);
  transition: var(--transition);
  letter-spacing: .3px;
}
.nav a:hover, .nav a.active {
  background: var(--navy);
  color: var(--white);
}
.nav .cta-nav {
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  padding: 9px 22px;
  margin-left: 8px;
}
.nav .cta-nav:hover { background: #b81f1f; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── HERO (index) ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, #1e4080 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-bottom: 160px; /* Space for statistics above the decorative bottom */
}
.hero::before {
  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='%23ffffff' fill-opacity='0.03'%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");
}

/* Hip/Hood Roof decorative bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 85% 0, 15% 0, 0 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge span { color: var(--blue2); }
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 38px;
  max-width: 550px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 30px;
  max-width: fit-content;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  display: block;
}
.hero-stat .lbl {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  padding: 80px 0 70px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--light);
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 50% 0, 0 40%);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; }
.breadcrumb {
  margin-top: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: var(--blue2); }
.breadcrumb span { margin: 0 6px; }

/* ── QUICK BARS ───────────────────────────────────────────── */
.quick-bar {
  background: var(--red);
  padding: 16px 0;
}
.quick-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.quick-bar-text {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.quick-bar-text span { font-weight: 400; font-size: .9rem; opacity: .9; }

/* ── SERVICES GRID ────────────────────────────────────────── */
.services-section { padding: 90px 0; background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(26,46,90,.18); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { color: var(--gray); font-size: .93rem; line-height: 1.65; }

/* ── WHY CHOOSE US ────────────────────────────────────────── */
.why-section { padding: 90px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.why-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 14px;
}
.why-badge-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--red);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: var(--shadow);
}
.why-badge-float small { display: block; font-size: .75rem; font-weight: 500; opacity: .9; }
.why-list { list-style: none; margin-top: 28px; display: grid; gap: 16px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--light);
  border-radius: var(--radius);
  font-size: .95rem;
}
.why-list li .check {
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
}
.why-list li strong { display: block; color: var(--navy); font-weight: 700; margin-bottom: 2px; }

/* ── AREAS SERVED ─────────────────────────────────────────── */
.areas-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
}
.areas-section .section-title { color: var(--white); }
.areas-section .section-subtitle { color: rgba(255,255,255,.72); max-width: 700px; }
.areas-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }
.area-chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--white);
  transition: var(--transition);
  cursor: default;
}
.area-chip:hover { background: var(--red); border-color: var(--red); }

/* ── GALLERY PREVIEW ──────────────────────────────────────── */
.gallery-preview { padding: 90px 0; background: var(--light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid .g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-grid .g-item:hover img { transform: scale(1.07); }
.g-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,46,90,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span { color: var(--white); font-size: 2rem; }
.gallery-grid .g-item.g-wide { grid-column: span 2; }

/* ── GOOGLE REVIEWS ───────────────────────────────────────── */
.reviews-section { padding: 90px 0; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 10px 35px rgba(26,46,90,.15); }
.review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { color: #444; font-size: .93rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.review-author-info strong { display: block; font-weight: 700; color: var(--navy); font-size: .9rem; }
.review-author-info span { font-size: .78rem; color: var(--gray); }
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
  font-weight: 600;
  color: var(--gray);
}
.google-badge img { height: 28px; }

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, #a01818 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 14px;
}
.cta-section p { font-size: 1.1rem; opacity: .9; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--red); font-weight: 700; }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

/* ── CONTACT SECTION ──────────────────────────────────────── */
.contact-section { padding: 90px 0; background: var(--light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 14px;
  padding: 40px 36px;
}
.contact-card h3 { font-size: 1.5rem; margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-info strong { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; opacity: .65; margin-bottom: 4px; }
.contact-item-info a { color: var(--white); font-weight: 600; font-size: .95rem; }
.contact-item-info a:hover { color: var(--blue2); }
.contact-social { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-social p { font-size: .82rem; opacity: .65; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: var(--transition);
}
.social-link:hover { background: var(--red); transform: translateY(-3px); }

/* ── FORM STYLES ──────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.form-card .sub { color: var(--gray); margin-bottom: 28px; font-size: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .83rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e9f0;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem;
  color: #2d2d2d;
  transition: border-color 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(59,130,196,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 10px; }
.form-success {
  display: none;
  text-align: center;
  padding: 30px;
  color: #16a34a;
}
.form-success .icon { font-size: 2.5rem; margin-bottom: 10px; }

/* ── MAP ──────────────────────────────────────────────────── */
.map-section { padding: 0; }
.map-section iframe { display: block; width: 100%; height: 420px; border: none; }

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-section { padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 14px; width: 100%; height: 460px; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 28px; right: 28px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  box-shadow: var(--shadow);
}
.about-badge small { display: block; font-size: .7rem; font-weight: 500; opacity: .8; }
.about-content p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.value-item {
  background: var(--light);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.value-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ── TEAM SECTION ─────────────────────────────────────────── */
.team-section { padding: 90px 0; background: var(--light); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}
.team-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); }
.team-card .avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
}
.team-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; }
.team-card p { color: var(--gray); font-size: .85rem; margin-bottom: 14px; }
.team-phone { color: var(--blue); font-weight: 600; font-size: .9rem; }

/* ── SERVICES PAGE ────────────────────────────────────────── */
.services-page { padding: 90px 0; }
.service-detail-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  margin-bottom: 36px;
  transition: var(--transition);
}
.service-detail-card:nth-child(even) { direction: rtl; }
.service-detail-card:nth-child(even) .service-detail-body { direction: ltr; }
.service-detail-card:hover { box-shadow: 0 12px 48px rgba(26,46,90,.18); }
.service-detail-img {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-detail-card:hover .service-detail-img img { transform: scale(1.04); }
.service-detail-body { padding: 40px 36px; }
.service-detail-body h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 14px; }
.service-detail-body p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; font-size: .95rem; }
.service-bullets { list-style: none; margin-top: 16px; }
.service-bullets li {
  padding: 6px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #444;
  font-size: .9rem;
}
.service-bullets li::before {
  content: '✔';
  color: var(--blue);
  font-size: .75rem;
  flex-shrink: 0;
}

/* ── GALLERY PAGE ─────────────────────────────────────────── */
.gallery-page { padding: 90px 0; background: var(--light); }
.gallery-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
.gallery-all-grid .g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--navy);
}
.gallery-all-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, opacity .3s;
}
.gallery-all-grid .g-item:hover img { transform: scale(1.08); opacity: .85; }
.g-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,46,90,.85) 0%, transparent 100%);
  color: var(--white);
  padding: 30px 16px 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .3px;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.g-item:hover .g-label { transform: translateY(0); }

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 92vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lb-close {
  position: absolute;
  top: 20px; right: 28px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  font-size: 2rem;
  padding: 14px 18px;
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--transition);
}
.lb-prev:hover, .lb-next:hover { background: var(--red); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  white-space: nowrap;
}

/* ── QUOTE PAGE ───────────────────────────────────────────── */
.quote-section { padding: 90px 0; background: var(--light); }
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}
.quote-info h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
.quote-info p { color: var(--gray); margin-bottom: 24px; }
.quote-steps { display: grid; gap: 20px; margin-top: 28px; }
.quote-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quote-step-info strong { display: block; color: var(--navy); margin-bottom: 4px; }
.quote-step-info span { color: var(--gray); font-size: .88rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.95);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-logo img { height: 56px; margin-bottom: 16px; }
.footer-logo p { font-size: .88rem; line-height: 1.7; opacity: .92; max-width: 280px; }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.92);
  font-size: .88rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--blue2); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .87rem;
  align-items: flex-start;
  color: rgba(255,255,255,.92);
}
.footer-contact-item span { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.92); }
.footer-contact-item a:hover { color: var(--blue2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--blue2); }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: var(--transition);
}
.footer-social-link:hover { background: var(--red); color: var(--white); }

/* ── BACK TO TOP ──────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 900;
}
#backToTop.show { opacity: 1; pointer-events: all; }
#backToTop:hover { background: var(--red); transform: translateY(-3px); }

/* ── FLOATING CALL BUTTON (mobile) ───────────────────────── */
.float-call {
  display: none;
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(215,43,43,.5); }
  50% { box-shadow: 0 0 0 14px rgba(215,43,43,0); }
}

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

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-image-wrap { max-width: 600px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .quote-wrapper { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .service-detail-card { grid-template-columns: 1fr; direction: ltr !important; }
  .service-detail-img { min-height: 220px; }
}

@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background: var(--white); padding: 16px 20px 24px; box-shadow: var(--shadow); border-top: 2px solid var(--light); gap: 4px; }
  .nav.open { display: flex; }
  .nav a { width: 100%; display: block; }
  .hamburger { display: flex; }
  .header .container { flex-wrap: wrap; position: relative; }
  .hero::after { height: 60px; }
  .hero-stats { gap: 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-item.g-wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-logo p { max-width: 100%; }
  .topbar .container { justify-content: center; }
  .topbar-right { display: none; }
  .float-call { display: flex; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-all-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 60px 0 50px; }
  .section-header { margin-bottom: 36px; }
}
