/* Advanced Printing — v1 rebuild
   Mobile-first. Base styles target ~390px width, desktop enhancements via min-width media queries. */

:root {
  --navy: #132a4c;
  --orange: #f2872e;
  --bg: #f7f6f3;
  --text: #1a1a1a;
  --muted: #5b6472;
  --available: #2f9e5c;
  --unavailable: #d8dde3;
  --radius: 10px;
  --max-width: 1200px;
  --space-mobile: 56px;
  --space-desktop: 96px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.55;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 { font-weight: 700; font-size: 2rem; }
h2 { font-weight: 700; font-size: 1.6rem; }
h3 { font-weight: 600; font-size: 1.15rem; }

p { margin: 0 0 16px; color: var(--text); }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }

img { max-width: 100%; display: block; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover { background: #d9701c; border-color: #d9701c; color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* ---------- Layout helpers ---------- */
.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--space-mobile) 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e7e5e0;
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
}
.logo-text strong { font-weight: 700; color: var(--orange); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
}

.nav-menu {
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e7e5e0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 20px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}

.nav-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-menu a {
  padding: 10px 4px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid #f0efec;
}

.nav-cta {
  margin-top: 8px;
  text-align: center;
}

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(100deg, rgba(19,42,76,0.94) 0%, rgba(19,42,76,0.82) 45%, rgba(15,33,56,0.6) 100%),
    url('/assets/images/gallary-image.png');
  background-size: cover;
  background-position: center 20%;
  color: #fff;
  padding: 64px 0;
}

.hero-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 16px;
}

.hero-sub {
  color: #cfd8e6;
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-hero {
  background:
    linear-gradient(100deg, rgba(19,42,76,0.95) 0%, rgba(19,42,76,0.85) 50%, rgba(15,33,56,0.65) 100%),
    url('/assets/images/gallary-image.png');
  background-size: cover;
  background-position: center 15%;
  color: #fff;
  padding: 48px 0;
}
.page-hero h1 { color: #fff; margin-bottom: 8px; }
.page-hero .hero-sub { color: #cfd8e6; margin-bottom: 0; }

/* ---------- Section headings ---------- */
.section-sub {
  color: var(--muted);
  margin-top: -8px;
  margin-bottom: 28px;
}

.secondary-heading {
  margin-top: 40px;
  font-size: 1.1rem;
  color: var(--muted);
}

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card-grid--secondary {
  grid-template-columns: 1fr;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: #fff;
  border: 1px solid #e7e5e0;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.service-card .service-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.service-photo {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
}

a.service-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(19, 42, 76, 0.08);
}

.service-card--secondary {
  background: #efeeea;
  border-style: dashed;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.service-card--secondary .service-icon {
  background: var(--muted);
}

.service-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.05rem;
}

.service-desc {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-cta {
  margin-top: auto;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-cta--link {
  text-decoration: none;
}

/* ---------- About teaser / content ---------- */
.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.about-content {
  max-width: 760px;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.about-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.about-teaser-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.about-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.link-arrow {
  display: inline-block;
  font-weight: 600;
  color: var(--orange);
  margin-top: 8px;
}

/* ---------- Reviews ---------- */
.reviews-section {
  background: #fff;
  border-top: 1px solid #e7e5e0;
  border-bottom: 1px solid #e7e5e0;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  margin: 0;
  padding: 24px;
  background: var(--bg);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.review-card p {
  font-style: italic;
  margin-bottom: 10px;
}

.review-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
}

.award-badge {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.award-badge img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: #e7e5e0;
}

.gallery-grid--teaser {
  grid-template-columns: repeat(3, 1fr);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label {
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  font-size: 0.9rem;
  margin-top: 10px;
}

.contact-form .optional {
  font-weight: 400;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  font-size: 16px; /* iOS zoom rule: never below 16px */
  padding: 12px 14px;
  border: 1px solid #d3d0c9;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 135, 46, 0.15);
}

.contact-form button {
  margin-top: 18px;
  align-self: flex-start;
}

.contact-info-col h3 { margin-top: 0; }
.contact-info-col h3:not(:first-child) { margin-top: 24px; }

.form-notice {
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.form-notice--success {
  background: #e5f5ea;
  color: #1e6b3d;
  border: 1px solid #bfe6cd;
}

.form-notice--error {
  background: #fdeceb;
  color: #a3291b;
  border: 1px solid #f6c6c1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #d9dfe8;
  padding: var(--space-mobile) 0 24px;
}

.footer-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.footer-logo { color: #fff; }
.footer-brand p { color: #b9c2d0; }

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #d9dfe8;
}

.footer-list a { color: #d9dfe8; }
.footer-list a:hover { color: var(--orange); }

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icons a:hover { background: var(--orange); color: #fff; }

.footer-note {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: #9aa6b8;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ---------- Desktop enhancements ---------- */
@media (min-width: 640px) {
  .card-grid,
  .card-grid--secondary {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: row;
  }

  .footer-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  :root {
    --space-mobile: var(--space-desktop);
  }

  .nav-toggle { display: none; }

  .nav-menu {
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    gap: 24px;
  }

  .nav-menu a { border-bottom: none; padding: 0; }
  .nav-cta { margin-top: 0; }

  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }

  .hero { padding: 96px 0; }
  .hero h1 { font-size: 3rem; }
  .hero-sub { font-size: 1.15rem; }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-grid--secondary {
    grid-template-columns: repeat(3, 1fr);
    max-width: 380px;
  }

  .about-teaser-grid {
    grid-template-columns: 0.9fr 1.3fr 1fr;
    align-items: center;
  }

  .about-content-grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-wrap {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }
}
