/* 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;
  }
}

/* =======================
   Services Hero Section
======================= */
.services-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
  margin: 100px auto 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.services-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.services-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.services-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.services-hero-back {
  position: absolute;
  top: 15px;
  left: 15px;
  text-decoration: none;
  color: #111;
  background: #fff;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 3;
}
/* Service page navigation arrows */
.service-nav-arrows {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.service-arrow {
  background-color: #fff;
  color: #111;
  border: none;
  padding: 0.1rem 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}
.service-arrow:hover {
  background-color: #f0f0f0;
  transform: scale(1.1);
}

.services-hero-title {
  font-size: 4.3rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.05;
}

.services-hero-subtitle {
  margin-top: 1rem;
 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;
  max-width: 650px;
  margin-inline: auto;
  line-height: 1.6;
}

/* =======================
   Info Row
======================= */
.services-info {
  display: flex;
  justify-content: space-around;
  background: #f6f2eb;
  padding: 2rem;
  margin: 2rem auto;
  border-radius: 12px;
  max-width: 1200px;
  flex-wrap: wrap;
  text-align: center;
  gap: 1rem;
}

.services-info-item span {
  display: block;
  font-size: 1rem;
  color: #777;
  font-family: 'Playfair Display', serif;
}

.services-info-item p {
  font-size: 1.2rem;
  font-weight: 600;
  
  margin-top: 0.5rem;
}

/* =======================
   Services Study Section
======================= */
.services-study {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  color: #111;
}

.services-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.services-label {
  font-size: 1.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.services-text-bold {
  font-size: 1.6rem;
  font-weight: 500;
  font-family: 'Inter', 'Inter Placeholder', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.services-subtext {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}

/* Results Row */
.services-results {
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.services-result {
  flex: 1 1 180px;
  text-align: center;
}

.services-result h2 {
  font-size: 3rem;
  font-weight: 700;
}

.services-result p {
  font-size: 1rem;
  color: #555;
  margin-top: 0.3rem;
}

/* =======================
   Responsive Breakpoints
======================= */

/* Tablet */
@media (max-width: 992px) {
  .services-hero {
    min-height: 300px;

    border-radius: 12px;
    margin: 100px 20px 30px;
  }

  .services-hero-title {
    font-size: 2.5rem;
  }

  .services-hero-subtitle {
    font-size: 1.1rem;
    max-width: 500px;
  }

  .services-row {
    grid-template-columns: 180px 1fr;
    gap: 3rem;
  }

  .services-text-bold {
    font-size: 1.6rem;
  }

  .services-subtext {
    font-size: 1.4rem;
  }

  .services-result h2 {
    font-size: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-hero {
    min-height: 250px;
    margin:  100px  15px 20px;
  }

  .services-hero-title {
    font-size: 2rem;
  }

  .services-hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .services-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-label {
    justify-content: flex-start;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .services-text-bold {
    font-size: 1.4rem;
  }

  .services-subtext {
    font-size: 1.2rem;
  }

  .services-results {
    justify-content: center;
    gap: 2rem;
  }

  .services-result h2 {
    font-size: 2rem;
  }
}

/* Small Mobile / Phones */
@media (max-width: 480px) {
  .services-hero {
    min-height: 200px;
    margin: 100px 10px 15px;
    border-radius: 10px;
  }

  .services-hero-title {
    font-size: 1.6rem;
  }

  .services-hero-subtitle {
    font-size: 0.95rem;
  }

  .services-text-bold {
    font-size: 1.2rem;
  }

  .services-subtext {
    font-size: 1rem;
  }

  .services-result h2 {
    font-size: 1.8rem;
  }

  .services-result p {
    font-size: 0.9rem;
  }
}



.get-started-here-section {
  width: 100%;
  padding: 60px 5vw; /* equal padding on all sides */
  font-family: 'Inter', 'Satoshi', 'Montserrat', Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.get-started-here-section-container {
  width: 80%;
  max-width: 1350px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  box-sizing: border-box;
}

.get-started-here-section-card {
  background: #faf7f2;
  border-radius: 21px;
  box-shadow: 0 6px 30px rgba(212, 202, 185, 0.20),0 1px 4px #edece8;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  min-width: 0;
}

.get-started-here-section-card--left {
  justify-content: flex-start;
}

.mission-icon {
  position: absolute;
  top: -32px;
  right: 32px;
  background: #111;
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(30,30,30,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.mission-icon i {
  color: #fff;
  font-size: 36px;
}
.get-started-here-section-logo {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 63px;
  height: 63px;
  background: #141414;
  color: #fff;
  border: none;
  border-radius: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 2px 8px #e3e0d8;
}

.get-started-here-section-logo span {
  font-family: inherit;
  font-size: 2em;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.get-started-here-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: 30px;
    width: fit-content;
}

.get-started-here-section-title {
  font-weight: 600;
  color: #141414;
  font-size: 2.5rem;
  text-align: left;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.get-started-here-section-italic {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.05rem;
  color: #141414;
}

.get-started-here-section-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #807c74;
  font-weight: 400;
  margin-bottom: 34px;
  max-width: 435px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter', 'Satoshi', 'Montserrat', Arial, sans-serif;
}

.get-started-here-section-cta {
  background: #141414;
  color: #fff;
  border: none;
  border-radius: 33px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 0;
  min-width: 220px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.get-started-here-section-cta:hover {
  background: #000;
  transform: scale(1.04);
}

.get-started-here-section-card--right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf7f2;
  padding: 0;
}

.get-started-here-section-image {
  width: 400px;
  max-width: 88%;
  height: auto;
  display: block;
  border-radius: 25px;
  box-shadow: 0 7px 38px rgba(180,170,157, .10);
  margin: 0;
}

/* Tablet view */
@media (max-width: 1050px) {
  .get-started-here-section-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .get-started-here-section-card {
    padding: 35px 24px;
  }
  .get-started-here-section-image {
    width: 260px;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .get-started-here-section {
    padding: 40px 5vw;
  }
  .get-started-here-section-card {
    padding: 28px 20px;
  }
  .get-started-here-section-title {
    font-size: 1.8rem;
  }
  .get-started-here-section-desc {
    font-size: 1rem;
  }
  .get-started-here-section-cta {
    font-size: 1rem;
    min-width: 160px;
    padding: 14px 0;
  }
  .get-started-here-section-image {
    width: 200px;
    border-radius: 16px;
  }
}

/* Small mobile view */
@media (max-width: 480px) {
  .get-started-here-section {
    padding: 28px 4vw;
  }
  .get-started-here-section-card {
    padding: 20px;
    border-radius: 14px;
  }
  .get-started-here-section-logo {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  .get-started-here-section-badge {
    margin-top: 60px;
    padding: 7px 18px;
    font-size: 0.9rem;
  }
  .get-started-here-section-title {
    font-size: 1.3rem;
  }
  .get-started-here-section-desc {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  .get-started-here-section-cta {
    font-size: 0.9rem;
    min-width: 140px;
    padding: 12px 0;
  }
  .get-started-here-section-image {
    width: 160px;
    border-radius: 12px;
  }
}



.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: 'Montserrat', Arial, sans-serif;
}
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;
  }
}

