/* ==========================================================================
   1. GLOBAL
   ========================================================================== */
:root{
  --dark:#1F1F1F;
  --dark-2:#2B2B2B;
  --accent:#B08A5A;
  --accent-dark:#96734A;
  --bg-light:#F7F5F1;
  --white:#FFFFFF;
  --muted:#777777;
  --line:#E4DFD6;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Montserrat', sans-serif;
  font-weight:400;
  color:var(--dark);
  background:var(--white);
  font-size:16px;
  line-height:1.7;
  overflow-x:hidden;
}
h1,h2,h3,h4,h5,h6{font-weight:700; color:var(--dark); margin:0;}
p{margin:0;}
a{text-decoration:none; color:inherit;}
ul{margin:0; padding:0; list-style:none;}
img{max-width:100%; display:block;}
.container-xl{max-width:1240px; margin:0 auto; padding:0 24px;}
.section-pad{padding:100px 0;}
.bg-alt{background:var(--bg-light);}

.eyebrow{
  font-size:0.78rem;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:14px;
}
.eyebrow-light{color:var(--accent);}
.section-title{
  font-size:2.1rem;
  line-height:1.25;
  margin-bottom:18px;
}
.section-text{
  color:var(--muted);
  font-weight:400;
  margin-bottom:16px;
  max-width:520px;
}

/* Buttons */
.btn{
  font-family:'Montserrat', sans-serif;
  font-weight:600;
  font-size:0.88rem;
  letter-spacing:.02em;
  padding:13px 28px;
  border-radius:4px;
  border:1px solid transparent;
  transition:background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.btn-accent{
  background:var(--accent);
  color:var(--white);
}
.btn-accent:hover{background:var(--accent-dark); color:var(--white); transform:translateY(-1px);}
.btn-outline-light-custom{
  background:transparent;
  border-color:rgba(255,255,255,.55);
  color:var(--white);
}
.btn-outline-light-custom:hover{border-color:var(--accent); color:var(--accent);}
.link-underline{
  color:var(--dark);
  font-weight:600;
  font-size:0.9rem;
  border-bottom:1px solid var(--accent);
  padding-bottom:3px;
}

/* Reveal animation */
.reveal{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease;}
.reveal.in-view{opacity:1; transform:translateY(0);}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none; transition:none;}
}

/* ==========================================================================
   2. HEADER
   ========================================================================== */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:transparent;
  padding:20px 0;
  transition:background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled{
  background:var(--white);
  padding:12px 0;
  box-shadow:0 2px 18px rgba(0,0,0,.06);
}
.site-logo{
  font-size:1.35rem;
  font-weight:700;
  color:var(--white);
  letter-spacing:.01em;
  transition:color .3s ease;
}
.site-header.scrolled .site-logo{color:var(--dark);}
.site-logo span{color:var(--accent);}

.navbar-nav .nav-link{
  color:rgba(255,255,255,.9);
  font-size:0.86rem;
  font-weight:500;
  padding:8px 14px !important;
  transition:color .2s ease;
}
.site-header.scrolled .navbar-nav .nav-link{color:var(--dark-2);}
.navbar-nav .nav-link:hover{color:var(--accent);}
.btn-sm-nav{padding:9px 20px; font-size:0.82rem;}

.navbar-toggler{border:none; box-shadow:none; padding:0;}
.navbar-toggler-icon{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.site-header.scrolled .navbar-toggler-icon{
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31,31,31,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width:991px){
  .navbar-collapse{background:var(--white); margin-top:14px; padding:16px; box-shadow:0 8px 24px rgba(0,0,0,.08);}
  .navbar-nav .nav-link{color:var(--dark-2) !important;}
  .btn-sm-nav{display:inline-block; margin-top:8px;}
}

/* ==========================================================================
   3. HERO
   ========================================================================== */
/* =========================
   HERO SLIDER
========================= */

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  padding-top: 110px;
  overflow: hidden;
  background: #1f1f1f;
}


