


*, *::before,
*::after{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cormorant Garamond", serif;
}

.btn {
      font-family: "Montserrat", sans-serif;
}
.btn:hover{
  background-color: #fff !important;
  color:#000 !important;
}


:root {
  --maroon: #51302E;
  --gold: #D4AF37;
  --gold-hover: #b8963f;
  --white: #ffffff;
  --off-white: #faf8f5;
  --cream: #f5f0e8;
  --text-body: #7a6a5a;
  --text-dark: #1a1a1a;
  --border: rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.header-home{
  padding: 34px 0;
}

.label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.btn-gold {
    padding: 12px 32px;
    border-radius: 40px;
    background: #BB944F;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
    font-weight: 600;
    font-size: 16px;
    line-height: 27.88px;
    letter-spacing: 0%;
    text-align: center;
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--maroon);
}

.btn-border-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #01185D;
font-weight: 600;
font-size: 16px;
line-height: 27.88px;
letter-spacing: 0%;
text-align: center;
  padding: 12px 32px;
  border-radius: 36px;
  transition: background 0.2s;
  cursor: pointer;
}

.btn-border-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon svg {
  width: 36px;
  height: 36px;
}

.logo-text-main {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.logo-text-sub {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
  line-height: 1;
}

.logo--light .logo-text-main {
  color: var(--white);
}

.logo--light .logo-text-sub {
  color: var(--white);
}

.logo--dark .logo-text-main {
  color: var(--maroon);
}

.logo--dark .logo-text-sub {
  color: var(--text-body);
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

#navbar.scrolled .nav-topbar {
  background: var(--cream);
}

#navbar.scrolled .nav-topbar a {
  color: var(--text-body);
}

#navbar.scrolled .nav-link {
  color: var(--maroon);
}

.nav-topbar {
  background: rgba(0, 0, 0, 0.35);
  padding: 6px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: background 0.3s;
}

@media (max-width: 767px) {
  .nav-topbar {
    display: none;
  }
}

.nav-topbar a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
}

.nav-topbar a:hover {
  opacity: 0.7;
}

.nav-topbar svg {
  width: 12px;
  height: 12px;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
}

@media (max-width: 767px) {
  .nav-main {
    padding: 14px 20px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-gold--sm {
  padding: 8px 18px;
  font-size: 12px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}

@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    align-items: center;
  }
}

.hamburger svg {
  width: 22px;
  height: 22px;
}

#mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 20px 20px;
}

#mobile-menu.open {
  display: flex;
}

.mobile-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.mobile-contacts a {
  font-size: 13px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-contacts svg {
  width: 14px;
  height: 14px;
}

.mobile-nav-links {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--maroon);
}

/* HERO */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 140px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 767px) {
  .hero-content {
    padding: 120px 20px 60px;
  }
}

.hero-content h1 {
  color: var(--white);
  font-weight: 700;
  line-height: 1.15;
  max-width: 730px;
  margin: 0 auto 24px;
font-size: 58px;
letter-spacing: 0px;
text-align: center;
text-shadow: 1px 1px 1px #000000CC;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 60px;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dots span.active {
  background: var(--gold);
}

/* ABOUT */
#about {
  background: var(--white);
  padding: 100px 0;
}

#about h2 {
  color: var(--maroon);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  max-width: 500px;
  margin-bottom: 40px;
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

@media (max-width: 767px) {
  .about-cols {
    grid-template-columns: 1fr;
  }
}

#about p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.8;
}

/* OPPORTUNITIES */
#opportunities {
  background: var(--maroon);
  padding: 80px 0;
}

.opp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 90px;
  flex-wrap: wrap;
}

#opportunities h2 {
  color: var(--white);
  font-size: 52px;
  font-weight: 700;
  width: 720px;
}

/* ---- Swiper slider wrapper ---- */

#opportunities {
  overflow: hidden; 
}
 
.opp-slider-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 16px;
  left: 45px;
  margin-left: 30%;
  padding-left: 45px;

}

.oppSwiper {
  overflow: visible !important;
}
 
/* Each slide — fixed portrait width */
.oppSwiper .swiper-slide {
  width: 300px;
  flex-shrink: 0;
}
 
/* ---- Circular orange next button ---- */
/* Sits at the left edge of .opp-slider-wrap, slightly offset left */
.opp-swiper-btn {
  position: absolute;
  left: 0px;             /* overlaps the empty-space / slider boundary */
  top: 38%;
  transform: translateY(-50%);
  z-index: 10;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 28.13px 56.25px -13.5px #00000040;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.opp-swiper-btn svg path{
  stroke : #01185D;
}
.opp-swiper-btn:hover svg path{
  stroke: #fff;
}
 
