
* {
    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;
  }
}


@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');

/* Who we are section */
.who-we-are-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;
}

.who-we-are-section-header {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 24px;
}

.who-we-are-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;
}

.who-we-are-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;
}

.who-we-are-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;
  width: 90%;
}

.who-we-are-section-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.who-we-are-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);
}

.who-we-are-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);
}

.who-we-are-section-icon {
  display: inline-block;
  font-size: 1.35rem;
  color: #ffa928;
  margin-left: 8px;
  margin-right: 0;
  vertical-align: middle;
}

.who-we-are-section-rating {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.04rem;
  color: #333;
  font-weight: 500;
}

/* Desktop: push 200px from left */
@media (min-width: 1200px) {
  .who-we-are-section {
    margin-left: 200px;
    margin-right: auto;
  }
}

/* Large tablets */
@media (max-width: 1024px) {
  .who-we-are-section {
    max-width: 90vw;
    padding: 38px 16px;
    margin: 80px auto;
  }
  .who-we-are-section-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  .who-we-are-section-desc {
    font-size: 1.1rem;
    line-height: 28px;
  }
}

/* Tablets & small laptops */
@media (max-width: 768px) {
  .who-we-are-section {
    padding: 28px 12px;
    margin: 60px auto;
  }
  .who-we-are-section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .who-we-are-section-desc {
    font-size: 1rem;
    line-height: 24px;
    width: 100%;
  }
  .who-we-are-section-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .who-we-are-section {
    padding: 20px 8vw;
    margin: 50px auto 20px;
  }
  .who-we-are-section-title {
    font-size: clamp(1.5rem, 10vw, 2.2rem);
  }
  .who-we-are-section-desc {
    font-size: 0.95rem;
    line-height: 22px;
  }
}

/* Extra small phones */
@media (max-width: 400px) {
  .who-we-are-section {
    padding: 15px 6vw;
    margin: 90px auto 16px;
  }
  .who-we-are-section-title {
    font-size: clamp(1.2rem, 12vw, 1.8rem);
  }
  .who-we-are-section-desc {
    font-size: 0.9rem;
    line-height: 20px;
  }
  /* Hide excess avatars for small screens */
  .who-we-are-section-avatars img:nth-child(n+4) {
    display: none;
  }
}

    
/* Why choose us section */
.why-choose-us-section {
  margin: 40px auto;
  padding: 60px 28px 50px;
}

.why-choose-us-section-intro,
.why-choose-us-section-grid,
.why-choose-us-section-stats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.why-choose-us-section-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size:4.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.11;
  color: #161410;
  letter-spacing: -0.05rem;
}

.why-choose-us-section-description {
color: #6d6c6a;
  font-size: 1.2em;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: -0.05rem;

  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  margin: 0 auto 36px;
  max-width: 640px;
  text-align: center;
}

/* Grid */
.why-choose-us-section-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Cards */
.why-choose-us-section-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  padding: 24px;
  flex: 1 1 280px;
  max-width: 360px;
  position: relative;
}

/* Founder */
.why-choose-us-section-founder-img {
  border-radius: 12px;
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 16px;
}

.why-choose-us-section-founder-info {
  position: absolute;
  left: 16px;
  bottom: 50px;
  background: rgba(34,34,34,0.6);
  color: #fff;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.95rem;
}

.why-choose-us-section-founder-name {
  font-weight: 600;
  display: block;
}
.why-choose-us-section-founder-role {
  font-size: 0.8rem;
}

.why-choose-us-section-social-icons {
  position: absolute;
  left: 16px;
  bottom: 12px;
  display: flex;
  gap: 12px;
}
.why-choose-us-section-social-icons a {
  color: #272727;
  background: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: background 0.2s;
}
.why-choose-us-section-social-icons a:hover {
  background: #fe5a1a;
  color: #fff;
}

