:root {
  --primary: #1E5327;
  --gold: #c9a227;
  --dark: #1a1a1a;
  --cream: #f6f3ec;
  --leaf: #1E5327;
  --muted: #6c757d;
}

* {
  box-sizing: border-box
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: #2b2b2b;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
  font-family: 'Playfair Display', serif
}

.cinzel {
  font-family: 'Cinzel', serif;
  letter-spacing: 2px
}

.text-primary-red {
  color: var(--primary)
}

.text-gold {
  color: var(--gold)
}

.bg-cream {
  background: var(--cream)
}

.bg-dark {
  background: var(--dark)
}

/* ===== Top Bar - Exact image design ===== */
.top-bar {
  background: #1a1a1a;
  color: #cfcfcf;
  font-size: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #222;
}

.top-bar .row {
  --bs-gutter-x: 0
}

.top-bar a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 12px
}

.top-bar a:hover {
  color: var(--gold)
}

.top-bar .tb-left {
  display: flex;
  align-items: center;
  gap: 10px
}

.top-bar .tb-right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end
}

.top-bar .tb-divider {
  color: #555
}

.top-bar i {
  color: var(--primary);
  margin-right: 5px;
  font-size: 13px
}

.top-bar .tb-social a {
  display: inline-flex;
  width: 26px;
  height: 26px;
  background: transparent;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: 6px;
  transition: all 0.3s;
}

.top-bar .tb-social a i.fa-facebook-f {
  color: #1877F2;
}

.top-bar .tb-social a i.fa-instagram {
  color: #E4405F;
}

.top-bar .tb-social a i.fa-youtube {
  color: #FF0000;
}

.top-bar .tb-social a i.fa-twitter {
  color: #1DA1F2;
}

.top-bar .tb-social a:hover {
  transform: translateY(-3px) scale(1.1);
}

/* ===== Header - Exact image design ===== */
.main-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all .3s ease;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

/* Logo - farmland brand exact look */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.logo-mark {
  position: relative;
  width: 60px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark .lotus {
  color: var(--gold);
  font-size: 38px;
  line-height: 1;
}

.logo-text {
  line-height: 1
}

.logo-text .brand-main {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .5px;
  margin: 0;
  line-height: 1;
}

.logo-text .brand-tag {
  font-size: 9px;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
  display: block;
}

.logo-text .brand-sub {
  font-size: 9px;
  color: #555;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

/* Call Now block */
.call-now-block {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  height: 100%;
}

.call-now-block .phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(230, 0, 18, 0.1);
  color: #e60012;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ring 2s infinite;
}

@keyframes ring {

  0%,
  100% {
    transform: rotate(0)
  }

  10%,
  30% {
    transform: rotate(-15deg)
  }

  20%,
  40% {
    transform: rotate(15deg)
  }
}

.call-now-block .text-block {
  line-height: 1.1
}

.call-now-block .text-block small {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.call-now-block .text-block b {
  font-size: 20px;
  color: var(--primary);
  letter-spacing: .5px;
  font-weight: 700;
  display: block;
  margin-top: 2px;
}

/* Nav */
.nav-wrap {
  padding: 10px 0
}

.nav-link {
  color: #222 !important;
  font-weight: 500;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 10px !important;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1)
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important
}

.btn-call {
  background: var(--primary);
  color: #fff !important;
  border-radius: 30px;
  padding: 10px 22px !important;
  font-weight: 600;
  font-size: 12px;
  transition: all .3s;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.btn-call:hover {
  background: var(--dark);
  transform: translateY(-2px)
}

/* ===== farmlands model brand - inline mini brand banner ===== */
.farm-brand-strip {
  background: linear-gradient(90deg, #fff8e6 0%, #fff 50%, #fff8e6 100%);
  border-top: 1px solid #f2e6b8;
  border-bottom: 1px solid #f2e6b8;
  padding: 10px 0;
  overflow: hidden;
}

.farm-brand-strip .farm-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.farm-brand-strip .farm-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #5a4a10;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.farm-brand-strip .farm-tag i {
  color: var(--primary);
  font-size: 14px
}

.farm-brand-strip .farm-tag strong {
  color: #1a1a1a
}

/* ===== Full Responsive behavior for header ===== */
@media (max-width:1199px) {
  .call-now-block {
    padding: 10px 12px
  }

  .call-now-block .text-block b {
    font-size: 17px
  }

  .nav-link {
    padding: 8px 6px !important;
    font-size: 11.5px;
    letter-spacing: 1px
  }
}

@media (max-width:991px) {
  .logo-wrap {
    padding: 8px 0
  }

  .logo-text .brand-main {
    font-size: 26px
  }

  .call-now-block {
    border: none;
    padding: 10px 0;
    justify-content: flex-start
  }

  .farm-brand-strip .farm-tag {
    font-size: 11px;
    gap: 5px
  }

  .farm-brand-strip {
    padding: 8px 0
  }

  .nav-wrap {
    padding: 8px 0
  }

  .navbar-nav {
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 8px
  }

  .nav-link {
    padding: 10px 10px !important;
    border-bottom: 1px solid #f5f5f5
  }

  .nav-link::after {
    display: none
  }
}

@media (max-width:767px) {
  .top-bar {
    padding: 6px 0
  }

  .top-bar .tb-right {
    justify-content: center;
    margin-top: 4px
  }

  .top-bar .tb-left {
    justify-content: center;
    font-size: 11px
  }

  .top-bar .tb-divider {
    display: none
  }

  .farm-brand-strip .farm-inner {
    gap: 12px
  }

  .farm-brand-strip .farm-tag {
    font-size: 10px;
    letter-spacing: .5px
  }

  .farm-brand-strip .farm-tag span.d-none-sm {
    display: none
  }
}

@media (max-width:480px) {
  .logo-mark {
    width: 45px;
    height: 40px
  }

  .logo-mark svg {
    width: 42px;
    height: 40px
  }

  .logo-text .brand-main {
    font-size: 22px
  }

  .logo-text .brand-sub {
    font-size: 8px
  }

  .call-now-block .phone-icon {
    width: 34px;
    height: 34px
  }

  .call-now-block .text-block b {
    font-size: 16px
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, .35), rgba(0, 0, 0, .45));
  z-index: -1;
}

.hero-logo {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, .12);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.hero-logo i {
  font-size: 40px;
  color: var(--gold)
}

.hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  font-family: 'Cinzel', serif;
  letter-spacing: 3px;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .6);
}