.opp-swiper-btn:hover {
  background: #BB944F;
  transform: translateY(-50%);
}
 
/* Responsive */
@media (max-width: 1024px) {
  .opp-slider-wrap { margin-left: 28%; }
}
@media (max-width: 767px) {
  .opp-slider-wrap { margin-left: 0; padding-left: 70px; }
  .opp-swiper-btn  { left: 10px; width: 46px; height: 46px; }
}
@media (max-width: 480px) {
}

.opp-card {
  cursor: pointer;
}

.opp-card-img-wrap {
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 12px;
}
 
.opp-card-img-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1.33;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.opp-card:hover .opp-card-img-wrap img {
  transform: scale(1.06);
}

/* Pill tag */
.opp-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.55);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  display: none;
}

.opp-card-title {
font-weight: 700;
font-size: 28px;
line-height: 120%;
letter-spacing: 0px;
color: #FAF6EE;
margin-bottom: 2px;
}

/* Address */
.opp-card-address {
  color: #FFFFFF;
font-weight: 400;
font-size: 18px;
line-height: 28.8px;
letter-spacing: 0px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.opp-card-title br{
  display: none;
}


/* QUOTE BANNER */
#quote-banner {
  background: url('../images/broader-can.png') center center / cover no-repeat;
  position: relative;
  padding: 188px 40px;
  text-align: center;
}

@media (max-width: 767px) {
  #quote-banner {
    padding: 80px 20px;
  }
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0.3%, rgba(0, 0, 0, 0.4) 137.37%);

}

.quote-content {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
}

#quote-banner h2 {
  color: var(--white);
font-weight: 600;
font-size: 58px;
line-height: 66.43px;
letter-spacing: 0px;
text-align: center;
  margin-bottom: 26px;
  text-shadow: 1px 2px 3.1px #00000099;

}

#quote-banner h2 em {
  color: #d4af37;
  font-style: italic;
}

#quote-banner p {
  color: #fff;
  max-width: 635px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 19px;
  line-height: 31.89px;
  letter-spacing: 0px;
  text-align: center;

}

/* STATS */
#stats {
  background: #eee;
  padding: 100px 20px;

}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1150px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-number {
  font-weight: 500;
  font-size: 100px;
  line-height: 59.4px;
  letter-spacing: 0px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--maroon);
}

.stat-label {
  font-family: "Montserrat", sans-serif;
  text-align: center;
font-weight: 400;
font-size: 20px;
line-height: 135%;
letter-spacing: 0px;
color: #595959;
max-width: 200px;
margin: 0 auto;
}

/* WHY SECTION */
#why {
  background: url('../images/why.png') center center / cover no-repeat;
  position: relative;
  padding: 100px 20px;
  text-align: center;
}

@media (max-width: 767px) {
  #why {
    padding: 80px 20px;
  }
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: #00071BCC;
  width: 100%;
  height: 100%;
}

.why-content {
  position: relative;
  z-index: 1;
  max-width: 824px;
  margin: 0 auto;
}

#why h2 {
  color: var(--white);
font-weight: 600;
font-size: 52px;
line-height: 59.4px;
letter-spacing: 0px;
text-align: center;
  margin-bottom: 40px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 auto 40px;
  max-width: 707px;
  text-align: left;
}

@media (max-width: 480px) {
  .why-features {
    grid-template-columns: 1fr;
  }
}

.why-feature, .why-feature span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
font-weight: 500;
font-style: Medium;
font-size: 18px;
line-height: 28.8px;
letter-spacing: 0px;
    font-family: "Montserrat", sans-serif;
}
.why-feature span{
  color: #B8864B;
  font-size: 24px;
}

.why-feature svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

/* GALLERY */
#gallery {
  background: var(--white);
  padding: 80px 0;
}
#gallery .gallery-top-content{
  max-width: 820px;
  margin: 0 auto;
}

#gallery h2 {
  color: #01185D;
font-weight: 600;
font-size: 49.5px;
line-height: 59.4px;
letter-spacing: 0px;
text-align: center;
  margin-bottom: 10px;
}

.gallery-intro {
  font-weight: 400;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0px;
  text-align: center;
  color: #595959;
    margin: 0 auto 30px;
    font-family: "Montserrat", sans-serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--large img {
  height: 370px;
}

@media (max-width: 767px) {
  .gallery-item--large img {
    height: 220px;
  }

  .gallery-item img {
    height: 160px;
  }
}

/* MAP SECTION */
#map-section {
  background: var(--maroon);
  padding: 60px 0;
  border-bottom: 5px solid #BB944F
}