/* Testimonial */
.why-choose-us-section-stars {
  color: #fe5a1a;
  margin-bottom: 10px;
}
.why-choose-us-section-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #616161;
  margin-bottom: 14px;
}
.why-choose-us-section-testimonial-text {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #222;
  line-height: 1.5;
  font-weight: 500;
}
.why-choose-us-section-testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Features */
.why-choose-us-section-feature-list {
  display: flex;
  flex-direction: column;
  width: 400px;
  gap: 16px;
}
.why-choose-us-section-feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-choose-us-section-feature-icon {
  font-size: 1.8rem;
  color: #161410;
}
.why-choose-us-section-feature-title {
  font-weight: 600;
  color: #191919;
}
.why-choose-us-section-feature-desc {
  font-size: 0.95rem;
  padding-top: 6px;
  color: #757575;
  line-height: 1.4;
}

/* Stats */
.why-choose-us-section-stats {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}
.why-choose-us-section-stat-card {
  flex: 1 1 180px;
  background: #fff;
  border-radius: 10px;
  padding: 24px 0;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.why-choose-us-section-stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #161410;
}
.why-choose-us-section-stat-label {
  font-size: 1rem;
  color: #757575;
  margin-top: 4px;
  display: block;
}

/* Responsive Reordering for Tablet & Phone */
@media (max-width: 1180px) {
  .why-choose-us-section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-choose-us-section-title{
    font-size: clamp(2.2rem, 7vw, 3.5rem);
    text-align: center;
  }
  .why-choose-us-section-card:nth-child(1),
  .why-choose-us-section-card:nth-child(2) {
    width: 100%;
    max-width: 100%;
  }
  .why-choose-us-section-feature-list {
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }
  .why-choose-us-section-feature-card {
    min-height: 140px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  /* Stats: 2x2 grid */
  .why-choose-us-section-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .why-choose-us-section {
    margin-top: 20px;
    padding: 48px 20px;
  }
  .why-choose-us-section-title {
    font-size: clamp(2.2rem, 7vw, 3.4rem);
    text-align: left;
  }
  .why-choose-us-section-feature-list {
    grid-template-columns: 1fr 1fr;
  }
  .why-choose-us-section-feature-card:nth-child(1) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .why-choose-us-section {
    padding: 40px 18px;
  }
  .why-choose-us-section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    text-align: center;
  }
  .why-choose-us-section-description {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 28px;
  }
  .why-choose-us-section-founder-img {
    height: 220px;
  }
  .why-choose-us-section-feature-list {
    grid-template-columns: 1fr;
  }
  .why-choose-us-section-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 450px) {
  .why-choose-us-section {
    padding: 32px 16px;
  }
  .why-choose-us-section-title {
    font-size: 1.6rem;
  }
  .why-choose-us-section-description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  .why-choose-us-section-feature-card {
    padding: 18px;
  }
}



.mission-section {
  max-width: 600px;
  margin: 64px auto 0 auto;
  position: relative;
  background: #f5f1eb;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(120,106,89,0.10);
  padding: 46px 38px 32px 38px;
}

.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;
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mission-label {
    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;
}

.mission-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.7em;
  font-weight: 600;
  color: #111;
  margin: 0 0 12px 0;
  line-height: 1.11;
}
.mission-content .italic {
  font-style: italic;
  letter-spacing: -0.05rem;
  font-family: 'Playfair Display', serif;
}

.mission-content p {
  margin: 0 0 18px 0;
  color: #6d6c6a;
  font-size: 1.1em;
  line-height: 1.6;
  font-weight: 600;

  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
}

.mission-brand {
  margin-top: 10px;
  font-size: 1.1em;
  color: #222;
  background: none;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  letter-spacing: -0.05rem;
}

.mission-brand i {
  font-size: 1.17em;
  color: #111;
}

@media (max-width: 600px) {
  .mission-section {
    max-width: 99vw;
    padding: 24px 7vw 20px 7vw;
  }
  .mission-content h2 { font-size: 1.2em; }
  .mission-icon {
    top: -18px;
    right: -18px;
    padding: 9px;
    border-radius: 20px;
  }
}

/* Get Started Here Section */
.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;
}

.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;
  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: "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;
  }
}

