/* ============================================================
   ZULI BRESCIA — Static Site CSS
   Colors: Primary #001D73 | Gold #E0B44F | White #fff | Light #F6F6F6
   Font: Montserrat
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Asul&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #001D73;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Variables ---- */
:root {
  --primary: #001D73;
  --gold: #E0B44F;
  --white: #fff;
  --light: #F6F6F6;
  --container: 1080px;
  --transition: 300ms ease;
  --radius: 4px;
}

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Section ---- */
.section { padding: 120px 0; }
.section--light { background: var(--light); }
.section--dark { background: var(--primary); color: var(--white); }
.section--dark h2,
.section--dark h3,
.section--dark p { color: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { max-width: 700px; margin: 0 auto; font-size: 17px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Asul', sans-serif;
  color: var(--primary);
  line-height: 1.2;
}
h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}
h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  text-transform: capitalize;
}
h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
}
h4, h5, h6 { font-family: 'Montserrat', sans-serif; }
p { font-size: 16px; line-height: 1.375; letter-spacing: 1.25px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 9999px;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #c9a040;
  border-color: #c9a040;
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #c9a040;
  border-color: #c9a040;
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--light);
  border-color: var(--light);
}
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-white-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-dark {
  background: #111827;
  color: var(--white);
  border-color: #111827;
}
.btn-dark:hover {
  background: #374151;
  border-color: #374151;
}

/* ---- Stars ---- */
.star-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.stars { display: flex; gap: 4px; }
.stars svg { width: 20px; height: 20px; fill: var(--gold); }
.star-label { font-size: 14px; font-weight: 600; color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}
.header-logo img { height: 46px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.3px;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); }

.header-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; background: transparent; color: var(--white) !important; border: 2px solid var(--white); }
.mobile-menu .btn:hover { background: var(--white); color: var(--primary) !important; }
.mobile-menu-logo { position: absolute; top: 24px; left: 24px; }
.mobile-menu-logo img { height: 40px !important; width: auto !important; filter: brightness(0) invert(1); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  z-index: 1100;
  padding: 8px;
}
.admin-bar .mobile-menu { padding-top: 46px; }
.admin-bar .mobile-close { top: 70px; }
.admin-bar .mobile-menu-logo { top: 70px; }
@media (min-width: 783px) {
  .admin-bar .mobile-menu { padding-top: 32px; }
  .admin-bar .mobile-close { top: 56px; }
  .admin-bar .mobile-menu-logo { top: 56px; }
}

/* ============================================================
   HERO — HOME PAGE
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 33, 33, 0.5);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-content h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 24px;
}
.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 17px;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}
.hero-trust .stars svg { width: 18px; height: 18px; }
.hero-trust span {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--primary);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}

/* ============================================================
   WHO WE ARE — Home
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.who-text h2 { margin-bottom: 24px; }
.who-text p { margin-bottom: 20px; }
.who-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--light);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 28px 0;
}
.who-badge svg { width: 32px; height: 32px; fill: var(--primary); flex-shrink: 0; }
.who-badge-text h5 { font-size: 15px; font-weight: 700; color: var(--primary); }
.who-badge-text p { font-size: 14px; margin: 0; }

/* Before/After */
.before-after-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  user-select: none;
}
.before-after-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.before-after-inner {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}
.ba-before,
.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
}
.ba-before { z-index: 1; }
.ba-after  { z-index: 2; }
.ba-before img,
.ba-after img {
  width: 100% !important;
  height: 400px !important;
  min-height: 400px !important;
  max-height: 400px !important;
  object-fit: cover !important;
  display: block;
}
.ba-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.05s;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 10;
}
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23001D73'%3E%3Cpath d='M8.59 16.59L4 12l4.59-4.59L7.17 6l-6 6 6 6 1.42-1.41zm6.82 0L20 12l-4.59-4.59L16.83 6l6 6-6 6-1.42-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}
.ba-label {
  position: absolute;
  top: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 5;
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

/* ============================================================
   COSA FACCIAMO (Services cards — Home)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e8edf5;
  border-radius: 8px;
  padding: 32px 24px;
  transition: border-color var(--transition);
}
.service-card:hover {
  border-color: var(--primary);
}
.service-card-icon {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.service-card-icon svg { width: 40px; height: 40px; fill: var(--primary); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 16px; color: var(--primary); margin-bottom: 16px; line-height: 1.375; }
.service-card a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition);
}
.service-card a:hover { opacity: 0.8; }
.services-cta { text-align: center; }

/* ============================================================
   PERCHÉ SCEGLIERCI — Slider
   ============================================================ */
.benefits-slider {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}
.benefits-track {
  display: flex;
  transition: transform 0.4s ease;
}
.benefit-slide {
  flex: 0 0 100%;
  text-align: center;
  padding: 48px 40px;
  background: var(--light);
  border-radius: 12px;
}
.benefit-slide-icon {
  width: 72px;
  height: 72px;
  background: rgba(0,29,115,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.benefit-slide-icon svg { width: 32px; height: 32px; fill: var(--primary); }
.benefit-slide h3 { font-size: 22px; margin-bottom: 16px; color: var(--primary); }
.benefit-slide p { font-size: 16px; color: var(--primary); line-height: 1.375; max-width: 400px; margin: 0 auto; }
.benefits-slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.benefit-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}
.benefit-dot.active { background: var(--primary); }

/* ============================================================
   COSA CI RENDE DIVERSI — 2-column image + text
   ============================================================ */
.different-section { background: var(--white); padding: 0; }
.different-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.different-2col-image {
  overflow: hidden;
}
.different-2col-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}
.different-2col-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.different-2col-text h2 { margin-bottom: 40px; }
.different-feature { margin-bottom: 28px; }
.different-feature h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--primary); }
.different-feature p { font-size: 16px; color: var(--primary); line-height: 1.375; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light); padding: 100px 0; }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-slider { overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.4s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  text-align: left;
  padding: 0;
  background: var(--light);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-body {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 0 0 40px;
}
.testimonial-body blockquote {
  font-size: 16px;
  line-height: 1.375;
  letter-spacing: 1.25px;
  color: var(--primary);
  font-style: normal;
  position: relative;
  z-index: 1;
  padding: 0 20px;
  margin-top: 30px;
  margin-bottom: 32px;
}
.t-quote-mark {
  width: 40px;
  height: 40px;
  color: var(--gold);
  opacity: 1;
  position: absolute;
}
.t-quote-left {
  top: -8px;
  left: -8px;
}
.t-quote-right {
  bottom: 0;
  right: -8px;
  transform: scaleX(-1);
}
.testimonial-slide .testimonial-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  width: 100%;
}
.testimonial-slide .testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--primary);
}
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  padding: 0;
}
.t-dot.active { background: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand { }
.footer-brand img { height: 44px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), opacity var(--transition);
}
.social-icon:hover { transform: scale(1.1); opacity: 0.8; }
.social-icon svg { width: 16px; height: 16px; fill: var(--primary); }