#map-section h2 {
  color:#fff;
font-weight: 600;
font-size: 49.5px;
line-height: 59.4px;
letter-spacing: 0px;
text-align: center;
  margin-bottom: 40px;
}

.map-grid {
  display: grid;
  grid-template-columns: 1.5fr 3.5fr;
  gap: 48px;
  align-items: start;
}



#map-section .category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}

#map-section .category-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(196, 198, 205, 0.2);
  border-top: 1px solid rgba(196, 198, 205, 0.2);
  cursor: pointer;
  color: var(--white);
  transition: color 0.2s, padding-left 0.2s, border-left-color 0.2s;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  
}

#map-section .category-item:hover,
#map-section .category-item.active {
  color: #E8D5B2;
  border-bottom: 1px solid #E8D5B2;
  box-shadow: 0 1px 0 0 #E8D5B2;
}

#map-section .category-item .svg {
  width: 16px;
  height: auto;
  opacity: 0;
  transition: opacity 0.2s;
}

#map-section .category-item.active .svg,
#map-section .category-item:hover .svg {
  opacity: 1;
  color: #E8D5B2;
}

#map-section .map-image{
  height: 100%;
}
#map-section .map-image img {
  width: 100%;
  height: 100%;
  max-height: 553px;
  object-fit: cover;
}

#map-section .map-image{
    position: relative;
    overflow: hidden;
}

#map-section .map-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    transform: scale(1.08);
    transition: opacity .5s ease, transform .8s ease;

    pointer-events: none;
}

#map-section .map-img.active{
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* TICKER */
#ticker {
  padding: 38px 0;
  overflow: hidden;
  white-space: nowrap;
  background-color: #FFFFFF;
}

.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  padding: 0 0 0 44px;
  color: #01185D;
font-weight: 600;
font-style: SemiBold;
font-size: 49.5px;
line-height: 59.4px;
letter-spacing: 0px;
text-align: center;

}

.ticker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:#CDA357;
  flex-shrink: 0;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* FOOTER */
#footer {
  
  
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 64px 40px 40px;
  border-top: 1px solid #C2C8D866;
}

@media (max-width: 991px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 48px 20px;
  }
}
.footer-main .footer-brand{
  max-width: 290px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin: 26px 0 30px;
  max-width: 260px;
      font-family: "Montserrat", sans-serif;
}

.footer-socials {
  display: flex;
  gap: 10px;
  padding-top: 20px;
}

.footer-social {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #E6E8EF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social img{
  width: 20px;
  height: auto;
}

.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  text-transform: uppercase;
font-weight: 700;
font-size: 14px;
line-height: 13.5px;
letter-spacing: 1.35px;
  margin-bottom: 36px;
  color: #01185D;
  font-family: "Montserrat", sans-serif;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;

}

.footer-col ul li a {
  font-family: "Montserrat", sans-serif;
font-weight: 400;
font-size: 18px;
line-height: 27px;
letter-spacing: 0px;
color: #595959;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
font-size: 18px;
line-height: 27px;
letter-spacing: 0px;
color: #595959;
}

.footer-contact-item img {
  margin-top: 6px;
}

.footer-contact-item a {
  transition: color 0.2s;
      font-family: "Montserrat", sans-serif;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 38px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin: 0 auto;
  border-top: 1.13px solid #C4C6CD4D
}

@media (max-width: 767px) {
  .footer-bottom {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
  }
}

.footer-bottom p {
      font-family: "Montserrat", sans-serif;
font-weight: 600;
font-size: 12px;
line-height: 13.5px;
letter-spacing: 1px;
margin-bottom: 0;
color: #595959;
}
.footer-bottom .bottom{
    padding: 0 40px;
}

.btn{
      font-family: "Montserrat", sans-serif;

}


/* ================= HEADER ================= */

.site-header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:transparent;
}

.contact-info{
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.contact-info *{
    font-family: "Montserrat", sans-serif;

}
.contact-item{
  color:#fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28.01px;
  letter-spacing: 0%;
  text-align: center;
}
.contact-item img{
  width: 20px;
  height: auto;
}
.contact-info::before{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left:0;
  width: 126px; 
  border-bottom: #FFFFFF26 1px solid;
}

.main-logo{
    width:100%;
    max-width:540px;
    height:auto;
}

.menu-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#c79b4a;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    margin-left: auto;
}