.hero h1 span {
  color: var(--gold)
}

.hero .tagline {
  font-size: clamp(18px, 2vw, 28px);
  font-style: italic;
  letter-spacing: 2px;
  color: #f1f1f1;
  border-top: 1px solid rgba(255, 255, 255, .3);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  display: inline-block;
  padding: 10px 30px;
  margin-top: 10px;
}

.hero-btns {
  margin-top: 35px
}

.btn-outline-hero {
  border: 2px solid var(--gold);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 8px;
  transition: all .3s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-hero:hover {
  background: var(--gold);
  color: #222
}

.btn-hero-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn-hero-primary:hover {
  background: #b8000e;
  border-color: #b8000e;
  color: #fff
}

.scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  animation: bounce 2s infinite;
  font-size: 22px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0)
  }

  50% {
    transform: translate(-50%, 10px)
  }
}

/* ===== Section Common ===== */
.section {
  padding: 50px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.section-title .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.section-title .divider .line {
  width: 60px;
  height: 2px;
  background: var(--primary);
}

.section-title .divider i {
  color: var(--gold);
  font-size: 18px
}

.section-title p {
  max-width: 750px;
  margin: 10px auto 0;
  color: var(--muted);
  line-height: 1.8
}

/* ===== Welcome / About ===== */
.about-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: all .4s;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12)
}

.about-card img {
  width: 100%;
  height: 240px;
  object-fit: cover
}

.about-card .body {
  padding: 22px
}

.about-card .body h4 {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 20px
}

.about-card .body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7
}

/* ===== Features - why us ===== */
.features-wrap {
  background: linear-gradient(135deg, #1b3a1b 0%, #0f1f0f 100%);
  color: #fff;
  background-image:
    linear-gradient(135deg, rgba(27, 58, 27, .92), rgba(15, 31, 15, .95)),
    url('https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1920');
  background-size: cover;
  background-attachment: fixed;
}

.feature-box {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 30px 22px;
  border-radius: 12px;
  text-align: center;
  transition: all .3s;
  height: 100%;
}

.feature-box:hover {
  background: rgba(201, 162, 39, .15);
  transform: translateY(-6px);
  border-color: var(--gold)
}

.feature-box .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(201, 162, 39, .2);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box .icon i {
  color: var(--gold);
  font-size: 26px
}

.feature-box h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px
}

.feature-box p {
  color: #c9c9c9;
  font-size: 13px;
  line-height: 1.7
}

.features-wrap .section-title h2 {
  color: #fff
}

.features-wrap .section-title p {
  color: #bbb
}

/* ===== Therapies Grid ===== */
.therapy-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.therapy-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.therapy-card:hover img {
  transform: scale(1.1)
}

