/* 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;
  }
}


.banner-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: #eeebe5;
    padding: 40px 4vw;
    width: 85%;
    margin: 80px auto 0;
}

.banner-content {
    max-width: 45%;
    min-width: 280px;
}

.social-icons {
    margin-bottom: 16px;
}
.social-icons .fa {
    font-size: 20px;
    color: #222;
    margin-right: 8px;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.social-icons .fa:hover {
    opacity: 0.6;
}

.banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 5.5em !important;
    line-height: 1.05;
    color: #111;
    margin: 0 0 40px 0;
}

.banner-content .italic {
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.05rem;
}

.banner-content p {
    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: 28px;
    width: 90%;
}

.book-call {
  padding: 17px 32px;
  background: #000;
  color: #fff;
  font-size: 1.06em;
  font-weight: 500;
  border-radius: 30px;
  border: none;
  margin-top: 16px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
}

.book-call:hover {
    background: #545454;
}
.banner-image{
    max-width: 40%;
    min-width: 320px;
    align-self: center;
}

.banner-image img {
    width: 320px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

@media (max-width: 1067px) {
    .banner-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 3vw;
    }
    .banner-content {
        max-width: 100%;
        margin: 32px 0;
    }
    .banner-image {
        max-width: 90vw;
        width: 90vw;
    }
    .banner-image img {
        width: 100%;
        height: auto;
    }
    h1 {
        font-size: 2em;
    }
}

@media (max-width: 600px) {
    .banner-container {
        padding: 12px 2vw;
        margin: 50px 10px 0;
        align-items: center;
        width: 100%;
    }
    .banner-image {
        max-width: 90vw !important;
        width: 90vw !important;
        height: 70vh;
        min-height: 500px;
        margin: 0 auto;
    }
    .story-slider {
        height: 100%;
    }
    .story-slider img,
    .story-slider iframe {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    h1 {
        font-size: 1.3em;
    }
    p, .book-call {
        font-size: 0.98em;
    }
}


/* Banner image as story slider */
.banner-image {
  border: 6px solid #fff;
  position: relative;
  width: 100%;
  max-width: 370px; /* desktop max size */
  height: 640px;
  border-radius: 20px;
  overflow-x: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}