/* Background Slider */

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transform: scale(1.05);

  transition:
    opacity 1.2s ease-in-out,
    transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}


/* Dark Overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(20,20,20,.80) 0%,
      rgba(20,20,20,.60) 45%,
      rgba(20,20,20,.35) 100%
    );
}


/* Content */

.hero .container-xl {
  position: relative;
  z-index: 2;
}

.hero .row {
  position: relative;
  z-index: 2;
}


/* Heading */

.hero-title {
  color: var(--white);
  font-size: 2.9rem;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 600px;
}

.hero-text {
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  max-width: 480px;
}


/* =========================
   ENQUIRY FORM
========================= */

.enquiry-card {
  background: rgba(255,255,255,.96);
  padding: 30px;
  border-radius: 8px;

  box-shadow:
    0 20px 60px rgba(0,0,0,.25);

  max-width: 460px;
  margin-left: auto;
}

.enquiry-card h3 {
  color: #1f1f1f;
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.enquiry-card .form-label {
  color: #333;
  font-weight: 500;
  margin-bottom: 7px;
}

.enquiry-card .form-control,
.enquiry-card .form-select {
  min-height: 48px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.enquiry-card textarea.form-control {
  min-height: 70px;
}

.enquiry-card .form-control:focus,
.enquiry-card .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 .15rem rgba(176,138,90,.15);
}


/* =========================
   SLIDER DOTS
========================= */

.hero-dots {
  position: absolute;

  bottom: 30px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 5;

  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;

  background: transparent;

  cursor: pointer;

  transition:
    width .3s ease,
    background .3s ease,
    border-color .3s ease;
}

.hero-dot.active {
  width: 28px;

  border-radius: 10px;

  background: var(--accent);
  border-color: var(--accent);
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

  .hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 80px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .enquiry-card {
    margin: 20px auto 0;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 575px) {

  .hero {
    padding-top: 120px;
    padding-bottom: 75px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-text {
    font-size: .92rem;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(20,20,20,.65) 0%,
        rgba(20,20,20,.82) 100%
      );
  }

  .enquiry-card {
    padding: 22px;
  }

}
/* ==========================================================================
   4. QUICK HIGHLIGHTS STRIP
   ========================================================================== */
.quick-strip{
  background:var(--dark);
  padding:34px 0;
}
.qs-label{
  display:block;
  color:rgba(255,255,255,.55);
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-bottom:8px;
}
.qs-value{
  display:block;
  color:var(--white);
  font-size:1.15rem;
  font-weight:600;
}
.quick-strip .col-lg{border-left:1px solid rgba(255,255,255,.1);}
.quick-strip .col-lg:first-child{border-left:none;}
@media (max-width:991px){
  .quick-strip .col-lg{border-left:none;}
}

/* ==========================================================================
   5. ABOUT
   ========================================================================== */
/* =========================================
   ABOUT REAL ESTATE SECTION
========================================= */

.about-realestate {
  position: relative;
  overflow: hidden;
  background: #fff;
}


/* Heading */

.about-realestate .section-title {
  max-width: 720px;
  margin-bottom: 0;
}

.about-realestate .section-title span {
  display: block;
  color: var(--accent);
}


/* Main Layout */

.about-main-row {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
}


/* =========================================
   IMAGE
========================================= */

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border-radius: 4px;
}


/* Main Image */

.about-image {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      145deg,
      rgba(0,0,0,.05),
      rgba(0,0,0,.25)
    ),
    url("images/about-project.jpg");

  background-size: cover;
  background-position: center;

  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}


/* Image hover */

.about-image-wrap:hover .about-image {
  transform: scale(1.06);
}


/* Image overlay */

.about-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(0,0,0,.5) 100%
    );

  pointer-events: none;
}


/* Image Number */

.about-image-tag {
  position: absolute;

  left: 25px;
  bottom: 25px;

  z-index: 2;

  display: flex;
  align-items: center;
  gap: 15px;

  color: #fff;
}

.about-image-tag span {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: .7;
}