.therapy-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.therapy-card h5 {
  color: #fff;
  margin: 0;
  font-size: 17px;
  font-weight: 600
}

.therapy-card small {
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 10px
}

.therapy-card .overlay-hover {
  position: absolute;
  inset: 0;
  background: rgba(155, 202, 79, 0.258);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s;
}

.therapy-card:hover .overlay-hover {
  opacity: 1
}

.therapy-card .overlay-hover a {
  color: #fff;
  text-decoration: none;
  text-align: center
}

.therapy-card .overlay-hover i {
  font-size: 32px;
  margin-bottom: 10px;
  display: block
}

/* ===== Investment section ===== */
.invest-wrap {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.invest-box {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
  overflow: hidden;
}

.invest-box .top {
  background: var(--primary);
  color: #fff;
  padding: 25px;
  text-align: center;
}

.invest-box .top h3 {
  font-size: 22px;
  margin-bottom: 4px
}

.invest-box .top .price {
  font-size: 30px;
  font-weight: 700;
  color: var(--gold)
}

.invest-box .content {
  padding: 30px
}

.invest-list li {
  list-style: none;
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 14px;
  color: #444;
}

.invest-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--leaf);
}

/* ===== Location / Infographic ===== */
.location-wrap {
  background: #fff
}

.circle-info {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #fff;
  border: 3px dashed var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.circle-info .big {
  font-size: 28px;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Cinzel', serif
}

.circle-info small {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 4px
}

/* ===== Project Highlights ===== */
.highlight-item {
  background: #fff;
  padding: 25px 18px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
  transition: all .3s;
  border-top: 3px solid var(--gold);
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, .1)
}

.highlight-item i {
  font-size: 30px;
  color: var(--primary);
  margin-bottom: 12px
}

.highlight-item h6 {
  font-size: 13px;
  color: #222;
  font-weight: 600;
  line-height: 1.4
}

/* ===== Stats Counter ===== */
.stats {
  background:
    linear-gradient(rgba(10, 10, 10, .85), rgba(10, 10, 10, .85)),
    url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1920') center/cover fixed no-repeat;
  color: #fff;
  padding: 80px 0;
}

.stat {
  text-align: center
}

.stat .num {
  font-size: 56px;
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-weight: 700;
}

.stat .label {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ddd;
  margin-top: 6px
}

/* ===== Testimonials ===== */
.testimonial {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
  height: 100%;
  position: relative;
}

.testimonial::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -15px;
  left: 25px;
  background: var(--primary);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.testimonial p {
  color: var(--muted);
  font-style: italic;
  line-height: 1.8;
  margin-top: 10px
}

.stars {
  color: var(--gold);
  margin-bottom: 8px
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px
}

.client img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover
}

.client b {
  display: block;
  color: #222;
  font-size: 14px
}

.client small {
  color: var(--muted);
  font-size: 12px
}

/* ===== FAQ & Contact ===== */
.accordion-item {
  border: none;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff
}

.accordion-button {
  font-weight: 600;
  color: #222;
  background: #fff !important;
  padding: 18px 22px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary)
}

.accordion-button::after {
  background-image: none !important;
  content: "\2B";
  font-family: inherit;
  font-weight: 300;
  color: var(--primary);
  width: auto !important;
  height: auto !important;
  transform: none !important;
  font-size: 22px;
  line-height: 1;
}

.accordion-button:not(.collapsed)::after {
  content: "\2212"
}

/* Keep Bootstrap dropdown arrows working */
.dropdown-toggle::after {
  margin-left: 6px
}

.accordion-body {
  color: var(--muted);
  line-height: 1.8;
  padding-top: 0
}

.site-form input,
.site-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  background: transparent;
  padding: 14px 6px;
  font-size: 14px;
  outline: none;
  transition: all .3s;
}

.site-form input:focus,
.site-form textarea:focus {
  border-color: var(--primary)
}

.site-form .row>* {
  margin-bottom: 12px
}

/* ===== Blog cards ===== */
.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
  transition: all .3s;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12)
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover
}

.blog-card .meta {
  padding: 10px 22px;
  font-size: 12px;
  color: var(--muted);
  border-bottom: 1px solid #eee
}

.blog-card .meta i {
  color: var(--primary)
}

.blog-card h5 {
  padding: 12px 22px 0;
  font-size: 18px;
  color: #222;
  line-height: 1.4
}

.blog-card .read {
  padding: 0 22px 22px
}

.blog-card .read a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px
}

.blog-card .read a:hover {
  color: var(--dark)
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), #8a0010);
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(255, 255, 255, .2);
  border-radius: 50%;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border: 2px dashed rgba(255, 255, 255, .15);
  border-radius: 50%;
}

