/* ========= Global Resets ========= */
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 120px;
  }
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #222;
  overflow-x: hidden;
}

/* ========= Header & Menu ========= */
header {
  background: #23455a;
  color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(35,69,90,0.07);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
body {
  padding-top: 90px;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
header h1 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: 1px;
  font-family: 'Montserrat', serif;
}

/* Menu Styles */
.menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 0;
}
.menu li {
  margin-left: 25px;
  margin-bottom: 0;
}
.menu-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  padding: 8px 0;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border 0.2s;
  font-family: 'Open Sans', Arial, sans-serif;
}
.menu-link:hover,
.menu-link:focus,
.menu-link.active {
  color: #f9c846;
  border-bottom: 2px solid #f9c846;
}

/* ========= Hero Background ========= */
.custom-hero-bg {
  position: relative;
  height: 60vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.custom-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.custom-hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 61, 84, 0.65);
  z-index: 2;
}
.custom-hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: center;
}
.custom-hero-content h1 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  font-family: 'Montserrat', serif;
  letter-spacing: 1px;
  animation: fadeInDown 1s both;
}
.custom-hero-content p {
  font-size: 1.2rem;
  opacity: 0.92;
  animation: fadeIn 1.3s both;
}
.hero-btn {
  display: inline-block;
  margin-top: 24px;
  background: #f9c846;
  color: #23455a;
  font-weight: bold;
  border: none;
  padding: 14px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(249,200,70,0.11);
  cursor: pointer;
}
.hero-btn:hover,
.hero-btn:focus {
  background: #23455a;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* ========= Section Titles ========= */
h2, .gallery-title {
  color: #23455a;
  margin-bottom: 16px;
  font-family: 'Montserrat', serif;
}

/* ========= About Section ========= */
.about-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #eef2f5 100%);
  padding: 30px 0 50px 0;
}
.about-section .container {
  max-width: 1100px;
}
.section-eyebrow {
  display: inline-block;
  color: #f9c846;
  background: rgba(35, 69, 90, 0.06);
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.about-heading {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 14px 0;
  color: #23455a;
  position: relative;
}
.about-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f9c846;
  border-radius: 2px;
  margin-top: 14px;
}
.about-lead {
  font-size: 1.2rem;
  color: #3a5a72;
  max-width: 720px;
  line-height: 1.6;
  margin: 0 0 32px 0;
  font-weight: 500;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3a4a58;
  margin: 0 0 16px 0;
}
.about-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  border-left: 4px solid #f9c846;
  box-shadow: 0 4px 14px rgba(35, 69, 90, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.about-features li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(35, 69, 90, 0.1);
}
.about-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:  rgba(35, 69, 90, 0.06);
  color: #f9c846;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.05rem;
}
.about-features strong {
  display: block;
  color: #23455a;
  font-family: 'Montserrat', serif;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.about-features span:not(.about-feature-icon) {
  color: #5a6b78;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* ========= Services Section ========= */
.services-section {
  background: linear-gradient(180deg, #eef2f5 0%, #f8f9fa 100%);
  padding: 50px 0 60px 0;
}
.services-heading {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 14px 0;
  color: #23455a;
  position: relative;
}
.services-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f9c846;
  border-radius: 2px;
  margin-top: 14px;
}
.services-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 0 0;
}
.services-list li {
  background: #fff;
  padding: 18px 20px;
  border-radius: 10px;
  border-left: 4px solid #f9c846;
  font-size: 1.05rem;
  transition: box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(35,69,90,0.06);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.services-list li:hover {
  box-shadow: 0 10px 24px rgba(35,69,90,0.1);
  transform: translateY(-3px);
}
.service-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:  rgba(35, 69, 90, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
}
.services-list strong {
  display: block;
  color: #23455a;
  font-family: 'Montserrat', serif;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.services-list span:not(.service-icon) {
  color: #5a6b78;
  font-size: 0.95rem;
  line-height: 1.45;
}

/* ========= Gallery: Before & After ========= */
.gallery-section {
  background: #f8f9fa;
  padding: 60px 0;
}
.gallery-title {
  text-align: center;
  margin: 0 0 8px 0;
  font-size: 2.5rem;
  letter-spacing: 1px;
}
.gallery-subtitle {
  text-align: center;
  color: #5a6b78;
  max-width: 720px;
  margin: 0 auto 36px auto;
  padding: 0 16px;
  line-height: 1.5;
}
.ba-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
.ba-card {
  margin: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(35,69,90,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(35,69,90,0.18);
}
.ba-tag {
  align-self: flex-start;
  margin: 14px 14px 0 14px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 999px;
}
.ba-tag--before {
  background: #8a8f96;
}
.ba-tag--after {
  background: #2e7d4f;
}
.ba-photo-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  background: #eef1f4;
  overflow: hidden;
}
.ba-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-card figcaption {
  padding: 14px 18px 18px 18px;
  color: #41525e;
  font-size: 0.98rem;
  line-height: 1.45;
}
.ba-arrow {
  font-size: 2.4rem;
  color: #23455a;
  font-weight: 700;
  user-select: none;
}

/* ========= Contact Section ========= */
.contact-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #eef2f5 100%);
  padding: 50px 0 60px 0;
}
.contact-heading {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 14px 0;
  color: #23455a;
  text-align: center;
  position: relative;
}
.contact-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f9c846;
  border-radius: 2px;
  margin: 14px auto 0 auto;
}
.contact-lead {
  font-size: 1.15rem;
  color: #3a5a72;
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto 32px auto;
  font-weight: 500;
  text-align: center;
}
.contact-section .section-eyebrow {
  display: block;
  text-align: center;
}
.contact-box {
  background: #fff;
  padding: 36px 32px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(35,69,90,0.08);
  max-width: 540px;
  margin: 0 auto;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f8f9fa;
  transition: background 0.2s;
}
.contact-row:hover {
  background: #eef2f5;
}
.contact-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:  rgba(35, 69, 90, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #7a8a96;
  margin-bottom: 2px;
  font-family: 'Montserrat', serif;
}
.contact-row a,
.contact-row span:not(.contact-icon):not(.contact-label) {
  color: #23455a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  transition: color 0.2s;
}
.contact-row a:hover {
  color: #f9c846;
}

/* ========= Footer ========= */
footer {
  background: #222b33;
  color: #fff;
  text-align: center;
  padding: 28px 0 18px 0;
  font-size: 1.04rem;
  letter-spacing: 0.1px;
}

/* ========= Animations ========= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0,40px,0); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translate3d(0,-40px,0); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-in-up {
  opacity: 0;
  transform: translate3d(0,40px,0);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in-up.animate {
  opacity: 1;
  transform: none;
}
.fade-in {
  animation: fadeIn 1.2s both;
}

/* ========= WhatsApp Floating Button ========= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

/* ========= Hamburger Menu Toggle (hidden on desktop) ========= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 200;
}
.menu-toggle-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open .menu-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========= Tablet (max-width: 900px) ========= */
@media (max-width: 900px) {
  header {
    padding: 14px 0;
  }
  body {
    padding-top: 75px;
  }
  header h1 {
    font-size: 1.5rem;
  }
  .nav-container {
    flex-wrap: wrap;
    gap: 8px;
  }
  .menu-toggle {
    display: flex;
  }
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(35, 69, 90, 0.97);
    backdrop-filter: blur(8px);
    padding: 12px 0;
    gap: 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    z-index: 150;
  }
  .menu.open {
    display: flex;
    animation: fadeInDown 0.25s ease;
  }
  .menu li {
    margin-left: 0;
    margin-bottom: 0;
  }
  .menu-link {
    display: block;
    padding: 14px 20px;
    font-size: 1.1rem;
    border-bottom: none;
    min-height: 48px;
    line-height: 48px;
    padding: 0 20px;
  }
  .menu-link:hover,
  .menu-link:focus,
  .menu-link.active {
    background: rgba(249, 200, 70, 0.12);
    border-bottom: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-heading {
    font-size: 1.7rem;
  }
  .about-lead {
    font-size: 1.05rem;
  }

  /* Services */
  .services-section {
    padding: 36px 0 42px 0;
  }
  .services-heading {
    font-size: 1.7rem;
  }
  .services-list {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-section {
    padding: 32px 0;
  }
  .ba-gallery {
    gap: 24px;
  }
  .ba-pair {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 92%;
  }
  .ba-arrow {
    justify-self: center;
    align-self: center;
    transform: rotate(90deg);
    font-size: 2rem;
    color: #23455a;
    background: none;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    box-shadow: none;
    margin: 6px 0;
  }
  .ba-card:hover {
    transform: none;
  }
  .gallery-title {
    font-size: 2rem;
    margin-bottom: 28px;
  }
  .gallery-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* Contact */
  .contact-section {
    padding: 36px 0 42px 0;
  }
  .contact-heading {
    font-size: 1.7rem;
  }
}

/* ========= Phone (max-width: 600px) ========= */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.2rem;
    letter-spacing: 0;
  }

  /* Hero */
  .custom-hero-bg {
    height: 45vh;
    min-height: 240px;
  }
  .custom-hero-content h1 {
    font-size: 1.35rem;
    line-height: 1.3;
  }
  .custom-hero-content p {
    font-size: 0.95rem;
    padding: 0 8px;
  }
  .hero-btn {
    font-size: 1rem;
    padding: 12px 24px;
    width: auto;
  }

  /* Container */
  .container {
    width: 94%;
    padding: 12px 0;
  }

  /* Sections */
  h2 {
    font-size: 1.4rem;
  }

  /* About */
  .about-section {
    padding: 20px 0 30px 0;
  }
  .about-heading {
    font-size: 1.4rem;
  }
  .section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
  .about-lead {
    font-size: 1rem;
  }
  .about-text p {
    font-size: 1rem;
  }

  /* Services */
  .services-section {
    padding: 24px 0 32px 0;
  }
  .services-heading {
    font-size: 1.4rem;
  }
  .services-list li {
    font-size: 0.95rem;
    padding: 14px 14px;
  }

  /* Gallery */
  .gallery-section {
    padding: 24px 0;
  }
  .ba-gallery {
    gap: 28px;
  }
  .gallery-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  /* Contact */
  .contact-section {
    padding: 24px 0 32px 0;
  }
  .contact-heading {
    font-size: 1.4rem;
  }
  .contact-lead {
    font-size: 1rem;
  }
  .contact-box {
    padding: 20px 16px;
    border-radius: 10px;
  }
  .contact-row {
    padding: 12px 12px;
  }
  .contact-row a,
  .contact-row span:not(.contact-icon):not(.contact-label) {
    font-size: 0.98rem;
    word-break: break-word;
  }

  /* Footer */
  footer {
    padding: 18px 0 12px 0;
    font-size: 0.92rem;
  }

  /* WhatsApp */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* ========= Small phone (max-width: 380px) ========= */
@media (max-width: 380px) {
  header h1 {
    font-size: 1rem;
  }
  .custom-hero-content h1 {
    font-size: 1.15rem;
  }
  .custom-hero-content p {
    font-size: 0.88rem;
  }
  .menu-link {
    font-size: 1rem;
    padding: 10px 12px;
    min-height: 44px;
    line-height: 44px;
  }
  .services-list li {
    padding: 12px 10px;
    gap: 10px;
  }
  .service-icon {
    width: 36px;
    height: 36px;
    font-size: 1em;
  }
  .contact-box {
    padding: 16px 10px;
  }
  .contact-icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}
