@font-face {
  font-family: "RedHatDisplay";
  src: url("../assets/fonts/RedHatDisplay-VariableFont_wght_0.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MyriadPro";
  src: url("../assets/fonts/MyriadPro-Regular_0.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  /* Body / paragraph font */
  --font-default: "RedHatDisplay", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;

  /* Heading font */
  --font-primary: "MyriadPro", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;

  /* Secondary (buttons/labels etc.) – keep as Red Hat too */
  --font-secondary: "RedHatDisplay", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}


/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;   /* stops any sideways scroll */
}

body {
  font-family: var(--font-default);
  color: var(--color-default);
  background: #f6f2ea;
  font-weight: 300;
}
body, p, span, li, .bodycopy {
  font-family: var(--font-default);
}
a {
  color: #d9b059;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 .headline {
  font-family: var(--font-primary);
  font-weight: 600;
}
a:hover {
  color: #ec2727;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 40px 0;
}

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-primary);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
 font-family: var(--font-default);
}

.section-header p span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #ec2727;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: transparent;
  transition: all 0.4s ease;
  z-index: 997;
  height: 70px;
  border-bottom: none;
}

@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

/* .header.sticked {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
} */


.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: var(--color-primary);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color: #fff;
  background: rgba(206, 18, 18, 0.8);
}

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 90px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #ffffff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  min-height: 500px;
}

.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-primary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-primary); 
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(206, 18, 18, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  padding: 30px;
  background: var(--color-primary);
  color: #fff;
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.why-us .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-primary); 
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/stats-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .stats-counter {
    background-attachment: fixed;
  }
}

.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 700;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-primary); 
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--color-primary);
}

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-primary); 
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--font-default);
  color: #8d8d9b;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-primary);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 10px 0;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f05656;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
}

.events .event-item .price {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

@media (min-width: 1200px) {
  .events .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d7;
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}

.chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 37, 41, 0.4);
}

.chefs .chef-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.chefs .chef-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.chefs .chef-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: rgba(55, 55, 63, 0.04);
}