.story-slider {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.story-slider img ,.story-slider iframe{
  flex: 0 0 100%; /* each image takes full width */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation buttons inside */
.story-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
}
.story-btn.left { left: 12px; }
.story-btn.right { right: 12px; }

/* Bottom glowing bulb/video icon */
.story-glow {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  z-index: 2;
}
.bulb-square {
  display: flex;
  background: #000;
  border-radius: 16px;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.18);
}
.bulb-square i {
  color: #fff;
  font-size: 30px;
  filter: drop-shadow(0 0 4px #fff);
}

@keyframes glow {
  from { box-shadow: 0 0 5px #fcdf00, 0 0 15px #fcdf00; }
  to   { box-shadow: 0 0 20px #fcdf00, 0 0 40px #fcdf00; }
}

.social-slider {
  width: 160px; /* enough space for ~3 icons */
  overflow: hidden;
  margin-bottom: 30px;
}
.social-track {
  display: flex;
  transition: transform 0.5s ease;
}
.social-track a {
  flex: 0 0 50px; /* fixed width per icon */
  font-size: 22px;
  color: #222;
  text-align: center;
  line-height: 40px;
}

/* Brands */

.brands-bar {
  display: flex;
  align-items: center;
  margin: 20px auto;
  gap: 48px;
  background: #eeebe5;
  padding: 22px 0;
  width: 80%;
  overflow-x: hidden;
}

.brands-info {
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  color: #6d6c6a;
  font-size: 14px;
  min-width: 170px;
  margin-left: 24px;
}

.brands-slider {
  position: relative;
  overflow: hidden;
  flex: 1;
  height: 50px;
}

.track {
  display: flex;
  align-items: center;
  gap: 64px;
  height: 50px;

  /* 👇 continuous scroll */
  animation: scrollBrands 20s linear infinite;
}

.track img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(55%);
  transition: opacity 0.2s, filter 0.2s;
}
.track img:hover {
  opacity: 1;
  filter: none;
}

/* 👇 Keyframes for infinite marquee */
@keyframes scrollBrands {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 520px) {
.brands-bar {
  display: none;
}
}

/* Service */

.services-section {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0 24px 0;
  text-align: center;
}
.services-label {
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  background: #e5e2dc;
  color: #222;
  padding: 10px 16px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.06rem;
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 18px;
}
.services-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.3em;
  color: #111;
  font-weight: 600;
  margin-bottom: 36px;
}
.services-title .italic {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.05rem;
  font-weight: 500;
}
.services-grid {
  display: grid; /* add this */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* adjust per row */
  gap: 10px 20px; /* 10px row-gap, 20px column-gap */
  width: 90%;
  margin: 0 auto;
}

.service-card {
  background: #f6f2eb;
  border-radius: 18px;
  padding: 35px 18px 25px 18px;
  box-shadow: 0 2px 18px rgba(120,106,89,0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: min-content;
}
.service-icon {
  flex: 0 0 50%;
  width: 100%;
  margin-bottom: 22px;
  display: flex;
  text-align: start;
}
.service-icon video {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  background: #eceae2;
}
.service-card h3 {
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  font-size: 25px !important;
  letter-spacing: -0.05rem;
  color: #191919;
  font-weight: 500;
  margin-bottom: 18px;
  text-align: left;
}
.desc-list {
  list-style: none;
  font-size: 1.2em;
  color: #6d6c6a;
  margin: 0 0 0 0;
  padding: 0;
}
.desc-list li {
  margin-bottom: 13px;
}
.pricing-table {
  margin-top: 6px;
  border-collapse: collapse;
  width: 98%;
  font-size: 0.99em;
  color: #353433;
}
.pricing-table td { padding: 5px 0; border: none; }
.pricing-table tr+tr td { border-top: 1px solid #ececec; }
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 23px; }
}
@media (max-width: 971px) {
  .services-section {width: 100%;}
  .services-grid { grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 600px) {
  .services-title { font-size: 2em;}
  .services-grid { grid-template-columns: 1fr; gap: 13px;}
  .service-card { padding: 25px 8px;}
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  width: 90%;
  margin: 0 auto;
  justify-items: center;
}

/* make sure cards don’t stretch oddly */
.service-card {
  width: 100%;
  max-width: 340px;  /* optional fixed max width */
  background: #f5f1eb;
  border-radius: 18px;
  padding: 38px 20px 28px 20px;
  box-shadow: 0 2px 18px rgba(120,106,89,0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.services-btn-wrapper {
    margin-top: 40px;
    text-align: center;  /* center the button */
}

.join-btn {
    display: inline-block;
    outline: none;
    background: #111;
    color: #fff;
    border-radius: 30px;
    font-size: 1em;
    padding: 11px 28px;
    font-family: "Inter", "Inter Placeholder", sans-serif;
    font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.18s, transform 0.18s;
}

.join-btn:hover {
    background: #333;
    transform: translateY(-3px);
}

/* responsive breakpoints */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 23px; }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-title { font-size: 2em; }
  .services-grid { grid-template-columns: 1fr; gap: 13px; }
  .service-card { padding: 25px 8px; }
}


.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 {
  width: 30%;
  background: #eae6dd;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  border-radius: 8px;
  display: inline-block;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.06rem;
  margin-bottom: 10px;
  color: #000;
}

.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.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;
}

.mission-brand {
  margin-top: 10px;
  font-size: 1.4em;
  color: #222;
  background: none;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  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;
  }
}


.result-case {
  display: flex;
  gap: 44px;
  background: transparent;
  border-radius: 19px;
  margin: 45px auto;
  max-width: 85%;
  align-items: center;
  padding: 22px 36px;
}
.result-left {
  flex: 0 0 500px;
  width: 340px;
}
.result-left video {
  background: #fff;
  border-radius: 12px;
  border: 5px solid #fff;
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
}
.result-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0 14px 0;
}
.result-label {
  background: #eae6dd;
  color: #191919;
  border-radius: 7px;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  display: inline-block;
  padding: 10px 16px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.05rem;
  margin-bottom: 18px;
}
.result-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.6em;
  font-weight: 700;
  color: #111;
  margin-bottom: 13px;
  line-height: 1.21;
}
.result-right .italic {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.05rem;
}
.result-right p {
  color: #7a776d;
  font-size: 1.2em;
  line-height: 1.55;
  margin-bottom: 18px;
}
.result-right p strong{
  letter-spacing: 0;
}
.result-numbers {
  display: flex;
  gap: 48px;
  margin-top: 15px;
}
.result-num {
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  font-weight: 600;
  font-size: 3.6rem;
  color: #111;
  letter-spacing: 1px;
  margin-bottom: 2px;
  display: block;
}
.result-num-label {
  font-size: 1.4em;
  color: #222;
  margin-bottom: 5px;
}
.result-num-label .note {
  color: #bbb6ac;
  font-size: 1.2rem !important;
}
/* Responsive */
@media(max-width:900px) {
  .result-case {
    flex-direction: column;
    gap: 22px;
    max-width: 100vw;
    padding: 14px 5vw;
  }
  .result-left { flex:auto; width: 97vw; max-width:360px;}
  .result-left video { height: 210px; }
}