.menu-btn img{
    width:18px;
    height:auto;
}
.custom-navbar{
  transition: all .2s;
}
.custom-navbar.custom-navbar-scroll{
  backdrop-filter: brightness(0.5) blur(10px);
  box-shadow: 0 5px 15px #00000017;
}


/* ================= HERO ================= */

.carousel-item,
.hero-slide{
    height:100vh;
}

.hero-slide{
    background-size:cover;
    background-position:center;
    position:relative;
  }
  .half-hero-section .hero-slide{
  background-position:center top;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7152) 0.22%, rgba(0, 0, 0, 0.4) 27.49%);
}

.hero-content{
    position:absolute;
    inset:0;
    z-index:2;
    padding-bottom: 114px;
}

.hero-title{
    font-size:72px;
    line-height:1.1;
    font-weight:400;
    margin-bottom:45px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.consultation-btn{
    min-width:auto;
    height:50px;
    line-height: 26px;
    border-radius:60px;
    background:#c79b4a;
    color:#fff;
    width: fit-content;
    font-size: 16px;
    padding: 12px 32px;
    font-weight: 600;
  }
  .consultation-btn:hover svg path{
        stroke: #01185D;
  }
  
  .visit-btn{
    min-width:auto;
    height:50px;
    line-height: 26px;
    border-radius:60px;
    background:#fff;
    color:#111;
    width: fit-content;
    font-size: 16px;
    font-weight: 600;
  padding: 12px 32px;
}

.custom-indicators{
    bottom: 40px;
}

.custom-indicators button{
    width:8px !important;
    height:8px !important;
    border-radius:50%;
    margin:0 3px !important;
}
.carousel-indicators [data-bs-target]{
  opacity: 1;
}
.half-hero-section .carousel-item,
.half-hero-section .hero-slide{
  max-height: 640px;
}


/* Floating Contact */

.contact-tab{
    position:fixed;
    right:8px;
    top:50%;
    transform:translateY(-50%) rotate(180deg);
    writing-mode:vertical-rl;
    background:#fff;
    padding: 30px 10px;
    border-radius: 8px;
    z-index:99;
    font-family: "Montserrat", sans-serif;
    color:#000;
    box-shadow: 0 0 10px 0 #0000003d;
    font-weight: 600;
    font-size: 16px;
    line-height: 27.88px;
    letter-spacing: 0%;
    text-align: center;

}
.contact-tab:hover{
  background: #fff;
}

.navbar-brand{
  display: block;
  width: auto;
  max-width: 330px;
  margin: 0 auto;
}

.about-section{
    background:#eee;
    padding:80px 100px;
}
.about-section .container{
  max-width: 100%;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 16px;
    border: 2px solid #D7B57959;
    border-radius:40px;
    color:#BB944F;
    font-size:12px;
    font-family: "Montserrat", sans-serif;
    margin-bottom:16px;
    text-transform:uppercase;
    font-weight: 700;
    line-height: 12.38px;
    letter-spacing: 3.09px;
    max-width: fit-content;
}
.section-tag.tag-white{
  color: #fff !important;
  border: 2px solid #FAF6EE66 !important;
  font-weight: 600 !important;
}

#why .section-tag{
  margin-bottom: 20px;
}

.about-title{
    color:#01185D;
  font-weight: 700;
  font-size: 52px;
  line-height: 59.4px;
  letter-spacing: 0px;
  text-align: center;
    margin-bottom:40px;
}

.about-content{
    color:#666666;
    font-size:20px;
    line-height:1.85;
}

.about-content p{
    margin-bottom:20px;
    font-family: "Montserrat", sans-serif;
    color: #595959;
    font-weight: 400;
    font-size: 18px;
    line-height: 180%;
    letter-spacing: 0px;
}

.about-content p:last-child{
    margin-bottom:0;
}

.site-visit-btn{
    margin-top:40px;
    padding:12px 32px;
    border-radius:40px;
    background:#BB944F;
    color:#ffffff;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:.3s;
  font-weight: 600;
  font-size: 16px;
  line-height: 27.88px;
  letter-spacing: 0%;
  text-align: center;
}

.site-visit-btn:hover{
    color:#ffffff;
    transform:translateY(-2px);
}

.site-visit-btn svg{
    transition:.3s;
}

.site-visit-btn:hover svg{
    transform:translateX(4px);
}

.carousel-indicators .active{
  background-color: #BB944F;
}