.book-a-table .php-email-form {
  padding: 40px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-a-table .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.book-a-table .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.book-a-table .php-email-form input {
  padding: 12px 15px;
}

.book-a-table .php-email-form textarea {
  padding: 12px 15px;
}

.book-a-table .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 60px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid var(--color-primary);
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(55, 55, 63, 0.7);
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 48px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* ===============================
   FOOTER
=================================*/
.footer {
  background: linear-gradient(90deg, #0d251c 0%, #174534 100%);
  padding: 25px 0;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.footer .rera {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer .copyright {
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 0.4px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer a:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 18px 10px;
  }

  .footer .rera {
    font-size: 12px;
  }

  .footer .copyright {
    font-size: 10px;
  }
}

/* Base state: hidden & slightly moved */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}

/* Once visible */
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variants */
[data-animate="fade-up"] {
  transform: translateY(24px);
}

[data-animate="fade-down"] {
  transform: translateY(-24px);
}

[data-animate="fade-left"] {
  transform: translateX(24px);
}

[data-animate="fade-right"] {
  transform: translateX(-24px);
}

/* Slightly slower for “hero” sections if you want */
[data-animate].is-visible[data-animate-speed="slow"] {
  transition-duration: 1.1s;
}
/*CUSTOM CSS*/
@media (max-width: 600px) {
  .container {
    padding: 10px !important;
  }
}
.hero {
  display: flex;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background-color: #f6f0e5;
}
.hero-left {
  flex: 0 0 45%;
  background: #E0E5DD;
  color: #3a3430;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.hero-left::before,
.hero-left::after {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid #526A61;
  pointer-events: none;
}
.hero-left::after {
  inset: 42px;
  opacity: 0.4;
}
.hero-content {
  max-width: 520px;
  text-align: center;
  position: relative;
  z-index: 2;
  font-family: var(--font-primary); 
}
.logo-box {
  width: 60px;
  height: 60px;
  border: 1.5px solid #526A61;
  transform: rotate(45deg);
  margin: 0 auto 18px;
  position: relative;
}
.logo-box span {
  position: absolute;
  inset: 9px;
  border: 1.5px solid #526A61;
}
.brand-title {
  letter-spacing: 0.18em;
  font-size: 20px;
  color: #526A61;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.brand-sub {
  font-family: var(--font-primary); 
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #303030;
  margin: 0 0 14px;
}
.hero-content h4 {
  display: inline-block;
  margin: 10px 0 18px;
  padding: 9px 32px;
  border: 1px solid #c79a41;
  border-radius: 4px;
  background-color: rgba(199, 154, 65, 0.08);
  color: #c79a41;
  font-family: var(--font-primary); 
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-content h5 {
  font-family: var(--font-primary); 
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin: 6px 0 8px;
  color: #2f2f2f;
}
.hero-content h5 span {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: #8a8177;
}
.btn-primary {
  display: inline-block;
  margin-top: 14px;
  margin-bottom: 18px;
  padding: 11px 40px;
  border-radius: 4px;
  /* border: 1px solid #c79a41; */
  background: linear-gradient(90deg,#0d251c 0%,#174534 100%);
  color: #f6f0e5;
  text-decoration: none;
  font-family: var(--font-primary); 
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
    color: #fff;
} 
.hero-right {
  position: relative;
  overflow: hidden;
  flex: 1;
}

/* Image treatment (common for both) */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-mobile {
  display: none;
}
.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-right-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 40px;
}
.hero-right-overlay h2 {
  font-family: var(--font-primary); 
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 30px;
}
.hero-right-overlay h2 span {
  display: block;
  margin-top: 10px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #fff; /* warm gold */
}
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }
  .hero-left,
  .hero-right {
    flex: 1 1 auto;
    min-height: 320px;
  }
  .hero-left {
    padding: 40px 28px;
  }
  .hero-content {
    text-align: center;
  }
}
.eoi-inline-text {
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
  color: #8b7a63;
}
@media (max-width: 768px) {
  .eoi-inline-text {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    letter-spacing: 0.14em;
  }
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero-right {
    order: -1;
    min-height: 320px;
  }
  .hero-img-desktop {
    display: none;
  }
  .hero-img-mobile {
    display: block;
  }
  .hero-right-overlay h2 {
    font-size: 20px;
    letter-spacing: 0.12em;
    position: relative;
    top: -16%;
    color: #000;
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-left::before,
  .hero-left::after {
    border: none;
    inset: 0;
  }
}
.mobile-cta-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-cta-wrapper.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mobile-cta-btn {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 200px;
  max-width: 260px;
  padding: 10px 14px 10px 20px;
  border-radius: 999px;
  border: 1px solid #526A61;
  background: linear-gradient(90deg,#0d251c 0%,#174534 100%);
  box-shadow:
    0 5px 14px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.mobile-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg,#0d251c 0%,#174534 100%);
  transform: skewX(-25deg);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}
.mobile-cta-btn:hover::before {
  opacity: 1;
  transform: translateX(250%) skewX(-25deg);
}
.mobile-cta-text {
  font-family: var(--font-primary); 
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
.mobile-cta-circle {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffeaa2, #d38c13 70%, #a25f06 100%);
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.5),
    inset 0 0 0 1.5px rgba(201, 125, 16, 0.7);
}
.mobile-cta-arrow {
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.mobile-cta-btn:active {
  transform: scale(0.97);
}
@media (min-width: 769px) {
  .mobile-cta-wrapper {
    display: none !important;
  }
}
 @media (max-width: 576px) {
  .cnd-header-logo-big {
    height: 42px;
  }
  .cnd-header-logo-wrap {
    margin-top: -4px;
  }
}
.cnd-header-logo-wrap {
  display: flex;
  align-items: center;
  overflow: visible;
  margin-top: -8px;
}
.cnd-header-logo-big {
  height: 70px;
  width: auto;
}
.cnd-header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  /* background: rgba(248, 240, 229, 0.97); */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.cnd-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 22px; /* thinner height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cnd-header-logo img {
  display: block;
  height: 55px;
  width: auto;
}
.cnd-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cnd-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #3d3327;
  text-decoration: none;
  white-space: nowrap;
}
.cnd-header-phone-icon {
  font-size: 16px;
}
.cnd-header-cta {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 9px 22px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg,#0d251c 0%,#174534 100%);
  color: #fff;
  box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.cnd-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
}
.cnd-header-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
}
.cnd-main-offset {
  padding-top: 10px;
}
@media (max-width: 576px) {
  .cnd-header-inner {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .cnd-header-actions {
    flex-direction: row !important;
    justify-content: flex-end !important;
    width: auto !important;
    gap: 6px !important;
  }
  .cnd-header-cta {
    display: none !important;
  }
  .cnd-header-phone {
    margin-left: auto !important;
    font-size: 15px;
    font-weight: 600;
  }
}
/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .cnd-header-inner {
    padding: 8px 16px;
    max-width: 100%;
  }
  .cnd-header-logo img {
    height: 28px;
  }
  .cnd-header-cta {
    padding: 8px 18px;
    font-size: 12px;
  }
}
@media (max-width: 576px) {
  .cnd-header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 14px;
    gap: 6px;
  }
  .cnd-header-actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }
  .cnd-header-phone {
    font-size: 13px;
  }
  .cnd-header-cta {
    flex: 0 0 auto;
    padding: 7px 16px;
    font-size: 11px;
  }
  .cnd-main-offset {
    padding-top: 70px;
  }
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.75)
  );
  z-index: 1;
}
.welcome{
  font-size: 14px;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.head-row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 35px;
}
.head-row h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
}
.content-row {
  display: flex;
  align-items: flex-start;
}
.left-side,
.right-side {
  width: 48%;
}
.left-side {
  padding-right: 40px;
}
.right-side {
  padding-left: 40px;
}
.vertical-divider {
  width: 1px;
  min-height: 180px;
  background: rgba(255,255,255,0.6);
  margin: 0 30px;
}
.left-grid {
  display: flex;
  gap: 60px;
}
.col {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.item {
  font-size: 18px;
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}
.item span,
.item small {
  font-size: 14px;
  opacity: 0.85;
}
.item::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  color: #fff;
}
.unit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.unit-list li {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
  padding-left: 22px;
  position: relative;
}
.unit-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  color: #fff;
}
.bottom-divider {
  margin-top: 40px;
  height: 1px;
  background: rgba(255,255,255,0.45);
}
#location{
  background: linear-gradient(
  180deg,
  #3d3d3d,
  #2f2f2f
);
}
.nav-link {
  color: #fff;
}
.project-metrics-6up__card--units {
  padding: 22px 24px 20px;
}
.project-metrics-6up__card--units .project-metrics-6up__primary {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.project-metrics-6up__units-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #777777;
}
.project-metrics-6up__units-line span {
  position: relative;
  padding: 0 8px;
  white-space: nowrap;
}
.project-metrics-6up__units-line span::after {
  content: "|";
  position: absolute;
  right: -4px;
  top: 0;
  color: #d1c4a5; /* soft beige-gold separator */
}
.project-metrics-6up__units-line span:last-child::after {
  content: "";
}
  .project-metrics-6up {
    background-color: #f6f2ea;
    padding: 40px 0px;
    padding-top: 20px;
  }
  .project-metrics-6up__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .project-metrics-6up__card {
    background-color: #E0E5DD;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 20px 0px;
    flex: 1 1 calc(16.666% - 20px);
    min-width: 180px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border-radius: 18px;
  }
  .project-metrics-6up__card:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }
  .project-metrics-6up__primary {
    font-family: var(--font-primary); 
    font-size: 2rem;
    line-height: 1.1;
    color: #222;
    margin-bottom: 8px;
  }
  .project-metrics-6up__label {
    font-family: var(--font-primary); 
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9b9b9b;
  }
  .project-metrics-6up__details {
    font-family: var(--font-primary); 
    font-size: 0.8rem;
    line-height: 1.6;
    color: #666;
    margin-top: 12px;
    text-align: center;
  }
  .project-metrics-6up__card--stacked .project-metrics-6up__primary {
    font-size: 1.6rem;
  }
  @media (max-width: 992px) {
    .project-metrics-6up__card {
      flex: 1 1 calc(33.333% - 16px);
    }
  }
  @media (max-width: 640px) {
    .project-metrics-6up__card {
      flex: 1 1 calc(50% - 12px);
    }
  }
.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin: 0;
    padding: 0;

    /* Desktop layout: L-R pairs */
    grid-template-areas:
      "img1 text1"
      "text2 img2"
      "img3 text3"
      "text4 img4";
  }
  .amenities-grid__item {
    height: 420px;
    margin: 0;
    padding: 0;
  }
  .img-1 { grid-area: img1; }
  .img-2 { grid-area: img2; }
  .img-3 { grid-area: img3; }
  .img-4 { grid-area: img4; }
  .amenities-grid__text--amenities { grid-area: text1; }
  .amenities-grid__text--location   { grid-area: text2; }
  .amenities-grid__text--roi        { grid-area: text3; }
  .amenities-grid__text--community  { grid-area: text4; }
  .amenities-grid__img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .img-1 { background-image: url('../img/3-acres.webp'); }
  .img-2 { background-image: url('../img/scottish-arch.webp'); }
  .img-3 { background-image: url('../img/4-ch.png'); }
  .amenities-grid__text {
    background: #f6f2ea;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-primary); 
  }
  .amenities-grid__text h2,
  .amenities-grid__text h3 {
    font-family: var(--font-primary); 
    margin: 0 0 16px;
    color: #2f2620;
  }
  .amenities-grid__text h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .amenities-grid__text h3 {
    font-size: 32px;
    font-weight: 600;
  }
  .amenities-grid__text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #6b6259;
    margin: 0;
  }
  @media (max-width: 900px) {
    .amenities-grid {
      grid-template-columns: 1fr;
      grid-template-areas:
        "img1"
        "text1"
        "img2"
        "text2"
        "img3"
        "text3"
        "img4"
        "text4";
    }
    .amenities-grid__item {
      height: 380px;
    }
  }
  @media (max-width: 600px) {
    .amenities-grid__item {
      height: 225px;
    }
    .amenities-grid__text {
      padding: 0;
    }
  }
.eoi-luxury-section {
  background: linear-gradient(180deg, #f7f3eb, #fbf8f2);
}
.eoi-luxury-card {
  margin: auto;
  padding: 40px 60px;
  text-align: center;
  background: #fffaf2;
  /* border-radius: 18px; */
  position: relative;
}
.eoi-luxury-card::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle at center,
    rgba(210,162,74,0.18),
    transparent 70%
  );
  z-index: -1;
}
.eoi-accent-line {
  display: block;
  width: 80px;
  height: 3px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg,#0d251c 0%,#174534 100%);
  border-radius: 10px;
}
.eoi-heading {
  font-family: var(--font-primary); 
  font-size: 30px;
  color: #1f1f1f;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.eoi-subtext {
  font-size: 12px;
  letter-spacing: 1px;
  color: #6b6b6b;
  margin-bottom: 30px;
}
.eoi-luxury-btn {
  padding: 12px 30px;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg,#0d251c 0%,#174534 100%);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
  transition: all 0.35s ease;
}
.eoi-luxury-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
}
@media (max-width: 768px) {
  .eoi-luxury-card {
    padding: 60px 30px;
  }
  .eoi-heading {
    font-size: 32px;
  }
}
.clubhouse-hero {
    position: relative;
    min-height: 75vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-image: url("../img/clubhouse.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #ffffff;
  }
  .clubhouse-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.05)
    );
    pointer-events: none;
  }
  .clubhouse-hero__content {
    position: relative;
    padding: 80px 8vw;
  }
  .clubhouse-hero__title {
    margin: 0 0 16px;
    font-family: var(--font-primary); 
    font-weight: 500;
    font-size: 3.2rem;
    line-height: 1.1;
  }
  .clubhouse-hero__subtitle {
    margin: 0 0 28px;
    font-family: var(--font-primary); 
    font-style: italic;
    font-weight: 400;
    font-size: 1.4rem;
    color: #f1e0c4; /* warm gold-beige like the reference */
  }
  .clubhouse-hero__body {
    margin: 0;
    font-family: var(--font-primary); 
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 720px;
  }
  @media (max-width: 1024px) {
    .clubhouse-hero__title {
      font-size: 2.6rem;
    }
    .clubhouse-hero__subtitle {
      font-size: 1.25rem;
    }
    .clubhouse-hero__body {
      font-size: 0.98rem;
    }
  }
  @media (max-width: 768px) {
    .clubhouse-hero {
      align-items: flex-end;
    }
    .clubhouse-hero__content {
      padding: 60px 6vw 40px;
    }
    .clubhouse-hero__title {
      font-size: 2.2rem;
    }
    .clubhouse-hero__subtitle {
      font-size: 1.1rem;
    }
    .clubhouse-hero__body {
      font-size: 0.95rem;
    }
  }
  .feature-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); 
  z-index: 1;
  transition: background 0.5s ease;
}
.feature-cards-wrap {
  display: flex;
  width: 100%;
  height: 420px;
  overflow: hidden;
  font-family: var(--font-primary); 
}
.feature-card {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
}
.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.6s ease, transform 0.6s ease;
}
.feature-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  letter-spacing: 1px;
  font-weight: 700;
  z-index: 2;
  text-align: center;
  padding: 0 10px;
  transition: opacity 0.4s ease;
}
@media (max-width: 992px) {
  .feature-cards-wrap {
    flex-wrap: wrap;
    height: auto;
  }
  .feature-card {
    flex: 0 0 50%;
    min-height: 280px;
  }
  .feature-card img {
    height: 100%;
  }
  .feature-title {
    font-size: 26px;
  }
  .feature-hover p {
    font-size: 15px;
    max-width: 240px;
  }
}
@media (max-width: 600px) {
  .feature-cards-wrap {
    flex-direction: column;       /* stack */
    height: auto;
  }
  .feature-card {
    flex: 0 0 auto;
    min-height: 200px;
  }
  .feature-card img {
    height: 100%;
  }
  .feature-title {
    font-size: 22px;
    letter-spacing: 1px;
    padding: 0 16px;
  }
  .feature-hover {
    padding: 24px;
  }
  .feature-hover p {
    font-size: 14px;
    max-width: 90%;
  }
}
.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
}
.image-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .image-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .image-strip img {
    height: 220px;
  }
}
@media (max-width: 600px) {
  .image-strip {
    grid-template-columns: 1fr;
  }
  .image-strip img {
    height: 200px;  
  }
  .side-buttons {
    display: none;
  }
  .project-metrics-6up__units-line {
      font-size: 11px;
  }
}
.enquiry-modal-scope {
  font-family: var(--font-primary); 
}
.enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  z-index: 9999;
}
.enquiry-overlay.active {
  opacity: 1;
  visibility: visible;
}
.enquiry-modal {
  width: 560px;
  max-width: 92%;
  background: #E0E5DD;
  border-radius: 16px;
  padding: 28px;
  transform: scale(0.88) translateY(30px);
  opacity: 0;
  transition: all .45s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.enquiry-overlay.active .enquiry-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.enquiry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.enquiry-header h2 {
  font-size: 22px;
  margin: 0;
  color: #222;
  position: relative;
}
.enquiry-header h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background: #526A61;
  border-radius: 2px;
}
.enquiry-close {
  font-size: 26px;
  cursor: pointer;
  color: #526A61;
}
.enquiry-field {
  position: relative;
  margin-bottom: 16px;
}
.enquiry-field input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 15px;
  background: #f7f7f7;
  color: #333;
  box-sizing: border-box;
}
.enquiry-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 18px;
  color: #777;
}
.enquiry-row {
  /*display: flex;*/
  gap: 16px;
  flex-wrap: wrap;
}
.enquiry-row .enquiry-field {
  flex: 1;
}
.enquiry-phone-field .enquiry-icon {
  top: 22px;
}
.enquiry-phone-field .phone-row {
  display: flex;
  gap: 10px;
  box-sizing: border-box;
}
.phone-country {
  width: 20%;
  border-radius: 10px;
  border: none;
  outline: none;
  background: #f7f7f7;
  font-size: 13px;
  padding: 12px 10px;
  color: #333;
  font-family: var(--font-default);
  box-sizing: border-box;
}
.phone-number {
  flex: 1;
  border-radius: 10px;
  border: none;
  outline: none;
  background: #f7f7f7;
  font-size: 15px;
  padding: 14px 16px;
  color: #333;
  font-family: var(--font-default);
  box-sizing: border-box;
}
.enquiry-submit {
  margin-top: 20px;
  padding: 14px 30px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg,#0d251c 0%,#174534 100%);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
@media (max-width: 480px) {
  .phone-country {
    width: 25%;
  }
}
 .budget-select{
  width: 100%;
  padding: 14px 16px 14px 44px;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 15px;
  background: #f7f7f7;
  color: #333;
  font-family: var(--font-default);
  box-sizing: border-box;
}

/* Wrapper */
  .eoi-why {
    padding: 48px 16px;
  }

  .eoi-why__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .eoi-why__heading {
    text-align: center;
    font-size: 30px;
    margin: 0 0 24px;
  }

  /* Card */
  .eoi-why__card {
    background: #E0E5DD;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    padding: 24px 24px 28px;
  }

  /* Rows */
  .eoi-why__row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 18px;
    align-items: flex-start;
  }

  .eoi-why__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(201, 164, 91, 0.5); /* soft gold */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbf8f1;
  }

  .eoi-why__icon span {
    font-size: 22px;
  }

  .eoi-why__content {
    padding-top: 4px;
  }

  .eoi-why__title {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
  }

  .eoi-why__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .eoi-why__divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 18px 0;
  }

  /* Footer CTA */
  .eoi-why__footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .eoi-why__btn {
    padding: 12px 32px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    background: #2e843a;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(46, 132, 58, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease,
      opacity 0.1s ease;
  }

  .eoi-why__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(46, 132, 58, 0.35);
  }

  .eoi-why__btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(46, 132, 58, 0.24);
    opacity: 0.96;
  }

  /* Responsive */
  @media (max-width: 640px) {
    .eoi-why {
      padding: 36px 12px;
    }

    .eoi-why__heading {
      font-size: 24px;
    }

    .eoi-why__card {
      padding: 20px 16px 24px;
    }

    .eoi-why__row {
      grid-template-columns: auto minmax(0, 1fr);
      column-gap: 14px;
    }
  }
  
  /* Center CTA container */
