/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 16px;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
}

h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.7;
}

/* ===== NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(33, 33, 33, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  gap: 20px;
}

.nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

nav ul li a {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}

nav ul li a:hover {
  background: rgba(212, 31, 31, 0.15);
  color: #ff6b6b;
}

.nav-cta {
  background: #d41f1f !important;
  color: #fff !important;
  border-radius: 28px !important;
  padding: 10px 20px !important;
  white-space: nowrap;
  font-size: 0.8rem !important;
}

.nav-cta:hover {
  background: #b01414 !important;
}

/* ===== DROPDOWN NAV ===== */
.has-dropdown {
  position: relative;
}

.has-dropdown>a .nav-chevron {
  display: inline-block;
  font-style: normal;
  font-size: 0.65rem;
  margin-left: 5px;
  transition: transform 0.25s;
  vertical-align: middle;
}

.has-dropdown:hover>a .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  z-index: 2000;
  padding: 4px 0;
  border-top: 3px solid #d41f1f;
  list-style: none;
}

.has-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  display: block;
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  color: #222 !important;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: transparent !important;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  text-transform: uppercase;
}

.dropdown-menu li:not(:last-child) a {
  border-bottom: 1px solid #eee;
}

.dropdown-menu li a:hover {
  background: #fdf5f5 !important;
  color: #d41f1f !important;
}

.dropdown-menu li a .dd-arrow {
  font-style: normal;
  font-size: 0.7rem;
  color: #ccc;
  margin-left: 12px;
  transition: color 0.15s;
}

.dropdown-menu li a:hover .dd-arrow {
  color: #d41f1f;
}

/* Mobile: disable dropdown hover, collapse into regular list */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid #d41f1f;
    padding: 0;
    margin: 0 0 4px 16px;
    display: none;
  }

  .dropdown-menu li a {
    padding: 8px 14px;
    font-size: 0.78rem;
    color: #eee !important;
  }

  .dropdown-menu li:not(:last-child) a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu li a:hover {
    color: #ff6b6b !important;
    background: transparent !important;
  }

  /* Show dropdown on mobile via checkbox trick when nav is open */
  #nav-toggle:checked~nav .has-dropdown .dropdown-menu {
    display: block;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

#nav-toggle {
  display: none;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: url('../images/iStock-1022727968-1920w.jpg') center/cover no-repeat fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 30px 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: #d41f1f;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(212, 31, 31, 0.4);
}

.btn:hover {
  background: #b01414;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 31, 31, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid #491d9f;
  color: #491d9f;
  box-shadow: none;
}

.btn-outline:hover {
  background: #491d9f;
  color: #fff;
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 30px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  color: #11468f;
}

.section-title p {
  color: #666;
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ===== SERVICES SECTION ===== */
#services {
  background: #f8f8f8;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

.service-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 420px;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #fff;
}

.accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  background: #f2f2f2;
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
  transition: background 0.2s;
}

.accordion-title:hover {
  background: #e8e8e8;
}

.accordion-title.active {
  background: #d41f1f;
  color: #fff;
}

.accordion-title .arrow {
  transition: transform 0.3s;
  font-size: 0.8rem;
}

.accordion-title.active .arrow {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
}

.accordion-body.open {
  max-height: 300px;
  padding: 16px 20px;
}

.accordion-body p {
  color: #555;
  font-size: 0.95rem;
}

.accordion-body a {
  color: #d41f1f;
  font-weight: 600;
}

/* ===== VIDEO/TRUSTED SECTION ===== */
#trusted {
  background: #fff;
}

.trusted-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.video-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle-cta {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #ec0834;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(236, 8, 52, 0.4);
}

.circle-cta:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(236, 8, 52, 0.5);
}

.testimonial-quote {
  text-align: center;
  margin-top: 40px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-quote blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: #333;
  line-height: 1.8;
}

.testimonial-quote cite {
  display: block;
  margin-top: 10px;
  font-weight: 700;
  color: #d41f1f;
}

/* ===== HOW IT WORKS ===== */
#how {
  background: #f4f4f4;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: #11468f;
  line-height: 1;
}

.step h3 {
  color: #a5a5a5;
  font-size: 1rem;
  margin: 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step p {
  font-size: 0.9rem;
  color: #555;
}

/* ===== WHY CHOOSE US ===== */
#why {
  background: #fff;
}

.why-list {
  display: grid;
  gap: 28px;
  max-width: 700px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  color: #d41f1f;
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item h3 {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 6px;
}

.why-item p {
  color: #666;
  font-size: 0.9rem;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: #f8f8f8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tcard-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ddd;
  overflow: hidden;
}

.tcard-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tcard-stars {
  color: #f5a623;
  font-size: 1.1rem;
}

.tcard p {
  font-size: 0.9rem;
  color: #555;
  font-style: italic;
}

.tcard cite {
  font-weight: 700;
  color: #333;
  font-size: 0.85rem;
  font-style: normal;
}

/* ===== MAP SECTION ===== */
#coverage {
  background: #212121;
  color: #fff;
  text-align: center;
}

#coverage h2 {
  color: #fff;
  margin-bottom: 20px;
}

#coverage .map-img {
  max-width: 700px;
  margin: 0 auto 30px;
  border-radius: 10px;
  overflow: hidden;
}

#coverage p {
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== CONTACT FORM ===== */
#contact {
  background: #11468f;
  color: #fff;
}

#contact h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Barlow', sans-serif;
  background: rgba(255, 255, 255, 0.95);
  color: #333;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  font-size: 1.05rem;
  padding: 16px;
  cursor: pointer;
  border: none;
}

/* ===== FOOTER ===== */
footer {
  background: #212121;
  color: #aaa;
  padding: 40px 30px 20px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.footer-logo img {
  height: 55px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
  font-size: 0.85rem;
  color: #aaa;
  display: block;
  margin-bottom: 6px;
}

.footer-col a:hover {
  color: #d41f1f;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.79rem;
  color: #666;
}

/* ===== GALLERY PAGE ===== */
.page-hero {
  min-height: 340px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #11468f;
  /* fallback if no inline style supplied */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 30px 60px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-top: 12px;
}

.gallery-grid {
  columns: 4;
  column-gap: 12px;
  padding: 60px 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
}

.gallery-item img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: zoom-in;
}

.gallery-item img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-close:hover {
  color: #d41f1f;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  user-select: none;
}

.lightbox-prev {
  left: 10px;
}

.lightbox-next {
  right: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(212, 31, 31, 0.6);
}

/* Missing image placeholder */
.img-placeholder {
  background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #888;
  font-size: 0.8rem;
  text-align: center;
  min-height: 180px;
  padding: 20px;
}

.img-placeholder svg {
  opacity: 0.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .trusted-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: rgba(33, 33, 33, 0.98);
    padding: 20px 30px;
    gap: 4px;
  }

  #nav-toggle:checked~nav ul {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  h1 {
    font-size: 2rem;
  }

  .nav-cta {
    display: none !important;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 1;
  }

  .why-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .gallery-grid {
    columns: 3;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
