/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #eeebe5;
    font-family: "Inter", "Inter Placeholder", sans-serif;
    font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
    margin: 0;
    padding: 0;
}

/* Header styling */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 64px;
    background: transparent;
    z-index: 1000;
    width: 85%;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
}
/* header.scrolled {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 24px 0 rgba(163, 191, 142, 0.23);
    border-radius: 40px;
    margin: 15px auto 0;
    padding: 8px 24px;
    width: 70%;
    border: 1px solid black;
} */

/* Bulb Icon */
.logo{
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo-icon {
    font-size: 22px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-icon:hover {
    color: #fc4c00; /* bright yellow */
    text-shadow: 0 0 10px #fc4c00, 0 0 25px #fc4c00, 0 0 40px #fc4c00;
}

.brand-text {
  font-weight: 500;
  color: #111;
  font-size: 26px;
  letter-spacing: -0.06rem;
  vertical-align: middle;
  font-family: "Inter", "Inter Placeholder", sans-serif;
}

nav{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:24px
}

/* Nav Links */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #fc4c00;
}

/* CTA button */
.cta-btn-nav {
  background: #111;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border: none;
  border-radius: 32px;
  padding: 10px 15px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.3s, color 0.3s;
}
.cta-btn-nav:hover {
  background: #545454;
  color: #fff;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 1200;
}

.menu-toggle .bar {
  display: block;
  position: absolute;
  left: 7px;
  right: 7px;
  height: 3px;
  background: #000;
  border-radius: 5px;
  transition: all 0.40s cubic-bezier(0.77,0,0.18,1);
}

.menu-toggle .bar:first-child {
  top: 13px;
  width: 70%;
}

.menu-toggle .bar:last-child {
  top: 21px;
  width: 70%;
}

/* Morph to X/Cross */
.menu-toggle.open .bar:first-child {
  transform: rotate(45deg);
  top: 17px;
}

.menu-toggle.open .bar:last-child {
  transform: rotate(-45deg);
  top: 17px;
}

/* Responsive */
@media (max-width: 1024px) {
    nav.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .menu-toggle {
        display: block;
    }

    /* Animation */
    @keyframes slideDown {
        from {
        opacity: 0;
        transform: translateY(-10px);
        }
        to {
        opacity: 1;
        transform: translateY(0);
        }
    }
}
@media (max-width: 1024px) {
  header{
      width: 100% !important;
      padding: 20px 34px;
  }
  nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #eeebe5;
    width: 100vw;
    height: 40vh;
    z-index: 1100;
    display: none;
    flex-direction: column;
    padding: 28px 0 0 0;
    border-radius: 0;
    justify-content: flex-start;
    align-items: flex-start;
  }
  nav.active {
    display: flex;
    animation: fadeIn 0.35s cubic-bezier(0.77,0,0.18,1) forwards;
  }
  /* Logo row styles */
  .logo {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  /* Nav links stacked vertically, left-aligned */
  nav ul {
    flex-direction: column;
    gap: 22px;
    margin-left: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
  }
  nav ul li a {
    font-size: 18px;
    color: #000;
    padding: 0;
    text-align: left;
  }
  /* Close icon at top-right */
  .menu-toggle.open {
    position: absolute;
    top: 22px;
    right: 28px;
  }
  /* Full width rounded CTA button at bottom */
  .cta-btn-nav {
    margin-top: auto;
    margin-bottom: 32px;
    margin-left: 24px;
    margin-right: 24px;
    width: calc(100vw - 48px);
    padding: 18px 0;
    background: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: block;
    transition: background 0.3s, color 0.3s;
  }
  .cta-btn-nav:hover {
    background: #545454;
    color: #fff;
  }
}/* Who we are / Our Services Section */
.our-services-section {
    color: #444;
    font-family: 'Open Sans', Arial, sans-serif;
    max-width: 740px;
    margin: 100px auto 20px;
    padding: 48px 28px 32px 10px;
    border-radius: 18px;
    box-sizing: border-box;
}

.our-services-section-header {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 24px;
}

.our-services-section-badge {
    display: inline-block;
    background: #e6e2dc;
    color: #222;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 8px 24px;
    border-radius: 12px;
    letter-spacing: 0.06em;
    font-family: 'Open Sans', Arial, sans-serif;
    margin-bottom: 16px;
    width: fit-content;
}

.our-services-section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 5.5em !important;
    line-height: 1.05;
    color: #111;
    margin: 0 0 10px 0;
}

.our-services-section-desc {
    font-family: "Inter", "Inter Placeholder", sans-serif;
    font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
    font-size: 1.4em;
    font-weight: 500;
    line-height: 35px;
    letter-spacing: -0.05rem;
    color: #6d6c6a;
    margin-bottom: 36px;
}