.eoi-simple__cta {
  margin-top: 32px;
  text-align: center;
}
/* CTA button styling */
.eoi-simple__cta-btnn {
      border: none;
    outline: none;
    cursor: pointer;
    padding: 9px 22px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(90deg,#0d251c 0%,#174534 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

/* Hover effect */
.eoi-simple__cta-btnn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
}
/* CTA button styling */
.eoi-simple__cta-btn {
      border: none;
    outline: none;
    cursor: pointer;
    padding: 9px 22px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(90deg,#0d251c 0%,#174534 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

/* Hover effect */
.eoi-simple__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
}

/* Active effect */
.eoi-simple__cta-btn:active {
  transform: translateY(0px);
  box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
}
  .eoi-simple__select {
  width: 100%;
  padding: 20px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 15px;
  background: #faf7f0;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.eoi-simple__select:focus {
  border-color: #b8860b;
  box-shadow: 0 0 0 1px rgba(184, 134, 11, 0.18);
}

.eoi-simple__size-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: #666;
}
  .eoi-simple {
    padding: 60px 16px;
    background: #f6f2ea;
  }

  .eoi-simple__container {
    max-width: 1120px;
    margin: 0 auto;
    background: linear-gradient(45deg, #c9ebe1, #feecb7);
    border-radius: 24px;
    padding: 28px 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  }

  .eoi-simple__header h2 {
    margin: 0 0 8px;
    font-size: 32px;
    font-weight: 600;
  }

  .eoi-simple__header p {
    margin: 0;
    font-size: 15px;
    color: #000;
    line-height: 1.5;
  }

  .eoi-simple__header strong {
    color: #b8860b;
  }

  .eoi-simple__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
    gap: 28px;
    margin-top: 24px;
  }

  /* LEFT SIDE */
  .eoi-simple__field {
    margin-bottom: 16px;
  }

  .eoi-simple__field label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 6px;
  }

  .eoi-simple__field input[type="number"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 14px;
    outline: none;
    background: #faf7f0;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    -moz-appearance: textfield;
  }

  .eoi-simple__field input[type="number"]::-webkit-outer-spin-button,
  .eoi-simple__field input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .eoi-simple__field input[type="number"]:focus {
    border-color: #b8860b;
    box-shadow: 0 0 0 1px rgba(184, 134, 11, 0.18);
  }

  .eoi-simple__rates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
  }

  .eoi-simple__rate-box {
    background: #faf6ef;
    border-radius: 14px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
  }

  .eoi-simple__rate-label {
    margin: 0 0 2px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #777;
  }

  .eoi-simple__rate-main {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
  }

  .eoi-simple__btn {
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, #b8860b, #cf9f1e);
    color: #fff;
    box-shadow: 0 12px 28px rgba(184, 134, 11, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.1s ease;
  }

  .eoi-simple__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(184, 134, 11, 0.4);
  }

  .eoi-simple__btn:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(184, 134, 11, 0.28);
    opacity: 0.9;
  }

  .eoi-simple__note {
    margin-top: 8px;
    font-size: 11px;
    color: #777;
  }

  /* RIGHT SIDE */
  .eoi-simple__totals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
  }

  .eoi-simple__card {
    border-radius: 16px;
    padding: 14px 14px 12px;
    background: #faf6ef;
    border: 1px solid rgba(0, 0, 0, 0.06);
  }

  .eoi-simple__card--eoi {
    background: #fdf9f0;
  }

  .eoi-simple__card--market {
    background: #f3efe7;
  }

  .eoi-simple__card h3 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 600;
  }

  .eoi-simple__amount {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
  }

  .eoi-simple__sub {
    margin: 3px 0 0;
    font-size: 12px;
    color: #000;
  }

  .eoi-simple__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
  }

  /* Pie chart */
  /* Pie chart */