/* ===== Footer ===== */
footer {
  background: linear-gradient(135deg, #0b1c11 0%, #06110a 100%);
  color: #c2d1c8;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.03;
  pointer-events: none;
}

footer .logo-area img {
  filter: brightness(1.2) contrast(1.1);
  border-radius: 8px;
}

footer h6 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

footer h6::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 40px;
  background: var(--gold);
}

footer a {
  color: #a1b0a6;
  text-decoration: none;
  font-size: 15px;
  display: block;
  padding: 6px 0;
  transition: all 0.3s ease;
  position: relative;
}

footer a:hover {
  color: var(--gold);
  padding-left: 10px;
}

footer p {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 15px;
}

.foot-contact li {
  list-style: none;
  padding: 10px 0;
  font-size: 15px;
  color: #a1b0a6;
  display: flex;
  align-items: flex-start;
}

.foot-contact i {
  color: var(--gold);
  margin-right: 12px;
  width: 20px;
  margin-top: 4px;
  font-size: 16px;
}

.social-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-foot a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  font-size: 18px;
  transition: all 0.4s ease;
  border: 1px solid rgba(220, 179, 98, 0.2);
}

.social-foot a i {
  transition: all 0.4s ease;
}

.social-foot a:hover {
  transform: translateY(-5px);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 10px 20px rgba(220, 179, 98, 0.2);
  padding-left: 0; /* Override generic a:hover */
}

.social-foot a:hover i {
  color: #fff !important;
}

.social-foot a i.fa-facebook-f { color: #1877F2; }
.social-foot a i.fa-twitter { color: #1DA1F2; }
.social-foot a i.fa-instagram { color: #E4405F; }
.social-foot a i.fa-linkedin-in { color: #0A66C2; }
.social-foot a i.fa-youtube { color: #FF0000; }

.copyright {
  background: #040c07;
  padding: 20px 0;
  margin-top: 60px;
  font-size: 14px;
  color: #888;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ===== Floating buttons ===== */
.float-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .4);
  animation: pulse 2s infinite;
  text-decoration: none;
}

.float-call {
  position: fixed;
  right: 20px;
  bottom: 85px;
  z-index: 999;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(230, 0, 18, .4);
  text-decoration: none;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6)
  }

  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0)
  }
}

/* ===== Utility ===== */
.btn-primary-red {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  padding: 12px 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  border: none;
  transition: all .3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-red:hover {
  background: var(--dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .15)
}

.hex-deco {
  color: var(--gold);
  font-size: 22px;
  margin: 25px 0;
  letter-spacing: 15px;
  text-align: center;
}

/* Responsive tweaks */
@media (max-width:992px) {
  .head-contact {
    display: none
  }
}

@media (max-width:768px) {
  .section {
    padding: 35px 0;
  }

  .hero {
    min-height: 75vh
  }
}

/* ===== Image blocks ===== */
.img-zoom {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.img-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s
}

.img-zoom:hover img {
  transform: scale(1.08)
}

/* ===== Premium Investment Cards ===== */
.premium-invest-card {
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  color: #333;
}

.premium-invest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201, 162, 39, 0.15);
  border-color: rgba(201, 162, 39, 0.6);
}

.premium-invest-card .body {
  padding: 30px 25px;
  position: relative;
  z-index: 2;
}

.premium-invest-card h4 {
  color: var(--primary);
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  padding-bottom: 15px;
}

.premium-invest-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.premium-invest-list li {
  margin-bottom: 14px;
  font-size: 14px;
  color: #555;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.premium-invest-list li i {
  color: var(--gold);
  margin-right: 12px;
  margin-top: 5px;
  font-size: 13px;
}

.price-block-premium {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: 25px;
  transition: all 0.3s ease;
}

.premium-invest-card:hover .price-block-premium {
  background: rgba(201, 162, 39, 0.15);
}

.price-block-premium h5 {
  color: #e0e0e0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.price-block-premium .price-val {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.price-block-premium small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  display: block;
  margin-top: 6px;
  background: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}