.our-services-section-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.our-services-section-avatars {
    display: flex;
    align-items: center;
    gap: -12px;
    background: #ebe7e3;
    padding: 5px 14px 5px 5px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(164, 164, 164, 0.10);
}

.our-services-section-avatars img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-right: -12px;
    box-shadow: 0 2px 10px rgba(190, 190, 190, 0.12);
}

.our-services-section-icon {
    display: inline-block;
    font-size: 1.35rem;
    color: #ffa928;
    margin-left: 8px;
    margin-right: 0px;
    vertical-align: middle;
}

.our-services-section-rating {
    font-family: "Inter", "Inter Placeholder", sans-serif;
    font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
    font-size: 1.04rem;
    color: #333;
    font-weight: 500;
}

/* Large Desktop: push 200px from left */
@media (min-width: 1200px) {
    .our-services-section {
        margin-left: 200px;
        margin-right: auto;
    }
}

/* Laptop / Tablet */
@media (max-width: 1024px) {
    .our-services-section {
        max-width: 90vw;
        padding: 38px 12px;
        margin: 80px auto; 
    }
    .our-services-section-title {
        font-size: clamp(2.1rem, 8vw, 3.2rem);
    }
    .our-services-section-desc {
        font-size: 1.1rem;
        line-height: 1.5em;
    }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
    .our-services-section {
        padding: 30px 8vw;
        margin: 70px auto 20px;
    }
    .our-services-section-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }
    .our-services-section-desc {
        font-size: 1rem;
    }
    .our-services-section-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .our-services-section {
        padding: 20px 5vw;
        margin: 50px auto 15px;
    }
    .our-services-section-title {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }
    .our-services-section-desc {
        font-size: 0.95rem;
        line-height: 1.4em;
    }
    .our-services-section-avatars img:nth-child(n+4) {
        display: none;
    }
}


/* ===== Wrapper ===== */
.our-services-listitems-section-wrapper {
  padding: 4rem 2rem;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: #1B1B1B;
}

/* ===== Grid Layout ===== */
.our-services-listitems-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

/* Center single last card */
.our-services-listitems-section-grid > .our-services-listitems-section-card:nth-last-child(1):nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 520px;
}

/* ===== Card Styling ===== */
.our-services-listitems-section-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(27, 27, 27, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.our-services-listitems-section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 36px rgba(27, 27, 27, 0.12);
}

/* ===== Image Container ===== */
.our-services-listitems-section-image {
  width: 100%;
  height: 380px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.our-services-listitems-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Card Content ===== */
.our-services-listitems-section-content {
  padding: 1.5rem 1.5rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.our-services-listitems-section-title {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
  color: #222;
}

.our-services-listitems-section-category {
  font-size: 1rem;
  font-weight: 400;
  color: #92806B;
  letter-spacing: 0.01em;
}

/* ===== Responsive Breakpoints ===== */

/* Tablets (1024px ↓) */
@media (max-width: 1024px) {
  .our-services-listitems-section-wrapper {
    padding: 3rem 1.5rem;
  }

  .our-services-listitems-section-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 2rem;
  }

  .our-services-listitems-section-image {
    height: 340px;
  }

  .our-services-listitems-section-title {
    font-size: 1.35rem;
  }
}

/* Small Tablets (768px ↓) */
@media (max-width: 768px) {
  .our-services-listitems-section-wrapper {
    padding: 2.5rem 1.2rem;
  }

  .our-services-listitems-section-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }

  .our-services-listitems-section-image {
    height: 300px;
  }

  .our-services-listitems-section-grid > .our-services-listitems-section-card:nth-last-child(1):nth-child(odd) {
    width: 80%;
  }
}

/* Phones (600px ↓) */
@media (max-width: 600px) {
  .our-services-listitems-section-wrapper {
    padding: 2rem 1rem;
  }

  .our-services-listitems-section-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .our-services-listitems-section-grid > .our-services-listitems-section-card:nth-last-child(1):nth-child(odd) {
    width: 100%;
    max-width: 95%;
  }

  .our-services-listitems-section-card {
    width: 100%;
    margin: 0 auto;
  }

  .our-services-listitems-section-image {
    height: 280px;
  }

  .our-services-listitems-section-content {
    padding: 1.2rem 1rem;
  }

  .our-services-listitems-section-title {
    font-size: 1.25rem;
  }

  .our-services-listitems-section-category {
    font-size: 0.9rem;
  }
}