.btn-arrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: fit-content;

}
.btn-arrow img{
  max-width: 100%;
  width: 16px;
  height: 16px;
}


/* ================= Responsive ================= */

@media (max-width:1200px){

    .about-title{
        font-size:54px;
    }

}

@media (max-width:992px){

    .about-section{
        padding:100px 0 80px;
    }

    .about-title{
        font-size:44px;
        margin-bottom:50px;
    }

    .about-content{
        font-size:18px;
        line-height:1.8;
    }

}

@media (max-width:768px){

    .about-section{
        padding:80px 0 70px;
    }

    .section-tag{
        font-size:11px;
        letter-spacing:3px;
        padding:9px 20px;
    }

    .about-title{
        font-size:38px;
        margin-bottom:40px;
    }

    .about-content{
        font-size:17px;
        line-height:1.75;
    }

    .site-visit-btn{
        width:100%;
        min-width:unset;
        font-size:18px;
    }

}

@media (max-width:576px){

    .about-title{
        font-size:28px;
        line-height:1.3;
    }

    .about-content{
        font-size:16px;
    }

}





#gallery .slideCard{
    position:sticky;
    top:100px;
    width:100%;
    height:auto;
    margin:auto;
    max-height: 500px;
    margin-bottom:60px;
    border-radius:0px;
    overflow:hidden;
    transform-origin:center center;
    will-change:transform, opacity;
}

#gallery .slideCard:last-child{
  margin-bottom: 0;
}

#gallery .slideCard img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}




.menu-btn {
   
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 7px 0;
    background: #000;
    transition: 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Overlay */

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar */

#sideMenu.side-menu {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: var(--maroon);
    transition: .4s ease;
    z-index: 1001;
    padding: 30px 50px;
    font-family: "Montserrat", sans-serif;
    overflow: auto;
  }
  
#sideMenu.side-menu.active {
    right: 0;
  }
  
  #sideMenu.side-menu ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
  }
  
  #sideMenu.side-menu li {
    margin-bottom: 0;
}

#sideMenu.side-menu a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  color: #fff;
    font-size: 18px;
    display: block;
    width: 100%;
    border-bottom: 1px solid #C4C6CD33;
    padding: 16px 0;
    transition: .3s;    
}
#sideMenu.side-menu a:hover{
  color: #c79b4a;
  border-color: #c79b4a;
}

#sideMenu.side-menu .menu-inner{
    display: flex;
    flex-direction: column;
    height: 100%;
}
#sideMenu.side-menu .menu-inner .consultation-btn-box{
    height: 100%;
    width: 100%;
    position: relative;
    padding-top: 60px;
}
#sideMenu.side-menu .menu-inner .consultation-btn-box .consultation-btn{
  position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
}


@media(max-width: 1366px){
  .about-section{
      background:#eee;
      padding: 60px 20px;
  }
}

@media(max-width: 1200px){
  .map-grid{
      grid-template-columns: 2fr 3fr;
  }
}

@media(max-width: 1080px){
  .opp-slider-wrap{
    margin-left: 0;
  }
  #stats .stats-grid{
    gap: 80px 22px;
  }
}

@media(max-width: 991px){
  .hero-content h1{
    font-size: 48px;
  }
  #opportunities h2{
    width: 100%;
  }
  #opportunities h2, 
  #map-section h2, 
  .ticker-item{
    font-size: 44px;
  }
  .opp-card-address, 
  #quote-banner p, 
  .why-feature, 
  .gallery-intro{
    font-size: 16px;
  }
  #quote-banner h2, 
  #why h2, 
  #gallery h2{
    font-size: 48px;
    line-height: 1.2;
  }
  .why-feature span, 
  #map-section .category-item{
    font-size: 20px;
  }
  .map-grid{
    gap: 30px;
  }
  .footer-links a, 
  .footer-column .footer-text{
    font-size: 16px;
  }
  .about-content p{
    font-size: 16px;
  }
  .why-features{
    max-width: 600px;
  }
  #quote-banner p{
    line-height: 1.3;
  }
}