.about-image-tag strong {
  font-size: 15px;
  font-weight: 500;
}


/* =========================================
   FLOATING CARD
========================================= */

.about-floating-card {
  position: absolute;

  right: -35px;
  bottom: 45px;

  z-index: 4;

  display: flex;
  align-items: center;
  gap: 15px;

  background: #fff;

  padding: 18px 25px;

  min-width: 280px;

  box-shadow:
    0 15px 45px rgba(0,0,0,.13);

  border-left: 3px solid var(--accent);

  transition: transform .4s ease;
}

.about-visual:hover .about-floating-card {
  transform: translateY(-8px);
}

.floating-icon {
  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f4efe9;

  color: var(--accent);

  font-size: 20px;
}

.about-floating-card small {
  display: block;

  font-size: 9px;
  letter-spacing: 1.5px;

  color: #999;

  margin-bottom: 4px;
}

.about-floating-card h4 {
  margin: 0;

  font-size: 14px;
  font-weight: 600;
  color: #222;
}


/* =========================================
   CONTENT
========================================= */

.about-content {
  padding-right: 30px;
}

.about-number {
  color: var(--accent);

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 2px;

  margin-bottom: 22px;
}

.about-number span {
  color: #999;
  font-weight: 400;
}


.about-content h3 {
  font-size: 2.15rem;
  line-height: 1.25;

  color: #252525;

  margin-bottom: 25px;

  max-width: 520px;
}


.about-content > p {
  color: #666;

  font-size: 15px;
  line-height: 1.8;

  max-width: 560px;

  margin-bottom: 17px;
}


/* =========================================
   HIGHLIGHTS
========================================= */

.about-highlights {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;

  margin-top: 30px;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;

  gap: 12px;

  padding: 13px 0;

  border-bottom: 1px solid #e9e9e9;
}

.highlight-icon {
  width: 38px;
  height: 38px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #e5ddd4;

  color: var(--accent);

  font-size: 16px;
}

.highlight-item strong {
  display: block;

  color: #333;

  font-size: 13px;
  font-weight: 600;

  margin-bottom: 2px;
}

.highlight-item small {
  display: block;

  color: #999;

  font-size: 10px;
}


/* =========================================
   CTA
========================================= */

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 25px;

  color: #222;

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  border-bottom: 1px solid #222;

  padding-bottom: 8px;

  transition: all .3s ease;
}

.about-cta i {
  font-size: 17px;

  transition: transform .3s ease;
}

.about-cta:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.about-cta:hover i {
  transform: translate(4px,-4px);
}


/* =========================================
   STATS
========================================= */

.about-stats {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  margin-top: 90px;

  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: 18px;

  padding: 25px 30px;

  border-right: 1px solid #e5e5e5;
}

.about-stat:last-child {
  border-right: 0;
}

.about-stat strong {
  font-size: 28px;

  font-weight: 400;

  color: var(--accent);
}

.about-stat span {
  color: #777;

  font-size: 11px;

  line-height: 1.5;

  text-transform: uppercase;

  letter-spacing: .5px;
}


/* =========================================
   SCROLL ANIMATION
========================================= */

.reveal {
  opacity: 0;

  transform: translateY(45px);

  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.2,.7,.2,1);
}