.btn-premium-gold {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  padding: 12px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-premium-gold:hover {
  background: var(--gold);
  color: #1a1a1a !important;
  box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

/* ===== Premium CTA Banner ===== */
.premium-cta {
  background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.8)), url('https://images.unsplash.com/photo-1540541338287-41700207dee6?w=1920') center/cover fixed;
  padding: 80px 0;
  color: #fff;
  position: relative;
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.premium-cta h3 {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 15px;
}

.premium-cta p {
  font-size: 18px;
  color: #f0f0f0;
  letter-spacing: 1px;
  font-weight: 300;
}

.btn-premium-solid {
  background: var(--gold);
  color: #1a1a1a !important;
  border: 2px solid var(--gold);
  padding: 14px 35px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn-premium-solid:hover {
  background: transparent;
  color: var(--gold) !important;
  box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

.btn-premium-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff !important;
  padding: 14px 35px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
}

.btn-premium-outline:hover {
  background: #fff;
  color: #1a1a1a !important;
  border-color: #fff;
}

/* ===== Premium Project Card ===== */
/* ===== Premium Project Card ===== */
.project-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card .img-wrap {
  position: relative;
  overflow: hidden;
  height: 260px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.project-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.project-card:hover .img-wrap img {
  transform: scale(1.1);
}

.project-card .badge-status {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: #fff;
  padding: 6px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(201, 162, 39, 0.4);
}

.project-card .content {
  padding: 30px;
  margin: -50px 20px 0 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 2;
  border-bottom: 3px solid var(--gold);
}

.project-card h4 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 8px;
}

.project-card .location {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.project-card .location i {
  color: var(--gold);
  margin-right: 6px;
}

.project-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
  line-height: 1.6;
}

.project-card .explore-btn {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: auto;
}

.project-card .explore-btn i {
  margin-left: 8px;
  transition: transform 0.3s;
}

.project-card .explore-btn:hover {
  color: var(--gold);
}

.project-card .explore-btn:hover i {
  transform: translateX(6px);
}

/* ===== Unique Leaf Amenity Card ===== */
.amenity-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 50px 15px 50px 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(30, 83, 39, 0.08);
  transition: all 0.5s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary);
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  opacity: 0;
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(30, 83, 39, 0.15);
  border-radius: 15px 50px 15px 50px;
  border-color: transparent;
}

.amenity-card:hover::before {
  width: 150%;
  padding-top: 150%;
  opacity: 1;
}

.amenity-card .icon {
  width: 80px;
  height: 80px;
  background: var(--cream);
  color: var(--primary);
  border-radius: 50px 15px 50px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
  transition: all 0.5s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.amenity-card:hover .icon {
  background: var(--gold);
  color: #fff;
  border-radius: 15px 50px 15px 50px;
  transform: rotate(360deg);
}

.amenity-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  transition: color 0.4s ease;
  font-family: 'Cinzel', serif;
}

.amenity-card:hover h4 {
  color: var(--gold);
}

.amenity-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
  transition: color 0.4s ease;
}

.amenity-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== Team Cards (Premium Overlay) ===== */
.team-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: all .4s;
  text-align: center;
  margin: 0 auto 24px;
  max-width: 250px;
  aspect-ratio: 3/4;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.team-card:hover img {
  transform: scale(1.1);
}

.team-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 31, 15, 0.95) 0%, rgba(15, 31, 15, 0.6) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 20px;
  opacity: 0.9;
  transition: all 0.4s ease;
}

.team-card:hover .overlay {
  background: linear-gradient(to top, rgba(15, 31, 15, 0.95) 0%, rgba(15, 31, 15, 0.8) 50%, rgba(15, 31, 15, 0.4) 100%);
}

.team-card h4 {
  color: var(--gold);
  font-size: 19px;
  margin-bottom: 5px;
  font-family: 'Cinzel', serif;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.team-card p {
  color: #fff;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.team-card .social-links {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.team-card:hover h4,
.team-card:hover p,
.team-card:hover .social-links {
  transform: translateY(0);
}

.team-card:hover .social-links {
  opacity: 1;
}

.team-card .social-links a {
  color: #fff;
  margin: 0 6px;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.team-card .social-links a:hover {
  background: var(--gold) !important;
  color: #1a1a1a;
  border-color: var(--gold);
  text-decoration: none;
}

@keyframes pulse-gold {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.6);
  }

  50% {
    box-shadow: 0 0 0 25px rgba(201, 162, 39, 0);
  }
}

.play-btn:hover {
  background: var(--primary) !important;
  transform: scale(1.1);
  animation: none !important;
}





/* ===== Premium Dropdown Design ===== */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  min-width: 220px;
  background: #fff;
  border-top: 3px solid var(--primary);
  margin-top: 0 !important;
  animation: dropFade 0.3s ease;
}

@keyframes dropFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  padding: 10px 25px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
}

.dropdown-item::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 5px;
  color: var(--gold);
  opacity: 0;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: rgba(201, 162, 39, 0.05);
  color: var(--primary);
  padding-left: 35px;
}

.dropdown-item:hover::before {
  left: 18px;
  opacity: 1;
}

/* Open on hover for desktop */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}