@media(max-width: 767px){
  #map-section .map-image{
    aspect-ratio: 16 / 9;
  }
  .contact-item{
    font-size: 14px;
  }

  #map-section .category-list{
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    gap: 12px 20px;
    padding-left: 0;
  }
  #map-section .category-item{
    border-top: none;
  }
  #map-section .map-grid{
    grid-template-columns: 1fr;
  }
  .map-grid {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .site-footer .footer-grid .footer-column{
    margin: 0 auto;
  }
  .footer-socials, 
  .footer-links .foot-contact-text-with-icon{
    justify-content: center;
  }
  .footer-column.footer-contact .footer-text{
    text-align: center;
  }
  .footer-base p{
    text-align: center;
  }
  .hero-content h1{
    font-size: 44px;
  }
   #quote-banner h2, #why h2, #gallery h2{
    font-size: 40px;
  }
  .about-title {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  .opp-header{
    padding-bottom: 50px;
  }
  #opportunities h2, #map-section h2, .ticker-item{
    font-size: 40px;
  }
  .opp-card-title{
    font-size: 24px;
  }
  .stat-number{
    font-size: 80px;
    margin-bottom: 20px;
    line-height: 1;
  }
  .stat-label{
    font-size: 16px;
  }
  #stats .stats-grid{
    gap: 50px 20px;
  }
  .why-features{
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .contact-tab{
    right: -5px;
  }
  .header-home {padding: 20px 0 !important;}
  .contact-tab{right: -6px !important;padding:20px 5px 20px 9px;font-size: 14px;  line-height: 24.88px;}
   .hero-content h1 {font-size: 42px;}
   .about-title, #quote-banner h2, #why h2, #gallery h2
   #opportunities h2, #map-section h2, .ticker-item, 
   #opportunities h2, #map-section h2, .ticker-item, 
   #quote-banner h2, #why h2, #gallery h2{font-size: 36px; line-height: 44px; }
   #gallery h2{
    margin-bottom: 20px;
   }
  #stats {background: #eee;padding: 40px 20px;}
   .stat-number {font-size: 48px;margin-bottom: 10px;line-height: 1;  }
    #stats .stats-grid {gap: 30px 0px;  }
    .why-feature{gap: 0;flex-flow: column;text-align: center;}
    .why-feature span{font-size: 20px;display: block;width: 100%;    line-height: 20px;}
   #sideMenu.side-menu{
    width: 100%;
    max-width: calc(100% - 80px);
    right: -100%;
    padding: 10px 20px;
  }
  #sideMenu.side-menu a{
    font-size: 16px;
    padding: 10px 0;
   }
   #sideMenu.side-menu .menu-inner .consultation-btn-box .consultation-btn{
        font-size: 16px;
        padding: 0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
      }
    #ticker{
      padding: 20px 0;
    }
  }


    
    @media(max-width: 576px){
      .half-hero-section .hero-content h1{
        font-size: 38px;
      }
      .half-hero-section .carousel-item,
      .half-hero-section .hero-slide{
        max-height: 740px;
        min-height: 700px;
      }
    #map-section .category-list{
      flex-direction: column;
    }
    #map-section .category-item{
      width: 100%;
    }
    #sideMenu.side-menu .menu-inner .consultation-btn-box .consultation-btn{
    font-size: 14px;

    }
  .site-header .navbar-brand{
        max-width: 250px;
  }
  .site-header .burgerparent{
    width: fit-content;
  }
  .site-header .contact-head{
    flex: 1;
  }
  .contact-tab {
    right: -14px !important;
    padding: 20px 0px 20px 12px;
    font-size: 14px;
    line-height: 24.88px;
    bottom: 0%;
    top: auto;
    letter-spacing: 0.05em;
  }
  .opp-slider-wrap {padding-left: 0px !important; left:24px;}
  .opp-swiper-btn{left: 0;}
  .oppSwiper .swiper-slide{
    width: 200px;
  }
  .opp-card-title{font-size: 22px;}
  .opp-card-address{font-size: 14px; line-height: 1.4;}
}

@media (max-width:400px){
}


/* Contact panel overlay — no flex centering interference */
#contact-modal-overlay.contact-panel-overlay {
  display: block; /* override base overlay's flex centering entirely */
}

/* Contact panel itself — pinned to the right edge, ignores flex/margin from base modal */
#contact-modal-overlay .contact-modal {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: 0 !important;
  height: 100vh !important;
  max-height: 100vh !important;
  width: 420px;
  max-width: 90vw;
  margin: 0 !important;
  border-radius: 0;
  overflow-y: auto;
  transform: translateX(100%);
  opacity: 1 !important;
  visibility: visible !important;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
#contact-modal-overlay .contact-modal::before{
  display: none;
}

#contact-modal-overlay.is-active .contact-modal,
#contact-modal-overlay .contact-modal.slide-in {
  transform: translateX(0) !important;
}

@media (max-width: 480px) {
  #contact-modal-overlay .contact-modal {
    width: 100vw;
  }
}