.reveal.active {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

  .about-main-row {
    grid-template-columns: 1fr;

    gap: 60px;
  }

  .about-content {
    padding-right: 0;
  }

  .about-image-wrap {
    min-height: 480px;
  }

  .about-floating-card {
    right: 20px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-stat:nth-child(2) {
    border-right: 0;
  }

  .about-stat:nth-child(-n+2) {
    border-bottom: 1px solid #e5e5e5;
  }

}


@media (max-width: 575px) {

  .about-main-row {
    gap: 45px;
  }

  .about-image-wrap {
    min-height: 390px;
  }

  .about-floating-card {
    right: 10px;
    bottom: 20px;

    min-width: auto;

    padding: 14px 16px;
  }

  .floating-icon {
    width: 38px;
    height: 38px;
  }

  .about-content h3 {
    font-size: 1.7rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stat {
    border-right: 0 !important;
    border-bottom: 1px solid #e5e5e5;
  }

  .about-stat:last-child {
    border-bottom: 0;
  }

}

/* ==========================================================================
   6. PROJECT HIGHLIGHTS
   ========================================================================== */
.highlight-box{
  text-align:center;
  padding:30px 18px;
  border:1px solid var(--line);
  border-radius:6px;
  height:100%;
  transition:border-color .2s ease, transform .2s ease;
}
.highlight-box:hover{border-color:var(--accent); transform:translateY(-3px);}
.highlight-box i{
  font-size:1.7rem;
  color:var(--accent);
  margin-bottom:14px;
  display:block;
}
.highlight-box span{
  font-size:0.92rem;
  font-weight:600;
  color:var(--dark-2);
}

/* ==========================================================================
   7. AMENITIES
   ========================================================================== */
.amenity-image{
  min-height: 420px;
  border-radius: 6px;
  background-image: url('images/amenity.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.amenity-image::after{
  content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(31,31,31,0.05),
        rgba(31,31,31,0.35)
    );
    pointer-events: none;
}
.amenity-list li{
  display:flex; align-items:center; gap:10px;
  padding:11px 0;
  font-size:0.92rem;
  color:var(--dark-2);
  border-bottom:1px solid var(--line);
}
.amenity-list i{color:var(--accent); font-size:1.05rem; width:20px;}

/* ==========================================================================
   8. FLOOR PLANS
   ========================================================================== */
   .fp-tabs {
    border-bottom: 1px solid var(--line);
}

.fp-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 22px;
    border-radius: 0;
}

.fp-tabs .nav-link.active {
    color: var(--dark);
    border-bottom-color: var(--accent);
    background: transparent;
}

/* Common Image Style */
.fp-image {
    min-height: 320px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 2 BHK Image */
.fp-image-2bhk {
    background-image: url('images/2 bhk.jpg');
}

/* 3 BHK Image */
.fp-image-3bhk {
    background-image: url('images/3 bhk.jpg');
}

/* 4 BHK Image */
.fp-image-4bhk {
    background-image: url('images/4 bhk.jpg');
}

/* Image Overlay */
.fp-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(31,31,31,0.02),
        rgba(31,31,31,0.18)
    );
    pointer-events: none;
}

.fp-table {
    width: 100%;
    border-collapse: collapse;
}

.fp-table td {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.94rem;
}

.fp-table td:first-child {
    color: var(--muted);
}

.fp-table td:last-child {
    font-weight: 600;
    color: var(--dark);
    text-align: right;
}
/* ==========================================================================
   9. PRICING
   ========================================================================== */
.price-row{
  border:1px solid var(--line);
  border-radius:6px;
  padding:28px 24px;
  text-align:center;
  height:100%;
  transition:border-color .2s ease;
}
.price-row:hover{border-color:var(--accent);}
.pr-type{display:block; font-size:1.2rem; font-weight:700; margin-bottom:6px;}
.pr-area{display:block; color:var(--muted); font-size:0.85rem; margin-bottom:12px;}
.pr-price{display:block; color:var(--accent); font-weight:600; font-size:0.98rem;}

/* ==========================================================================
   10. GALLERY
   ========================================================================== */
/* =========================================
   PREMIUM REAL ESTATE GALLERY
========================================= */

.gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.gallery-intro {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.7;
}


/* MAIN GRID */

.premium-gallery {
  display: grid;

  grid-template-columns: 1.35fr .8fr .8fr;
  grid-template-rows: 250px 250px;

  gap: 12px;

  height: 512px;
}


/* CARDS */

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #222;
}


/* FEATURED */

.gallery-featured {
  grid-row: 1 / 3;
}


/* SMALL IMAGES */

.gallery-small {
  grid-row: auto;
}


/* LAST IMAGE */

.gallery-wide {
  grid-column: 2 / 4;
}