.how-we-work-section {
  width: 85%;
  text-align: center;
  margin: 0 auto;
  padding: 60px 0 48px 0;
  position: relative;
}

.how-label {
  background: #eae6dd;
  color: #222;
  font-size: 16px;
  border-radius: 8px;
  display: inline-block;
  padding: 10px 16px;
  font-size: 17px;
  font-weight: 600;
  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-bottom: 18px;
  margin-top: 8px;
}

.how-we-work-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8em;
  color: #111;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 44px;
  line-height: 1.15;
}

.how-we-work-section .italic {
  font-style: italic;
}

.how-process {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0px;
  position: relative;
}

.process-step {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  max-width: 340px;
  padding: 0 16px;
  position: absolute;
}

.icon-wrap {
  background: #f5f1eb;
  border-radius: 22px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(70,60,40,0.05);
  margin-bottom: 25px;
  font-size: 43px;
  color: #181818;
}

.step-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #131313;
  margin-bottom: 9px;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
}

.step-desc {
  color: #7d7b77;
  font-size: 1.2em;
  max-width: 313px;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  margin-bottom: 26px;
}

.line-animation {
  width: 340px;
  height: 90px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 200px;
}

.animated-line {
  stroke: #d3d1c8;
  stroke-width: 5;
  opacity: 0.5;
  fill: none;
}

.dot-layer {
  position: absolute;
  top: 185px;
  left: 8%;
  width: 84%;
  height: 80px;
  pointer-events: none;
}

#dot {
  filter: drop-shadow(0 0 10px #181818) drop-shadow(0 0 20px #000);
}

@media (max-width: 1150px) {
  #processSvg{
    display: none;
  }
  .how-we-work-section h2 {
    font-size: 2.3em;
  }
  .how-process {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .line-animation {
    margin: 0 auto 24px auto;
  }
}

@media (max-width: 600px) {
  .process-step {
    min-width: 170px;
    max-width: 98vw;
    padding: 0 6vw;
  }
  .step-title { font-size: 1.1em; }
}

/* SVG line behind content */
#processSvg {
  position: absolute;
  top: -90px;   /* adjust vertically */
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 0;  /* behind */
}

/* Steps above the line */
.process-step {
  position: relative;
  flex: 1;
  text-align: center;
  z-index: 1;  /* above */
}


.difference-section {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: center;
  padding-bottom: 48px;
}
.diff-label {
  background: #eae6dd;
  color: #222;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  display: inline-block;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.05rem;
  margin-bottom: 18px;
}
.difference-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.7em;
  font-weight: 700;
  color: #111;
  margin: 22px 0 32px 0;
  line-height: 1.16;
}
.italic { font-style: italic; font-family: 'Playfair Display', serif; letter-spacing: -0.05rem;}
.diff-cols {
  display: flex;
  justify-content: center;
  gap: 38px;
  margin-top: 12px;
}
.diff-col {
  background: #f7f4ee;
  border-radius: 16px;
  padding: 28px 25px 20px 25px;
  min-width: 280px;
  max-width: 370px;
  flex: 1 1 320px;
  box-shadow: 0 2px 15px #ddd7bb34;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.diff-col.selected {
  border: 2.3px solid #111;
}
.diff-col-label {
  font-size: 1.1em;
  color: #b8b5ab;
  font-weight: 600;
  margin-bottom: 14px;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  display: flex;
  align-items: center;
  letter-spacing: -0.05rem;
  gap: 9px;
}
.diff-col.selected .diff-col-label {
  color: #191919;
  font-size: 1.2em;
}
.bulb {
  font-size: 22px;
  color: #111;
}
.diff-list {
  font-size: 1.06em;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  list-style: none;
  margin: 0; padding: 0;
}
.diff-list li {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  text-align:left;
  gap: 11px;
  color: #45413f;
}
.diff-list li i.fa-times {
  color: #bda69b;
  font-size: 1.12em;
}
.diff-list li i.fa-check {
  color: #37bd57;
  font-size: 1.13em;
}
@media (max-width: 800px) {
  .diff-cols { flex-direction: column; gap: 18px; align-items: center;}
  .difference-section { padding: 0 5vw 34px 5vw;}
}