/* Extra Small Phones (480px ↓) */
@media (max-width: 480px) {
  .our-services-listitems-section-wrapper {
    padding: 1.5rem 0.8rem;
  }

  .our-services-listitems-section-image {
    height: 250px;
  }

  .our-services-listitems-section-title {
    font-size: 1.1rem;
  }

  .our-services-listitems-section-category {
    font-size: 0.85rem;
  }
}



.footer {
  background: #efebe3;
  padding: 56px 18px 20px 18px;
  font-size: 16px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 150px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  flex: 1 1;
  min-width: 230px;
}
.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
}
.footer-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.footer-desc {
  color: #6b6b6b;
  font-size: 15px;
  margin-bottom: 23px;
  margin-top: 7px;
}

.footer-social {
  display: flex;
  gap: 11px;
  margin-bottom: 25px;
}

.footer-social-btn {
  background: #222;
  color: #fff;
  border: none;
  text-decoration: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-social-btn:hover {
  background: #444;
  transform: scale(1.05);
}

.footer-menus {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  flex: 3 1;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  min-width: 160px;
}

.footer-menu-title {
  font-weight: 600;
  margin-bottom: 14px;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.footer-menu a,
.footer-menu p {
  color: #222;
  text-decoration: none;
  margin-bottom: 11px;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-menu a:hover,
.footer-contact-link:hover {
  color: #6b6b6b;
}

.footer-contact-link {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 38px;
  border-top: 1px solid #e3e0d7;
  padding-top: 16px;
  color: #838383;
  min-height: 52px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1150px) {
  .footer-top {
    gap: 38px;
  }
  .footer-menus {
    flex-wrap: wrap;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .footer-menus {
    justify-content: center;
    gap: 30px;
  }
  .footer-menu {
    min-width: 165px;
    text-align: center;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .footer {
    padding: 40px 2vw 16px 2vw;
    font-size: 15px;
    margin: 0 15px;
  }
  .footer-title {
    font-size: 21px;
  }
  .footer-menu-title {
    font-size: 14px;
    margin-bottom: 9px;
  }
  .footer-bottom {
    font-size: 12px;
    min-height: 26px;
    padding-top: 12px;
    margin-top: 19px;
  }
}
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: black;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
  z-index: 9999;
}



    /* Floating Enquire Button */
    .enquire-btn {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background-color: #000;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      font-size: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      z-index: 1000;
    }

    .enquire-btn:hover {
      transform: scale(1.05);
    }

    /* Overlay Background */
    .popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
      padding: 20px;
    }

    /* Popup Box */
    .popup-form {
      background-color: #eeebe5;
      border-radius: 15px;
      padding: 30px 25px;
      max-width: 500px;
      width: 100%;
      position: relative;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      animation: popupShow 0.3s ease;
    }

    @keyframes popupShow {
      from {
        transform: scale(0.9);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* Close Button */
    .close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #333;
    }

    /* Form Elements */
    .popup-form input {
      width: 100%;
      border: none;
      border-bottom: 1px solid #ccc;
      background: none;
      padding: 9px 4px;
      font-size: 13px;
      margin-bottom: 20px;
      outline: none;
    }

    .popup-form label {
      font-size: 12px;
      font-weight: 500;
      color: #333;
    }

    .service-options {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 15px 0 25px;
    }

    .service-btn {
      border: none;
      background: #ece8df;
      color: #807c74;
      border-radius: 25px;
      padding: 8px 18px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 12px;
    }

    .service-btn.active {
      background-color: #000;
      color: #fff;
    }

    .book-btn {
      background-color: #000;
      color: #fff;
      border: none;
      margin: 10px auto;
      width: 100%;
      padding: 15px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .book-btn:hover {
      background-color: #222;
    }

    @media (max-width: 500px) {
      .popup-form {
        padding: 20px;
      }
      .book-btn {
        font-size: 14px;
      }
    }

/* Base font sizes for desktop */
body {
  font-size: 16px; /* base font size */
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
}
h1,h2,h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 3.5rem; /* desktop main headline */
  line-height: 1.1;
  margin-bottom: 1rem;
}
p, nav ul li a, .cta-btn-nav {
  font-size: 1rem; /* 16px */
  line-height: 1.5;
}

/* Tablet screens */
@media (max-width: 1024px) {
  h1,h2,h3 {
    font-size: 2.8rem !important; /* slightly smaller */
  }
  p, nav ul li a, .cta-btn-nav {
    font-size: 0.95rem;
  }
}

/* Mobile screens */
@media (max-width: 600px) {
  h1,h2,h3 {
    font-size: 2rem !important; /* smaller for small screens */
  }
  p, nav ul li a, .cta-btn-nav {
    font-size: 0.9rem;
  }
  .cta-btn-nav {
    padding: 12px 24px;
  }
}