/* IMAGE */

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transition:
      transform .7s cubic-bezier(.2,.7,.2,1),
      filter .5s ease;
}


/* DARK OVERLAY */

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
      linear-gradient(
          180deg,
          rgba(0,0,0,.03) 30%,
          rgba(0,0,0,.72) 100%
      );

  z-index: 1;
}


/* HOVER ZOOM */

.gallery-card:hover img {
  transform: scale(1.08);
}


/* CONTENT */

.gallery-overlay {
  position: absolute;
  inset: 0;

  z-index: 2;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  padding: 22px;
}


/* NUMBER */

.gallery-overlay span {
  display: block;

  margin-bottom: 5px;

  color: rgba(255,255,255,.65);

  font-size: .72rem;
  letter-spacing: 2px;
  font-weight: 600;
}


/* TITLE */

.gallery-overlay h3 {
  margin: 0;

  color: #fff;

  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
}


/* VIEW BUTTON */

.gallery-view {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;

  background: rgba(255,255,255,.08);

  color: #fff;

  font-size: .95rem;

  backdrop-filter: blur(5px);

  cursor: pointer;

  opacity: 0;
  transform: translateY(10px);

  transition:
      opacity .3s ease,
      transform .3s ease,
      background .3s ease;
}


/* BUTTON HOVER */

.gallery-card:hover .gallery-view {
  opacity: 1;
  transform: translateY(0);
}

.gallery-view:hover {
  background: var(--accent);
  border-color: var(--accent);
}


/* FEATURED TYPOGRAPHY */

.gallery-featured .gallery-overlay h3 {
  font-size: 1.25rem;
}


/* =========================================
 TABLET
========================================= */

@media (max-width: 991px) {

  .gallery-heading {
      align-items: flex-start;
      flex-direction: column;
      gap: 15px;
  }

  .premium-gallery {
      grid-template-columns: 1fr 1fr;

      grid-template-rows:
          360px
          220px
          220px;

      height: 824px;
  }

  .gallery-featured {
      grid-column: 1 / 3;
      grid-row: 1;
  }

  .gallery-small {
      grid-row: 2;
  }

  .gallery-wide {
      grid-column: 1 / 3;
      grid-row: 3;
  }
}


/* =========================================
 MOBILE
========================================= */

@media (max-width: 575px) {

  .gallery-heading {
      gap: 12px;
  }

  .gallery-intro {
      font-size: .88rem;
  }

  .premium-gallery {
      display: grid;

      grid-template-columns: 1fr;

      grid-template-rows:
          330px
          220px
          220px
          220px;

      height: auto;

      gap: 10px;
  }

  .gallery-featured,
  .gallery-small,
  .gallery-wide {
      grid-column: 1;
      grid-row: auto;
  }

  .gallery-featured .gallery-overlay h3 {
      font-size: 1.05rem;
  }

  .gallery-view {
      opacity: 1;
      transform: none;
      width: 38px;
      height: 38px;
  }

  .gallery-overlay {
      padding: 17px;
  }
}/* ==========================================================================
   11. LOCATION
   ========================================================================== */
/* =========================================
   LOCATION SECTION
========================================= */

#location {
  position: relative;
  overflow: hidden;
}


/* =========================================
 LEFT LOCATION BOX
========================================= */

.location-box {
  position: relative;
  height: 100%;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}


/* subtle background detail */

.location-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(176, 138, 90, 0.06);
  pointer-events: none;
}


/* =========================================
 HEADING
========================================= */

.location-heading {
  position: relative;
  z-index: 1;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}


.location-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


.location-heading h2 {
  margin: 0;
  max-width: 500px;
  color: var(--dark);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.03em;
}


.location-heading h2 span {
  color: var(--accent);
}


.location-heading p {
  max-width: 500px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}


/* =========================================
 LOCATION LIST
========================================= */

.location-list {
  margin-top: 8px;
}


.location-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  transition:
      padding-left 0.35s ease,
      background 0.35s ease;
}


.location-item:last-child {
  border-bottom: 0;
}