.footer-nav h4,
.footer-contact h4,
.footer-newsletter h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 30px; }
.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.5;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--white); }

/* Newsletter */
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input {
  background: var(--primary);
  border: none;
  border-bottom: 2px solid var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  padding: 10px 0;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: var(--white); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form .btn { align-self: flex-start; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-text h2 { margin-bottom: 24px; }
.story-text p { margin-bottom: 16px; color: var(--primary); }
.story-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}
.story-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.story-images img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
}

/* ============================================================
   SERVICES PAGE — Alternating rows
   ============================================================ */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid #e8edf5;
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse .service-row-text { order: 2; }
.service-row.reverse .service-row-image { order: 1; }
.service-row-text h2 { font-size: 28px; margin-bottom: 16px; }
.service-row-text p { color: var(--primary); margin-bottom: 24px; font-size: 16px; }
.service-checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.service-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.service-checklist li svg { width: 20px; height: 20px; fill: var(--primary); flex-shrink: 0; margin-top: 2px; }
.service-row-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { padding: 80px 0 100px; }
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid #e8edf5;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; fill: var(--primary); transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--primary); }
.faq-item.open .faq-icon svg { fill: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-content {
  padding-bottom: 22px;
  font-size: 16px;
  line-height: 1.375;
  color: var(--primary);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 120px 0; }
.contact-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.contact-2col-image {
  max-height: 500px;
  overflow: hidden;
  border-radius: 4px;
}
.contact-2col-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.contact-2col-form {
  display: flex;
  flex-direction: column;
}
.contact-2col-form h1 {
  margin-bottom: 24px;
}
.contact-2col-form > p {
  color: var(--primary);
  font-size: 16px;
  line-height: 1.375;
  margin-bottom: 10px;
}
.contact-2col-form > p:last-of-type {
  margin-bottom: 36px;
}

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--gold); margin-left: 1px; }
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #d0d8e8;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: var(--primary);
  padding: 10px 0;
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { min-height: 100px; }

