/* === Global Reset and Typography === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-size: 16px;
  color: #2a1f2d;
}

body {
  background-color: #e8dccc;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1b0e1d;
}

/* ===== Hero Card Section ===== */
.hero-card {
  margin-top: 30px;
  background: linear-gradient(180deg, #f8f4ec 0%, #e8dccc 104%);
  padding: 20px;
  border-radius: 50px;
}

/* ===== Navbar (Header) ===== */
.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 18px 40px 18px 20px;
  /* background: linear-gradient(180deg, #f8f4ec 0%, #e8dccc 104%); */
  border-radius: 30px;
  position: relative;
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  color: #3c3c3c;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus {
  color: #0D4F4F;
}

/* Enquire Now Button */
.enquire-btn {
  border-radius: 999px;
  border: 1.5px solid #0D4F4F;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-left: 12px;
  background: #0D4F4F;
  color: #fff;
  padding: 6px 24px;
  transition: all 0.3s;
  cursor: pointer;
  user-select: none;
}

.enquire-btn h4 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  color: #fff;
}

.enquire-btn:hover,
.enquire-btn:focus {
  background: transparent;
  color: #0D4F4F;
  border-color: #0D4F4F;
}

.desktop-only {
  display: inline-block;
}

.mobile-only {
  display: none;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 7px;
  width: 32px;
  height: 24px;
}
.hamburger span {
  background-color: #0D4F4F;
  height: 3px;
  border-radius: 2px;
  width: 100%;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .navbar {
    padding: 16px 10px;
    grid-template-columns: auto 1fr auto;
  }
}

@media (max-width: 800px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 16px 14px;
  }
  .logo img {
    height: 40px;
  }
}

@media (max-width: 700px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 12px 8px;
  }
}

/* Mobile Nav Toggle */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 58px;
    right: 14px;
    background: #f7f5f0;
    gap: 18px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    min-width: 170px;
    z-index: 1000;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: inline-flex;
    margin-top: 10px;
  }
}

/* ===== Hero Section and Features ===== */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
  padding: 40px 30px;
}
.hero-content {
  max-width: 500px;
}
.tagline {
  display: inline-block;
  background: #fff;
  border: 1px solid #d0c7ba;
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 14px;
  color: #6b5e52;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 46px;
  margin-bottom: 15px;
  color: #231f20;
}
.hero-content .subheading {
  font-size: 18px;
  color: #6b5e52;
  margin-bottom: 14px;
}
.hero-content .description {
  font-size: 16px;
  margin-bottom: 30px;
  color: #4a4a4a;
}
.cta-btn {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 50px;
  background: #046865;
  color: #fff;
  border: 1px solid #0D4F4F;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.10);
  transition: all 0.3s;
}
.cta-btn:hover {
  background: #0D4F4F;
  color: #fff;
}

.hero-image img {
  width: 90%;
  max-width: 430px;
  border: 2px solid #9c6b3d;
  border-radius: 200px 200px 20px 20px;
  object-fit: cover;
  display: block;
  margin-left: auto;
}

@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 4vw;
  }
  .hero-image img {
    margin: 30px auto 0;
    width: 70%;
  }
}

/* ===== Features ===== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  padding: 40px 20px;
  margin-top: 20px;
}
.feature-card {
  padding: 20px;
}
.feature-card .icon {
  font-size: 48px;
  background: #e2d6e6;
  color: #4b145b;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2a1f2d;
}
.feature-card p {
  color: #333;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ===== Card About Section ===== */
.card-container {
  background-color: #1a1a2e;
  color: #fff;
  border-radius: 20px;
  padding: 44px;
  position: relative;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.11);
}
.image-container {
  max-width: 420px;
  height: 364px;
  border: 2px solid #d4af37;
  border-radius: 20px;
  overflow: hidden;
  padding: 26px;
  background: #fff;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.content h2 {
  font-size: 28px;
  margin: 0 0 10px;
  color: #faf8d6;
}
.content p {
  font-size: 16px;
  color: #ccc;
  margin: 0 0 12px;
}
.content ul { 
  padding-left: 1rem; 
  margin: 0 0 16px; 
}
.content li { 
  margin: 6px 0; 
  color: #959595; 
}
.button {
  background-color: transparent;
  width: 70%;
  border: 2px solid #0D4F4F;
  padding: 2px;
  border-radius: 30px; 
  cursor: pointer;
  margin-bottom: 10px;
}
.button h4{
  background-color: #0D4F4F;
  padding: 10px;
  border-radius:30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}