/* =========================================
 NUMBER
========================================= */

.location-number {
  width: 28px;
  flex: 0 0 28px;
  color: #aaa;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}


/* =========================================
 LOCATION ICON
========================================= */

.location-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(176, 138, 90, 0.22);
  border-radius: 50%;

  background: rgba(176, 138, 90, 0.07);
  color: var(--accent);

  font-size: 1.05rem;

  transition:
      background 0.35s ease,
      color 0.35s ease,
      transform 0.35s ease;
}


/* =========================================
 LOCATION CONTENT
========================================= */

.location-content {
  flex: 1;
}


.location-content h4 {
  margin: 0 0 5px;

  color: var(--dark);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;

  transition: color 0.3s ease;
}


.location-content p {
  margin: 0;

  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}


/* =========================================
 ARROW
========================================= */

.location-arrow {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--line);
  border-radius: 50%;

  color: var(--muted);
  font-size: 0.75rem;

  transition:
      background 0.35s ease,
      color 0.35s ease,
      border-color 0.35s ease,
      transform 0.35s ease;
}


/* =========================================
 LOCATION HOVER
========================================= */

.location-item:hover {
  padding-left: 10px;
}


.location-item:hover .location-number {
  color: var(--accent);
}


.location-item:hover .location-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.06);
}


.location-item:hover .location-content h4 {
  color: var(--accent);
}


.location-item:hover .location-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;

  transform: translate(2px, -2px);
}


/* =========================================
 LOCATION FOOTER
========================================= */

.location-footer {
  display: flex;
  align-items: center;
  gap: 13px;

  margin-top: 22px;
  padding: 15px 17px;

  border-radius: 6px;
  background: rgba(176, 138, 90, 0.06);
}


.footer-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--accent);
  color: #fff;

  font-size: 0.85rem;
}


.location-footer strong {
  display: block;
  margin-bottom: 2px;

  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 600;
}


.location-footer span {
  display: block;

  color: var(--muted);
  font-size: 0.7rem;
}


/* =========================================
 MAP BOX
========================================= */

.map-box {
  position: relative;
  height: 100%;
  min-height: 600px;

  padding: 18px;

  border: 1px solid var(--line);
  border-radius: 10px;

  background: var(--white);

  overflow: hidden;
}


/* =========================================
 MAP HEADER
========================================= */

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 10px 10px 18px;
}


.map-header h3 {
  margin: 0;

  color: var(--dark);
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 500;
}


.map-pin {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(176, 138, 90, 0.25);
  border-radius: 50%;

  background: rgba(176, 138, 90, 0.08);
  color: var(--accent);

  font-size: 1rem;
}


/* =========================================
 MAP FRAME
========================================= */

.map-frame {
  position: relative;

  width: 100%;
  height: 470px;

  overflow: hidden;

  border-radius: 7px;

  background: #eee;
}


.map-frame iframe {
  display: block;

  width: 100%;
  height: 100%;

  border: 0;

  /* Slightly premium map appearance */
  filter: grayscale(10%);
}


/* =========================================
 MAP BOTTOM
========================================= */

.map-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 15px;

  padding: 16px 10px 2px;
}


.map-status {
  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 600;
}


.status-dot {
  width: 7px;
  height: 7px;

  display: inline-block;

  border-radius: 50%;
  background: var(--accent);

  box-shadow: 0 0 0 4px rgba(176, 138, 90, 0.12);
}


.map-note {
  color: var(--muted);
  font-size: 0.7rem;
  text-align: right;
}


/* =========================================
 SCROLL REVEAL SUPPORT
========================================= */

#location .reveal {
  transition:
      opacity 0.8s ease,
      transform 0.8s ease;
}


/* =========================================
 TABLET
========================================= */

@media (max-width: 991px) {

  .location-box {
      padding: 34px;
  }

  .map-box {
      min-height: auto;
  }

  .map-frame {
      height: 450px;
  }

}


/* =========================================
 MOBILE
========================================= */