.eoi-simple__pie-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eoi-simple__pie {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(#e5e7eb 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

/* Slight glossy ring effect */
.eoi-simple__pie::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 55%);
  pointer-events: none;
}

.eoi-simple__pie-center {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.eoi-simple__pie-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #777;
}

.eoi-simple__pie-value {
  font-size: 13px;
  font-weight: 600;
}

.eoi-simple__legend {
  font-size: 12px;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.eoi-simple__legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-right: 6px;
}

.eoi-simple__legend-dot--market {
  background: #fff;
}

.eoi-simple__legend-dot--savings {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

  /* Savings summary */
  .eoi-simple__saving-summary {
    background: #2e843a;
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .eoi-simple__saving-label {
    margin: 0 0 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
  }

  .eoi-simple__saving-main {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
  }

  .eoi-simple__saving-sub {
    margin: 3px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
  }

  /* Responsive */
  @media (max-width: 900px) {
    .eoi-simple__layout {
      grid-template-columns: minmax(0, 1fr);
    }

    .eoi-simple__bottom {
      grid-template-columns: minmax(0, 1fr);
    }

    .eoi-simple__container {
      padding: 24px 18px;
    }
  }

  @media (max-width: 600px) {
    .eoi-simple {
      padding: 40px 0;
    }

    .eoi-simple__header h2 {
      font-size: 22px;
    }

    .eoi-simple__totals {
      grid-template-columns: minmax(0, 1fr);
    }

    .eoi-simple__pie {
      width: 110px;
      height: 110px;
    }
  }
   .eoi-process-section {
  padding: 40px 16px;
}

.eoi-process-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Heading & intro */
.eoi-process-heading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 8px;
}

.eoi-process-subtitle {
  text-align: center;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 16px;
}

.eoi-process-text {
  text-align: center;
  font-size: 15px;
  margin: 4px 0;
}

/* === Timeline layout === */
.eoi-timeline {
  position: relative;
  margin-top: 36px;
  padding: 10px 0 40px;
}

/* Central vertical line */
.eoi-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
  to bottom,
  rgba(82, 106, 97, 0.05) 0%,
  rgba(82, 106, 97, 0.6) 50%,
  rgba(82, 106, 97, 0.05) 100%
);
}