/* CF7 integration */
.wpcf7 .form-group { margin-bottom: 22px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  outline: none;
  transition: border-color var(--transition);
}
.wpcf7 input:focus,
.wpcf7 textarea:focus { border-color: var(--primary); }
.wpcf7 textarea { min-height: 100px; resize: vertical; }
.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 12px;
}
.wpcf7 input[type="submit"]:hover { background: #001050; }
.wpcf7-response-output { border: none !important; padding: 12px 0 !important; font-size: 14px; }

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-section { padding: 80px 0 100px; }
.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.booking-form-wrap {
  background: var(--white);
  border: 1px solid #e8edf5;
  border-radius: 10px;
  padding: 40px;
}
.booking-form-wrap h2 { margin-bottom: 8px; }
.booking-form-wrap .sub { color: #666; margin-bottom: 32px; font-size: 15px; }
.booking-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}
.booking-service-option input { display: none; }
.booking-service-label {
  display: block;
  border: 2px solid #e8edf5;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--primary);
}
.booking-service-option input:checked + .booking-service-label {
  border-color: var(--primary);
  background: rgba(0,29,115,0.04);
  color: var(--primary);
}
.booking-service-label:hover { border-color: var(--primary); }

.booking-info {
  background: var(--light);
  border-radius: 10px;
  padding: 36px;
}
.booking-info h3 { margin-bottom: 24px; }
.booking-info-list { display: flex; flex-direction: column; gap: 16px; }
.booking-info-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.booking-info-list li svg { width: 20px; height: 20px; fill: var(--primary); flex-shrink: 0; margin-top: 2px; }
.booking-contact-box {
  margin-top: 36px;
  background: var(--primary);
  border-radius: 8px;
  padding: 24px;
  color: var(--white);
}
.booking-contact-box h4 { color: var(--white); margin-bottom: 16px; font-size: 15px; }
.booking-contact-box .contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  transition: color var(--transition);
}
.booking-contact-box .contact-link:hover { color: var(--gold); }
.booking-contact-box .contact-link svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

/* WhatsApp CTA */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
  transition: background var(--transition);
}
.whatsapp-cta:hover { background: #128C7E; color: white; }
.whatsapp-cta svg { width: 22px; height: 22px; fill: white; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .different-2col { grid-template-columns: 1fr; }
  .different-2col-image { display: none; }
  .different-2col-text { padding: 80px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: span 2; }
}

@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .hamburger { display: flex; }
  .nav-menu { display: none; }
  .header-cta { display: none; }
  .hero { min-height: 100vh; }
  h1 { font-size: 40px; line-height: 40px; }
  .hero-content h1 { font-size: 40px; }
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .benefits-slider { max-width: 100%; }
  .different-2col-text { padding: 60px 24px; }
  .contact-2col { grid-template-columns: 1fr; gap: 32px; }
  .contact-section { padding: 60px 0; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > *:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testimonial-slide { padding: 0 16px 40px; }
  .service-row { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .service-row.reverse .service-row-text { order: unset; }
  .service-row.reverse .service-row-image { order: unset; }
  .benefit-slide { padding: 36px 24px; }
}

@media (max-width: 479px) {
  .testimonial-body blockquote { font-size: 15px; }
  .header-logo img { height: 36px; }
  .hero-content p { font-size: 15px; }
  h1 { font-size: 35px; }
  h2 { font-size: 28px; }
}

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */
.locations-hero {
  background: var(--primary);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}
.locations-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  pointer-events: none;
}
.locations-hero .container { position: relative; z-index: 1; }
.locations-hero h1 { color: var(--white); margin-bottom: 20px; }
.locations-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}

.locations-section { padding: 80px 0; }
.locations-section .section-header { text-align: center; margin-bottom: 60px; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.location-card {
  background: var(--white);
  border: 1px solid #e8edf5;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.location-card:hover {
  box-shadow: 0 8px 32px rgba(0,29,115,0.12);
}
.location-card img {
  width: 100% !important;
  height: 220px !important;
  min-height: 220px;
  max-height: 220px;
  object-fit: cover !important;
  display: block;
}
.location-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.location-card-body h2 {
  font-size: 22px;
  margin-bottom: 12px;
}
.location-card-body p {
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.5;
  flex: 1;
}
.location-card-body .btn {
  display: block;
  text-align: center;
  align-self: stretch;
}

.locations-cta-section {
  background: var(--light);
  padding: 80px 0;
  text-align: center;
}
.locations-cta-section h2 { margin-bottom: 16px; }
.locations-cta-section p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 17px;
}

@media (max-width: 767px) {
  .locations-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOKING PAGE (WordPress content wrapper)
   ============================================================ */
.booking-page-hero {
  background: var(--primary);
  padding: 80px 0 60px;
  text-align: center;
}
.booking-page-hero h1 { color: var(--white); margin-bottom: 20px; }
.booking-page-hero p {
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
}
.booking-wp-content { padding: 80px 0 100px; }
.booking-wp-content .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   WORDPRESS OVERRIDES
   ============================================================ */
.zuli-page * { box-sizing: border-box; }
.zuli-page img { max-width: 100%; height: auto; }

/* WordPress admin bar compensation */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
@media (max-width: 600px) {
  .admin-bar .site-header { top: 0; }
}