@media (max-width: 575px) {

  .location-box {
      padding: 25px 20px;
      border-radius: 8px;
  }


  .location-heading {
      padding-bottom: 22px;
  }


  .location-heading h2 {
      font-size: 1.9rem;
  }


  .location-heading p {
      font-size: 0.82rem;
      line-height: 1.7;
  }


  .location-item {
      gap: 10px;
      padding: 17px 0;
  }


  .location-item:hover {
      padding-left: 5px;
  }


  .location-number {
      display: none;
  }


  .location-icon {
      width: 41px;
      height: 41px;
      flex-basis: 41px;
      font-size: 0.9rem;
  }


  .location-content h4 {
      font-size: 0.86rem;
  }


  .location-content p {
      font-size: 0.7rem;
  }


  .location-arrow {
      width: 29px;
      height: 29px;
      flex-basis: 29px;
      font-size: 0.65rem;
  }


  .location-footer {
      padding: 13px;
  }


  .map-box {
      padding: 12px;
      border-radius: 8px;
  }


  .map-header {
      padding: 8px 7px 14px;
  }


  .map-header h3 {
      font-size: 1.25rem;
  }


  .map-pin {
      width: 38px;
      height: 38px;
      font-size: 0.85rem;
  }


  .map-frame {
      height: 360px;
      border-radius: 6px;
  }


  .map-bottom {
      padding: 14px 6px 2px;
      align-items: flex-start;
  }


  .map-note {
      max-width: 150px;
  }

}

/* ==========================================================================
   13. CTA
   ========================================================================== */
.cta-banner{
  background:var(--dark);
  padding:90px 0;
}
.cta-banner h2{
  color:var(--white);
  font-size:2.2rem;
  margin-bottom:12px;
}
.cta-banner p{
  color:rgba(255,255,255,.7);
  font-size:1rem;
}

.contact-info li{
  display:flex; align-items:center; gap:10px;
  padding:8px 0;
  font-size:0.92rem;
  color:var(--dark-2);
}
.contact-info i{color:var(--accent);}
.privacy-note{
  font-size:0.76rem;
  color:var(--muted);
  margin-top:12px;
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.site-footer{
  background:var(--dark);
  padding:70px 0 0;
}
.footer-logo{font-size:1.3rem; margin-bottom:14px; display:inline-block;}
.footer-about{color:rgba(255,255,255,.55); font-size:0.88rem; max-width:280px;}
.site-footer h6{
  color:var(--white);
  font-size:0.82rem;
  text-transform:uppercase;
  letter-spacing:.05em;
  margin-bottom:18px;
}
.footer-links li{margin-bottom:11px;}
.footer-links a,
.footer-links li{
  color:rgba(255,255,255,.6);
  font-size:0.88rem;
  display:flex; align-items:center; gap:8px;
}
.footer-links a:hover{color:var(--accent);}
.footer-links i{color:var(--accent);}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:50px;
  padding:24px 0;
  text-align:center;
}
.footer-bottom p{
  color:rgba(255,255,255,.45);
  font-size:0.76rem;
  margin-bottom:6px;
}

/* ==========================================================================
   15. RESPONSIVE / MOBILE CTA
   ========================================================================== */
.mobile-cta{
  position:fixed; bottom:0; left:0; right:0; z-index:900;
  display:none;
  background:var(--white);
  border-top:1px solid var(--line);
  box-shadow:0 -6px 20px rgba(0,0,0,.08);
}
.mobile-cta a{
  flex:1;
  text-align:center;
  padding:13px 6px;
  font-size:0.78rem;
  font-weight:600;
  color:var(--dark-2);
  border-right:1px solid var(--line);
}
.mobile-cta a:last-child{border-right:none;}
.mobile-cta .mc-accent{background:var(--accent); color:var(--white);}
@media (max-width:767px){
  .mobile-cta{display:flex;}
  body{padding-bottom:56px;}
  .section-pad{padding:64px 0;}
  .section-title{font-size:1.7rem;}
}