/* Each step row: 3 columns - left card / node / right card */
.eoi-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 32px;
  margin: 24px 0;
}

/* Node (circle) */
.eoi-step-node {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #526A61;
  background: #E0E5DD;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.eoi-step-node-text {
  font-size: 22px;
  font-weight: 600;
  color: #526A61;
}

/* Card */
.eoi-step-card {
  padding: 18px 20px 20px;
  border-radius: 14px;
  border: 1px solid #526A61;
  background: #E0E5DD;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  max-width: 430px;
}

/* Heading inside card */
.eoi-step-heading {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.4;
}

.eoi-step-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #526A61;
  margin-bottom: 2px;
}

.eoi-step-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Placeholder cell (empty side) */
.eoi-step-placeholder {
  height: 1px;
}

/* === Responsive === */
@media (max-width: 900px) {
  .eoi-process-heading {
    font-size: 26px;
  }

  .eoi-timeline::before {
    left: 24px;
    width: 3px;
  }

  .eoi-step {
    grid-template-columns: auto 1fr;
    column-gap: 18px;
  }

  .eoi-step-placeholder {
    display: none;
  }

  .eoi-step-node {
    grid-row: 1;
    grid-column: 1;
    width: 60px;
    height: 60px;
  }

  .eoi-step-card {
    grid-row: 1;
    grid-column: 2;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .eoi-process-section {
    padding: 32px 14px;
  }

  .eoi-process-subtitle {
    font-size: 16px;
  }

  .eoi-step-card {
    padding: 16px 16px 18px;
  }
}
.masterplan-section {
  padding: 50px 5%;
  background: #E0E5DD;
}

.masterplan-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.masterplan-content {
  flex: 1;
}

.masterplan-content h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1f2a1f;
  margin-bottom: 25px;
  line-height: 1.2;
}