.button:hover { background-color: #429b82; }
.button:focus { outline: 2px solid #d4af37; outline-offset: 3px; }

@media (max-width: 600px) {
  .card-container {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    width: 95%;
    margin-inline: auto;
  }
  .image-container {
    height: 220px;
    margin-inline: auto;
  }
}

/* ===== Footer Section ===== */
.site-footer {
  background: #f8f4ec;
  border-top: 1px solid #e9edf1;
  margin-top: 32px;
  color: #1b1e22;
  border-radius: 30px;
  padding: 32px 16px 48px;
}
.footer-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-logo-block img {
  height: 45px;
  margin-bottom: 12px;
  display: block;
}

.footer-logo-block p {
  color: #1b1e22;
  font-size: 1rem;
  line-height: 1.6;
}
.f-col h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}

.f-list, .footer-columns ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.f-list li, .footer-columns ul li {
  margin-bottom: 0.5rem;
}
.footer-columns a,
.f-list a {
  color: #1b1e22;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-columns a:hover,
.f-list a:hover,
.footer-columns a:focus,
.f-list a:focus {
  color: #0d4f4f;
  text-decoration: underline;
}
/* Social icons */
.footer-socials {
  margin-top: 1rem;
  display: flex;
  gap: 15px;
}
.footer-social {
  color: #1b1e22;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}
.footer-social:hover,
.footer-social:focus {
  color: #0d4f4f;
}
/* Footer hours spacing */
.f-hours span {
  display: inline-block;
  min-width: 110px;
}
/* Footer bar */
.footer-bar {
  grid-column: 1 / span 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e9edf1;
  margin-top: 22px;
  padding-top: 16px;
  font-size: 0.93rem;
  color: #5b636b;
}
.services-arched {
  background: linear-gradient(180deg, #f8f4ec 0%, #f8f4ec 100%);
  padding: 50px 16px;
  text-align: center;
  border-radius: 24px;
  margin-top: 40px;
}

.services-arched .wrap { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  color: #6f6b65;
  border: 1px solid #d7cbb9;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f9f5ee;
}
.services-arched h2 {
  font-size: 2.2rem;
  margin: 12px 0 6px;
  color: #2a1f2d;
}
.services-arched .sub {
  color: #6f6860;
  font-size: 14px;
  margin: 0 0 26px;
}

/* Service grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  align-items: start;
  justify-items: center;
  margin-top: 14px;
}
@media (max-width: 900px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* Service Card */
.arch-card {
  width: min(340px, 90vw);
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  color: #2a1f2d;
  position: relative;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(13,79,79,.08);
  transition: box-shadow 0.18s;
  display: block;
  padding: 0 0 28px 0;
}
.arch-card:focus-visible { outline: 2px solid #0D4F4F; outline-offset: 6px; border-radius: 14px; }

.arch-frame {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  background: #f8f4ec;
  margin: 0 auto;
}
.arch-photo {
  display: block;
  border-radius: 180px 180px 14px 14px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
  margin: 15px auto 0 auto;
  width: 70%;
  height: 60%;
}
.arch-photo img {
  width: 100%;
  height: auto;
  border-radius: 180px 180px 14px 14px;
  object-fit: cover;
  transition: transform .25s;
}

.arch-title {
  margin-top: 22px;
  font-weight: 600;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.07rem;
  color: #2a1f2d;
}

.arch-card:hover .arch-photo img { transform: scale(1.04); }

/* Pill button under grid */
.cta-row {
  margin-top: 38px;
  display: inline-block;
  padding: 5px;
  border-radius: 50px;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
  border: 1px solid #0D4F4F;
}
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 18px; border-radius: 999px;
  background: #0D4F4F; color: #fff; font-weight: 600; font-size: 14px;
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 6px 14px rgba(13,79,79,.18);
  transition: .18s ease-in-out;
  text-decoration: none;
}
.pill:hover { filter: brightness(.94); transform: translateY(-1px); }

.steps {
  background: linear-gradient(180deg, #f8f4ec 0%, #c3b195 100%);
  padding: 40px 16px;
  text-align: center;
  border-radius: 24px;
  margin-top: 36px;
}

.wrap { max-width: 1100px; margin: 0 auto; }
.steps-title {
  font-size: 2.1rem;
  margin: 10px 0 6px;
  color: #1b1e22;
}
.steps-sub {
  color: #6f6860;
  margin: 0 0 26px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
  justify-items: center;
  margin-top: 28px;
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; row-gap: 26px; }
}

/* Single step card */
.step {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(13,79,79,.09);
  padding: 28px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 220px;
  max-width: 350px;
  margin: 0 auto;
}
.num {
  font-size: 2.3rem;
  color: #715b89;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: #1b1e22;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: 0.9px;
}
.step-copy {
  color: #6f6860;
  font-size: 14px;
  max-width: 280px;
  margin-bottom: 4px;
}

/* Call-to-action under steps */
.steps .cta-row {
  margin-top: 30px;
  display: inline-block;
  border-radius: 50px;
  border: 1px solid #0D4F4F;
}
.steps .pill {
  height: 40px; padding: 0 22px; border-radius: 999px;
  background: #0D4F4F; color: #fff; font-weight: 700; font-size: 14px;
  border: 1px solid rgba(0,0,0,.08); box-shadow:0 8px 18px rgba(13,79,79,.2); transition:.18s ease-in-out;
  text-decoration: none;
}
.steps .pill:hover { filter: brightness(.95); transform: translateY(-1px); }

@media (max-width: 900px) {
  .footer-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-bar {
    grid-column: 1 / span 2;
  }
}
@media (max-width: 600px) {
  .footer-wrap {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 12px;
  }
}