.faq-section {
  max-width: 600px;
  margin: 40px auto 0 auto;
  position: relative;
  background: #f5f1eb;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(120,106,89,0.10);
  padding: 38px 30px 23px 30px;
}
.faq-icon {
  position: absolute;
  top: -32px; right: 32px;
  background: #111;
  padding: 18px;
  border-radius: 21px;
  box-shadow: 0 2px 16px #19191914;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.faq-icon i {
  color: #fff;
  font-size: 27px;
}
.faq-label {
  background: #eae6dd;
  color: #111;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  border-radius: 8px;
  display: inline-block;
  padding: 10px 16px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.05rem;
  margin-bottom: 12px;
}
.faq-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5em;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px 0;
  line-height: 1.13;
}
.faq-content .italic {
  font-style: italic;
  letter-spacing: -0.05rem;
  font-family: 'Playfair Display', serif;
}
.faq-list {
  margin-top: 24px;
}
.faq-item {
  margin-bottom: 16px;
}
.faq-q {
  background: #ebe7e2;
  color: #25201c;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  border-radius: 9px;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.09em;
  font-weight: 500;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.18s;
}
.faq-q:hover { background: #e0dbd4;}
.plus {
  background: #131311;
  color: #fff;
  width: 28px; height: 28px;
  display: flex;
  align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 1.33em;
}
.faq-a {
  display: none;
  background: none;
  color: #6d6c6a;
  font-size: 1.01em;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  margin-top: 8px;
  margin-bottom: 4px;
  padding-left: 2px;
  border-radius: 0 0 11px 11px;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .plus { background:#fc4c00; content: "-"; }
@media (max-width: 600px) {
  .faq-section { max-width: 98vw; padding: 17px 4vw 13px 4vw;}
  .faq-content h2 { font-size: 1.2em; }
  .faq-icon { top: -16px; right: -16px;}
}



.cta-section {
  max-width: 820px;
  margin: 100px auto;
  position: relative;
  background: #f5f1eb;
  border-radius: 21px;
  box-shadow: 0 4px 22px rgba(120,106,89,0.08);
  padding: 54px 40px 48px 40px;
  text-align: center;
}
.cta-icon {
  position: absolute;
  top: -38px; left: 50%; transform: translateX(-50%);
  background: #111;
  border-radius: 19px;
  padding: 18px;
  box-shadow: 0 2px 16px #19191915;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.cta-icon i {
  color: #fff;
  font-size: 32px;
}
.cta-label {
  background: #eae6dd;
  color: #111;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  border-radius: 8px;
  display: inline-block;
  padding: 10px 16px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.05rem;
  margin-bottom: 17px;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.7em;
  font-weight: 700;
  color: #111;
  line-height: 1.18;
  margin: 0 0 13px 0;
}
.cta-content .italic {
  font-style: italic;
  letter-spacing: 0.5px;
}
.cta-desc {
  color: #86837c;
  font-size: 1.1em;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  margin-bottom: 24px;
}
.cta-btn {
  display: inline-block;
  margin: 0 auto;
  padding: 16px 54px;
  font-size: 1.16em;
  background: #111;
  color: #fff;
  border-radius: 34px;
  border: none;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s;
  box-shadow: 0 2px 14px #0002;
}
.cta-btn:hover {
  background: #353234;
}
@media (max-width: 600px) {
  .cta-section { max-width: 98vw; padding: 27px 5vw 20px 5vw;}
  .cta-icon { top: -21px; padding: 11px;}
  .cta-content h2 { font-size: 1.5em; }
  .cta-btn { padding: 13px 19vw;}
}


.team-section {
  max-width: 1000px;
  margin: 52px auto 0 auto;
  text-align: center;
}
.team-label {
  background: #eae6dd;
  color: #222;
  display: inline-block;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.05rem;
  margin-bottom: 19px;
  margin-top: 10px;
}
.team-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8em;
  color: #111;
  font-weight: 700;
  margin: 20px 0 40px 0;
  line-height: 1.13;
}
.team-section .italic {
  font-style: italic;
  letter-spacing: 1.5px;
}


.team-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  margin-bottom: 68px;
  min-height: 82px;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px 0;
}/* Team Icons */
.team-icon {
    font-size: 2.5rem;        /* icon size */
    color: #141414;           /* icon color */
    margin-bottom: 10px;      /* space between icon and team name */
    transition: transform 0.3s, color 0.3s; /* hover effect */
}

.team-member:hover .team-icon {
    color: #fc4c00;           /* icon hover color */
    transform: scale(1.2);    /* subtle zoom on hover */
}

/* Adjust team list for responsive devices */
@media (max-width: 1100px) {
  .team-list {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 38px;
  }
}
.team-role {
  font-size: 1.35em;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 8px;
}
.join-card {
  background: #f5f1eb;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 27px;
  margin: 0 auto;
  max-width: 600px;
  box-shadow: 0 4px 24px #ddd7bb05;
  text-align: left;
}
.join-title {
  font-weight: 700;
  font-size: 1.05em;
  color: #23221c;
  margin-bottom: 5px;
}
.join-desc {
  color: #96928a;
  font-size: 0.96em;
  margin-bottom: 8px;
}
.join-btn {
  margin-left: auto;
  display: inline-block;
  outline: none;
  background: #111;
  color: #fff;
  border-radius: 30px;
  font-size: 1em;
  padding: 11px 28px;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-feature-settings: "blwf" on, "cv09" on, "cv03" on, "cv04" on, "cv11" on;
  text-decoration: none;
  font-weight: 500;
  margin-top:4px;
  transition: background 0.18s;
}
.join-btn:hover {
  background: #353234;
}
@media (max-width: 1100px) {
  .team-list { flex-direction: column; gap: 32px; margin-bottom: 38px;}
}


.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;
}