.masterplan-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 520px;
}

/* IMAGE SIDE */
.masterplan-image {
  flex: 1;
}

.blur-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.blur-wrapper img {
  width: 100%;
  display: block;
  filter: blur(8px);
  transform: scale(1.05);
  transition: 0.4s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.view-btn {
      border: none;
    outline: none;
    cursor: pointer;
    padding: 9px 22px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(90deg,#0d251c 0%,#174534 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;

}

.view-btn:hover {
  /* background: #3f5c42; */
  transform: translateY(-2px);
}

.enquiry-text {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
}
@media (max-width: 992px) {
  .masterplan-container {
    flex-direction: column;
  }

  .masterplan-content h2 {
    font-size: 26px;
  }

  .masterplan-content p {
    max-width: 100%;
  }
}
.faq-section {
  padding: 40px 16px;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #000;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.faq-question span:first-child {
  flex: 1 1 auto;
  text-align: left;
}

.faq-icon {
  flex: 0 0 auto;
  margin-left: 16px;
  font-size: 20px;
  line-height: 1;
}

/* Animated answer */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
  font-size: 15px;
  line-height: 1.6;
}

/* State when open – JS will add this class */
.faq-answer.open {
  opacity: 1;
  padding-bottom: 18px;
}

/* Small screens */
@media (max-width: 600px) {
  .faq-section {
    padding: 24px 16px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  counter-reset: faq-counter;
}

.faq-item {
  border-bottom: 1px solid #000;
  counter-increment: faq-counter;
}

.faq-question span:first-child::before {
  content: counter(faq-counter, decimal-leading-zero) ". ";
  font-weight: 700;
  margin-right: 8px;
}
.faq-toggle-wrapper {
  text-align: center;
  margin-top: 25px;
}

.faq-toggle-btn {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 9px 22px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
     background: linear-gradient(90deg,#0d251c 0%,#174534 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.faq-toggle-btn:hover {
  transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(33, 78, 41, 0.35);
    color: #fff;
} 
 .location-section {
    background-color: #E0E5DD;
}

.location-section h3 {
    font-size: 32px;
    line-height: 1;
    font-weight: 600;
}

.location-section p {
    font-size: 15px;
    line-height: 1.7;
}

.location-image-wrapper img {
    transition: transform 0.4s ease;
}

.location-image-wrapper img:hover {
    transform: scale(1.03);
}
.country-code{
    width: 20%;
  }
  /* Make th
  .e phone row fields match the other input height */
.eoi-row {
  display: flex;
  gap: 14px;
  align-items: stretch;      /* ensure both boxes are equal height */
  margin-bottom: 14px;       /* single margin for the entire row */
}

/* Remove extra bottom margin on the groups INSIDE the row */
.eoi-row .eoi-input-group {
  margin-bottom: 0;
}

/* Force equal height for both boxes in the phone row */
.eoi-row .eoi-input-group,
.eoi-row .eoi-input-group .eoi-input,
.eoi-row .eoi-input-group .eoi-select {
  height: 50px;              /* match your other big fields */
  box-sizing: border-box;
  width: 100% ;
}

/* If your project uses Bootstrap form-control, cancel its fixed height */
.eoi-input.form-control,
.eoi-select.form-control {
  height: 100%;
}
  /* ===== Modal base ===== */
.eoi-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.eoi-modal.is-open {
  display: flex;
}

.eoi-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Dialog card */
.eoi-modal-dialog {
  position: relative;
  background: #E0E5DD;               /* light grey like screenshot */
  border-radius: 14px;
  padding: 28px 32px 26px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  max-width: 520px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 16px;
  z-index: 1;
}

/* Close (X) */
.eoi-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Title */
.eoi-modal-title {
  margin: 0 0 22px;
  font-size: 24px;
}

/* ===== Form fields ===== */
.eoi-form {
  margin: 0;
}

.eoi-input-group {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dadada;
  margin-bottom: 14px;
}

/* short variant for country code */
.eoi-input-group--short {
  max-width: 120px;
}

.eoi-input-icon {
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  font-size: 18px;
}

.eoi-input,
.eoi-select {
  border: none;
  outline: none;
  flex: 1;
  padding: 12px 14px;
  font-size: 15px;
  background: #ffffff;
  box-sizing: border-box;
}

.eoi-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Row for half-half fields */
.eoi-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

/* Checkbox / consent */
.eoi-consent {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  margin: 4px 0 18px;
}

.eoi-consent input[type="checkbox"] {
  margin-top: 2px;
}

/* Submit button inside modal */
.eoi-submit-btn {
  border: none;
  border-radius: 8px;
  padding: 12px 34px;
  font-size: 16px;
  cursor: pointer;
  background: linear-gradient(90deg,#0d251c 0%,#174534 100%);     /* golden */
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease, transform 0.2s ease,
              box-shadow 0.2s ease;
}

.eoi-submit-btn:hover {
  background: linear-gradient(90deg,#0d251c 0%,#174534 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .eoi-modal-dialog {
    padding: 22px 18px 20px;
  }

  .eoi-modal-title {
    font-size: 20px;
  }

  .eoi-row {
    flex-direction: column;
  }

  .eoi-input-group--short {
    max-width: 100%;
  }
}
 /* Section Background */
.nd-section {
  position: relative;
  padding: 30px;
  background: #f6f2ea;
  overflow: hidden;
}

/* Container */
.nd-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Heading */
.nd-content h2 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 25px;
  /* text-transform: uppercase; */
  text-align: center;
}

/* Lead Paragraph */
.nd-content .lead {
  font-size: 15px;
  line-height: 1.9;
  color: #000;
  /* margin-bottom: 25px; */
  /* max-width: 850px; */
}

/* Body Paragraph */
.nd-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #000;
  /* max-width: 900px; */
}

/* Cards Wrapper */
.nd-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

/* Individual Card */
.nd-card {
  background: #E0E5DD;  
  backdrop-filter: blur(8px);
  padding: 30px 25px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

/* Hover Effect */
.nd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Icon */
.nd-icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* Card Title */
.nd-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: #2d352b;
  margin-bottom: 8px;
}

/* Card Text */
.nd-card span {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .nd-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .nd-content h2 {
    font-size: 25px;
  }
}

@media (max-width: 600px) {
  .nd-cards {
    grid-template-columns: 1fr;
  }

  .nd-section::after {
    display: none;
  }
}
 /* Wrapper for call + whatsapp */
.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;               /* space between icons */
  font-size: 16px;
  font-weight: 500;
}

/* Call + WhatsApp icons */
.header-contact img,
.header-contact svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Vertical separator ( | ) */
.header-contact::after {
  content: "";
  width: 1px;
  height: 20px;
  background: rgba(0,0,0,0.2);  /* light separator line */
}

/* Make icons clickable */
.header-contact a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