/* 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;
  }
}


    /* 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: 10000;
      padding: 20px;
      overflow-y: auto;
    }

    /* Popup Box */
    .popup-form {
      background-color: #eeebe5;
      border-radius: 15px;
      padding: 30px 25px;
      max-width: 500px;
      width: 100%;
      position: relative;
      z-index: 10001;
      margin: 20px auto;
      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;
      z-index: 10002;
    }

    /* 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;
    }

    /* Phone Input with Country Code for Popup */
    .popup-form .phone-input-wrapper {
      display: flex;
      gap: 8px;
      width: 100%;
      margin-bottom: 20px;
      align-items: stretch;
    }

    .popup-form .country-code-select {
      background: none;
      border: none;
      border-bottom: 1px solid #ccc;
      padding: 9px 30px 9px 4px;
      font-size: 13px;
      color: #333;
      cursor: pointer;
      outline: none;
      min-width: 100px;
      flex-shrink: 0;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23333' d='M5 7L1 3h8z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 8px center;
    }

    .popup-form .phone-number-input {
      flex: 1;
      min-width: 0;
      margin-bottom: 0;
    }

    /* reCAPTCHA Styling for Popup */
    .popup-form .g-recaptcha {
      margin: 15px 0;
      display: flex;
      justify-content: center;
      transform: scale(0.85);
      transform-origin: 0 0;
    }

    /* Searchable Country Code Dropdown for Popup */
    .popup-form .country-select-wrapper {
      position: relative;
      min-width: 110px;
      flex-shrink: 0;
    }

    .popup-form .country-selected-display {
      background: none;
      border: none;
      border-bottom: 1px solid #ccc;
      padding: 9px 25px 9px 4px;
      font-size: 12px;
      color: #333;
      cursor: pointer;
      outline: none;
      display: flex;
      align-items: center;
      min-height: 38px;
    }

    .popup-form .country-selected-display:hover {
      border-bottom: 1px solid #999;
    }

    .popup-form .country-selected-display::after {
      content: '▼';
      position: absolute;
      right: 8px;
      font-size: 8px;
      color: #666;
      pointer-events: none;
    }

    .popup-form .country-search-input {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 9px 25px 9px 4px;
      border: none;
      border-bottom: 1px solid #999;
      background: #fff;
      font-size: 12px;
      color: #333;
      outline: none;
      display: none;
      z-index: 10;
    }

    .popup-form .country-select-wrapper.active .country-search-input {
      display: block;
    }

    .popup-form .country-select-wrapper.active .country-selected-display {
      display: none;
    }

    .popup-form .country-dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border: 1px solid #ddd;
      border-top: none;
      max-height: 250px;
      overflow-y: auto;
      z-index: 1000;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      display: none;
    }

    .popup-form .country-select-wrapper.active .country-dropdown {
      display: block;
    }

    .popup-form .country-dropdown-item {
      padding: 10px 8px;
      cursor: pointer;
      border-bottom: 1px solid #f0f0f0;
      transition: background 0.2s;
      font-size: 11px;
    }

    .popup-form .country-dropdown-item:hover {
      background: #f5f5f5;
    }

    .popup-form .country-dropdown-item:last-child {
      border-bottom: 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;
        margin: 10px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
      }
      .popup-overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 80px;
      }
      .book-btn {
        font-size: 14px;
      }
    }