/* Style 2 - Modern Card-Based Real Estate Theme */
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');



:root {
  --accent: #0d9488;
  --accent-dark: #0f766e;
  --gold: #b88242;
  --gold-light: #c49452;
  --dark-bg: #0f172a;
  --card-bg: #1e293b;
  --text: #f1f5f9;
  --muted: #94a3b8;
  --radius: 16px;
  --radius-sm: 10px;
}

body.style2 {
  font-family: 'Frank Ruhl Libre', 'Segoe UI', serif;
  background: var(--dark-bg);
  color: var(--text);
}

/* Nav - Style 2 */
.style2 .navbar {
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  padding: 1rem 0;
}

.style2 .navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text) !important;
}

.style2 .navbar-brand i {
  color: var(--accent);
}

.style2 .nav-link {
  color: var(--muted) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.style2 .nav-link:hover,
.style2 .nav-link.active {
  color: #e89634 !important;
   
}

.style2 .btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white !important;
  font-weight: 600;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
  font-family: "Poppins", sans-serif;
}

.style2 .btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.5);
  color: white !important;
}

/* Hero - Full height slider with transparent header overlay */
.hero-dehomes {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-dehomes-inner {
  position: relative;
  min-height: 100vh;
  width: 100%;
}

@media (max-width: 767.98px) {
  .hero-dehomes,
  .hero-dehomes-inner {
    min-height: 0;
  }
}

/* Hero slider - full height, behind header */
.hero-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  z-index: 0;
}

/* Slide transition: image slides left to right, faster (0.5s) */
.hero-slider .carousel-inner {
  overflow: hidden;
}

.hero-slider .carousel-item {
  transition: transform 1.2s ease-in-out;
  backface-visibility: hidden;
}

/* Smooth directional slide:
   - Next (right arrow): slides right → left (new enters from right)
   - Prev (left arrow): slides left → right (new enters from left) */
.hero-slider.hero-slider-ltr .carousel-item-next {
  transform: translateX(100%) !important;
}

.hero-slider.hero-slider-ltr .carousel-item-prev {
  transform: translateX(-100%) !important;
}

.hero-slider.hero-slider-ltr .carousel-item-next.carousel-item-start,
.hero-slider.hero-slider-ltr .carousel-item-prev.carousel-item-end {
  transform: translateX(0) !important;
}

.hero-slider.hero-slider-ltr .carousel-item.active {
  transform: translateX(0) !important;
}

.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  min-height: 100vh;
  position: relative;
}

/* Mobile hero carousel: in flow, height = natural image (no 100vh) */
.hero-m-carousel {
  position: relative;
  width: 100%;
  z-index: 0;
}

.hero-m-carousel .carousel-inner {
  overflow: hidden;
}

.hero-m-carousel .carousel-item {
  position: relative;
  transition: transform 1.2s ease-in-out;
  backface-visibility: hidden;
}

.hero-m-carousel.hero-m-carousel-ltr .carousel-item-next {
  transform: translateX(100%) !important;
}

.hero-m-carousel.hero-m-carousel-ltr .carousel-item-prev {
  transform: translateX(-100%) !important;
}

.hero-m-carousel.hero-m-carousel-ltr .carousel-item-next.carousel-item-start,
.hero-m-carousel.hero-m-carousel-ltr .carousel-item-prev.carousel-item-end {
  transform: translateX(0) !important;
}

.hero-m-carousel.hero-m-carousel-ltr .carousel-item.active {
  transform: translateX(0) !important;
}

.hero-m-slide {
  position: relative;
  line-height: 0;
}

.hero-m-carousel-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-m-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

/* Header overlay - transparent, on top of slider */
.hero-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.hero-header-overlay > * {
  pointer-events: auto;
}

/* Woodland-style: single-row header, centered nav, search + outline CTA */
.hero-header-woodland {
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.hero-nav-single .hero-nav-links {
  gap: 0.5rem;
}

.hero-search-btn {
  font-size: 1.1rem;
  opacity: 0.95;
  transition: opacity 0.2s, color 0.2s;
}

.hero-search-btn:hover {
  opacity: 1;
  color: var(--gold) !important;
}

.hero-btn-outline {
  border: 1px solid rgba(255,255,255,0.9);
  background: transparent;
  color: #fff !important;
  font-weight: 400;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-radius: 40px;
  transition: all 0.35s ease;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.hero-btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Filter bar at bottom of hero */
.hero-filter-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 1.5rem 0 2rem;
}

.hero-filter-inner {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-filter-tabs {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.hero-filter-tab {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0 0 0.35rem;
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
  font-family: "Poppins", sans-serif;
}

.hero-filter-tab::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}

.hero-filter-tab:hover {
  color: #fff;
}

.hero-filter-tab.active {
  color: #fff;
}

.hero-filter-tab.active::after {
  background: #fff;
}

.hero-filter-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
}

.hero-filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-filter-group label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  margin: 0;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
}

.hero-filter-select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 0.4rem 1.75rem 0.4rem 0.6rem;
  border-radius: 4px;
  font-size: 0.9rem;
  min-width: 120px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

.hero-filter-select option {
  background: var(--dark-bg);
  color: #fff;
}

.hero-filter-btns {
  display: flex;
  gap: 0.25rem;
}

.hero-filter-num {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Poppins", sans-serif;
}

.hero-filter-num:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.hero-filter-num.active {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
}

@media (max-width: 768px) {
  .hero-filter-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-filter-group {
    justify-content: space-between;
  }
  .hero-filter-inner {
    padding: 1rem;
  }
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* .hero-slider .carousel-item.active .hero-slide-bg {
  transform: scale(1.06);
} */

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

.hero-slider .hero-content-dehomes {
  position: relative;
  z-index: 2;
  padding: 10rem 0 8rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Woodland-style: two-line headline only, centered */
.hero-woodland .hero-headline {
  margin: 0 0 10px 0;
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 700;
  color: #fff;
}

.hero-woodland .hero-headline-line1,
.hero-woodland .hero-headline-line2 {
  display: block;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-woodland .hero-headline-line2 {
  margin-top: 0.15em;
}

/* Content animation: first heading slides in from the left, second line fades in */
.hero-headline-animate .hero-headline-line1 {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-headline-animate .hero-headline-line2 {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.hero-slider .carousel-item.active .hero-headline-animate .hero-headline-line1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.hero-slider .carousel-item.active .hero-headline-animate .hero-headline-line2 {
  opacity: 1;
  transition-delay: 0.5s;
}

/* Legacy staggered (if used elsewhere) */
.hero-slider .carousel-item .hero-headline-accent,
.hero-slider .carousel-item .hero-headline-main,
.hero-slider .carousel-item .hero-desc,
.hero-slider .carousel-item .hero-cta-btn {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-slider .carousel-item.active .hero-headline-accent {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.hero-slider .carousel-item.active .hero-headline-main {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.35s, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.hero-slider .carousel-item.active .hero-desc {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.5s, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.hero-slider .carousel-item.active .hero-cta-btn {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.65s, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.65s;
}

/* Carousel indicators */
.hero-indicators {
  margin-bottom: 1.5rem;
  z-index: 3;
}

.hero-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s;
}

.hero-indicators button.active {
  background: var(--gold);
  border-color: var(--gold);
}

.hero-indicators button:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.4);
}

/* Carousel prev/next */
.hero-control,
.hero-m-carousel-control {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  opacity: 1;
  z-index: 3;
  transition: all 0.3s;
}

.hero-control:hover,
.hero-m-carousel-control:hover {
  background: var(--gold);
  border-color: var(--gold);
  opacity: 1;
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon,
.hero-m-carousel-control .carousel-control-prev-icon,
.hero-m-carousel-control .carousel-control-next-icon {
  filter: none;
  width: 1.25rem;
  height: 1.25rem;
}

/* Property Boxes Section - below hero, hover reveals button + ul li */
.property-boxes-section {
  position: relative;
  padding: 4rem 0;
  background-image: url('images/background-img.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.property-boxes-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 0;
}

.property-boxes-section .container {
  position: relative;
  z-index: 1;
}

.property-boxes-section .row {
  max-width: 1400px;
  margin: 0 auto;
}

.property-box-card {
  position: relative;
  display: block;
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/2.7;
}

.property-box-img {
  position: absolute;
  inset: 0;
}

.property-box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-box-card:hover .property-box-img img {
  transform: scale(1.06);
}

/* Overlay: heading + description centered; on hover moves slightly up */
.property-box-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding: 1.5rem 1.25rem 1.5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) 60%, transparent);
  transition: transform 0.45s ease;
  z-index: 4;
  pointer-events: none;
}

.property-box-card:hover .property-box-overlay {
  /* Smooth movement using translateY (justify-content isn't smoothly animated) */
  justify-content: flex-end;
  padding-bottom: 1.4rem;
  /* Do not move overlay container: keep full cover */
  transform: none;
  align-items: flex-start;
  /* Keep same transparency level as initial state */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) 60%, transparent);
}

.property-box-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 23px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0 0;
  line-height: 1.2;
  transform: translateY(0);
  transition: transform 0.45s ease;
}

.property-box-desc {
  color: #fff;
  margin: 0;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transform: translateY(0);
  transition: transform 0.45s ease;
}
.property-box-card:hover .property-box-title,
.property-box-card:hover .property-box-desc {
  color: #fff;
  text-align: left;
}

/* Shift only text (smooth), keep overlay background full cover */
.property-box-card:hover .property-box-title,
.property-box-card:hover .property-box-desc {
  /* Animate text only (overlay stays full cover) */
  transform: translateX(0) translateY(-10px);
}

/* Hover layer: ul li + button, appears below overlay text */
.property-box-hover {
  position: absolute;
  inset: 0;
  /* Keep hover layer lighter so it doesn't look darker than initial state */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.28) 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 1.5rem 1.25rem 2rem;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 3;
  pointer-events: none;
}

.property-box-card:hover .property-box-hover {
  opacity: 1;
  pointer-events: auto;
}

.property-box-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  width: 100%;
  text-align: center;
  display: none;
}

.property-box-list li {
  color: #fff;
  font-size: 15px;
    padding: 0rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.4;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.property-box-list li:last-child {
  border-bottom: none;
}

.property-box-card:hover .property-box-list li {
  opacity: 1;
  transform: translateY(0);
}

.property-box-card:hover .property-box-list li:nth-child(1) { transition-delay: 0.08s; }
.property-box-card:hover .property-box-list li:nth-child(2) { transition-delay: 0.16s; }
.property-box-card:hover .property-box-list li:nth-child(3) { transition-delay: 0.24s; }

.property-box-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: transparent;
    border: #ccc solid 1px;
    color: #fff !important;
    border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
   
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s, background 0.25s ease;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

.property-box-card:hover .property-box-btn {
  opacity: 1;
  transform: translateY(0);
}

.property-box-card:hover .property-box-btn:hover {
  background: #e89634;
  color: #fff !important;
  border: #e89634 solid 1px;
}
@media (max-width: 576px) {
  .property-box-card {
    aspect-ratio: 16/10;
  }
}

/* Top bar - transparent overlay */
.hero-topbar {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Poppins", sans-serif;
}

.hero-topbar .hero-social a {
  opacity: 0.9;
  transition: opacity 0.2s;
}

.hero-topbar .hero-social a:hover {
  opacity: 1;
  color: var(--gold) !important;
}

.hero-topbar .hero-contact {
  font-size: 0.9rem;
}

.hero-topbar .hero-contact i {
  opacity: 0.85;
}

@media (max-width: 767px) {




.about-pretitle { 
    margin-bottom: 5px !important; 
}

.about-content {
    padding: 0rem 1.5rem !important;
    max-width: none;
}

.short-box { 
    margin-bottom: 15px;
}



  .hero-topbar .hero-contact span { font-size: 0.8rem; }
  .hero-topbar .d-flex.gap-4 { gap: 0.75rem !important; }
  .hero-logo-img {
    width: 75px !important; 
}
.hero-nav .navbar-toggler {
    flex-shrink: 0;
    padding: 0.3rem 0.6rem;
    border: #e89634 solid 1px;
}

.hero-nav #heroNavCollapse.collapse.show {
    background: rgb(0 0 0 / 92%) !important;
    margin-top: 0rem !important;
    padding: 0rem 0 0rem !important;
    border-radius: 0 !important;
}

.hero-nav .nav-link { 
  padding: 0.8rem 0.75rem !important; 
}


}

/* Main nav - transparent overlay */
.hero-nav {
  background: #000000a8;
  padding: 5px 0 5px 0;
}

.hero-nav .nav-link {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 400;
  padding: 0.4rem 0.75rem !important;
  font-family: "Poppins", sans-serif;
  position: relative;
  transition: color 0.35s ease, transform 0.3s ease;
}

.hero-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}

.hero-nav .nav-link:hover,
.hero-nav .nav-link.active {
  color: #e89634 !important;
  transform: translateY(-2px);
}

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

.hero-nav .navbar-toggler {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  padding: 0.4rem 0.55rem;
}

/* Visible hamburger on dark hero (nav is not wrapped in .navbar-dark, so default icon is dark) */
.hero-nav .navbar-toggler-icon {
  width: 1.35em;
  height: 1.35em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 98, 0.4);
}

/* Desktop dropdown on hover for hero nav */
@media (min-width: 992px) {
  .hero-nav .has-submenu:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .hero-nav .has-submenu > .nav-link::after {
    margin-left: 0.25rem;
    vertical-align: 0.05em;
    content: '▾';
    font-size: 0.7em;
  }
}

/* Mobile nav dropdown - slight bg so links are readable over slider */
.hero-nav #heroNavCollapse.collapse {
  transition: height 0.35s ease, opacity 0.3s ease;
}

.hero-nav #heroNavCollapse.collapse.show {
  background: rgba(15, 23, 42, 0.92);
  margin-top: 0.5rem;
  padding: 0.5rem 0 0.5rem;
  border-radius: 8px;
}

.hero-nav #heroNavCollapse .nav-link {
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.hero-nav #heroNavCollapse .nav-link:hover {
  padding-left: 0.5rem !important;
}

/* Logo - hover animation */
.hero-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

.hero-logo-img {
  width: 100px;
  display: block;
  transition: transform 0.35s ease;
}

.hero-logo:hover .hero-logo-img {
  transform: scale(1.03);
}

.aboutinner-section{
  background: #000;
  padding: 4rem 0 5rem 0;
}

.aboutinner-section .section-title {
  color: #fff;
  font-family: 'Frank Ruhl Libre', serif;
  margin-bottom: 1.5rem;
}

.aboutinner-section p {
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: "Poppins", sans-serif;
}





/* Inner hero (breadcrumb banner) for inner pages */
.style2 .inner-hero {
  position: relative;
  min-height: 260px;
  padding: 1.25rem 0 3.5rem;
  color: #fff;
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/about1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 5s ease-out;
  z-index: 0;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}

.inner-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 0rem;
}

.inner-hero:hover .inner-hero-bg {
  transform: scale(1.06);
}

.inner-hero-listings .inner-hero-bg {
  background-image: url('images/main-slider.jpg');
}
.inner-hero-contact .inner-hero-bg {
  background-image: url('images/main-slider.jpg');
}

.inner-hero-nav {
  padding-top: 0.25rem;
  padding-bottom: 0.75rem;
}

.inner-hero-content {
  padding-top: 2.5rem;
  max-width: 640px;
}

.inner-breadcrumb .breadcrumb {
  margin-bottom: 0.75rem;
}

.inner-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(148, 163, 184, 0.9);
}

.inner-breadcrumb .breadcrumb a {
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
}

.inner-breadcrumb .breadcrumb a:hover {
  color: var(--gold);
}

.inner-hero-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.inner-hero-subtitle {
  color: rgba(226, 232, 240, 0.9);
  font-size: 1rem;
  max-width: 520px;
}

@media (max-width: 767.98px) {
  .style2 .inner-hero {
    min-height: 220px;
    padding-bottom: 3rem;
  }
  .inner-hero-content {
    padding-top: 2rem;
  }
}

/* Listings page */
.style2 .listings-intro-section {
  background: #000;
  padding: 4rem 0 4.5rem;
  color: #fff;
}

.listings-kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

.listings-collection-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

.listings-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-family: "Poppins", sans-serif;
}

.listings-vetting-list li {
  position: relative;
  padding: 1rem 0 1rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.55;
  font-family: "Poppins", sans-serif;
}

.listings-vetting-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.listings-vetting-list li:last-child {
  border-bottom: none;
}

.listings-vetting-list li strong {
  color: #fff;
  font-weight: 600;
}

.style2 .listings-cta-section {
  position: relative;
  background: linear-gradient(135deg, #0a0e17 0%, #1a2332 50%, #0d1321 100%);
  color: #fff;
  padding: 4.5rem 0;
  overflow: hidden;
}

.listings-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.listings-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.listings-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.listings-cta-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.listings-cta-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.listings-cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-family: "Poppins", sans-serif;
}

.listings-cta-btn {
  background: var(--gold) !important;
  color: #1a1a1a !important;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.listings-cta-btn:hover {
  background: var(--gold-light) !important;
  color: #1a1a1a !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.35);
}

/* Contact page dark theme */
.style2 .contact-dark-section {
  background: #000;
  padding: 4rem 0 5rem;
}

.contact-dark-card,
.contact-form-card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.5);
}

.contact-dark-card {
  padding: 2rem 1.75rem;
}

.contact-item p {
  color: rgba(226, 232, 240, 0.78);
}

.contact-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-social:hover {
  background: var(--gold);
  color: #1a1a1a;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #fff;
}

.contact-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 98, 0.2);
  color: #fff;
}

.contact-form-card .form-select option {
  background: #0f172a;
  color: #fff;
}

.contact-submit-btn {
  background: var(--gold) !important;
  color: #1a1a1a !important;
  border: none;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-submit-btn:hover {
  background: var(--gold-light) !important;
  color: #1a1a1a !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 169, 98, 0.28);
}

/* Founders section */
.style2 .founders-section {
  background: #020617;
  padding: 4rem 0 5rem;
}

.founder-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 2.25rem 2rem;
  height: 100%;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.65);
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.founder-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(248, 250, 252, 0.8);
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.9);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-photo i {
  font-size: 1.8rem;
  color: #e5e7eb;
}

.founder-name {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #e5e7eb;
  margin-bottom: 1rem;
}

.founder-name span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
}

.founder-text {
  color: rgba(209, 213, 219, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 767.98px) {
  .founder-card {
    padding: 1.75rem 1.5rem;
  }
}

/* Hero content */
.hero-content-dehomes {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0 4rem;
}

.hero-headline {
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-headline-accent {
  display: block;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 75px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.hero-headline-main {
  display: block;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 75px;

  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
   max-width: 800px;
  margin-bottom: 1.75rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

.hero-cta-btn {
  background: #e89634;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: 6px;
  text-transform: uppercase;
  transition: all 0.25s;
  font-family: "Poppins", sans-serif;
}

.hero-cta-btn:hover {
  background: #e89634;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35);
}

/* About Us Section - Dark theme, 2 images only, no bg on content */


.box-sec {
    margin: 60px 0 0 0;
}

.short-box {
    background: #151515;
    border: #414141 solid 1px;
    padding: 40px 25px 30px 25px;
    min-height: 287px;
    border-radius: 10px;
}

.short-box h3 {
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    padding: 0 0 10px 0;
    text-align: center;
    font-weight: 700;
    color: #e89634;
}


.short-box p {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    padding: 0 0 0px 0;
    text-align: center;
    font-weight: 400;
    margin: 0 0 0 0;
}

.about-flex {
    align-items: center !important;
    justify-content: center;
}





.about-section-dark {
  background: #000;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

/*.about-section-dark .row {
  min-height: 520px;
}*/

.about-col-left,
.about-col-right {
  position: relative;
}

/* Left: two images only */
.about-img-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0rem 2rem 0rem 0;
  height: 100%;
  
}

.about-img-wrap {
  flex: 1;
  min-height: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.about-img-1 { flex: 1.1; }
.about-img-2 { flex: 1; }

.about-img-wrap img {
  width: 100%;
   
  object-fit: cover;
  display: block;
}

/* Right: content only - no background color */
.about-col-right {
  background: transparent;
}

.about-content {
  padding: 0rem 0rem 0rem 2rem;
  background: transparent;
}

.about-pretitle {
    display: block;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #e89634;
    margin-bottom: 35px;
    font-family: "Poppins", sans-serif;
    text-align: center;
}




.about-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.about-title span{
  color: #e89634;
  font-weight: 700;
}

.about-desc {
  color: #d7d7d7;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
}

.about-features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
  color: #d7d7d7;
  font-size: 0.9rem;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

.about-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 2px;
  background: var(--gold);
}

@media (max-width: 991px) {
  .about-section-dark .row {
    min-height: auto;
  }
  .about-img-stack {
    min-height: 420px;
    flex-direction: row;
    padding: 2rem 1rem 2rem 1rem;
  }
  .about-img-wrap {
    min-height: 260px;
  }
  .about-content {
    padding: 2rem 1.5rem;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .about-img-stack {
    flex-direction: column;
    min-height: auto;
    padding: 1.5rem 1rem;
  }
  .about-img-1,
  .about-img-2 {
    min-height: 220px;
  }
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

.min-vh-50 {
  min-height: 50vh;
}

/* Legacy hero (if used elsewhere) */
.style2 .hero-section {
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 4rem 0 5rem;
  position: relative;
}

.style2 .hero-section h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff 0%, var(--muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.style2 .search-box {
  background: var(--card-bg);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}

/* Section titles - Style 2 */
.style2 .section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
}

.style2 .section-subtitle {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-family: "Poppins", sans-serif;
}

/* Property cards - Style 2: Glassmorphism cards */
.style2 .property-card {
  background: var(--card-bg);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.style2 .property-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.style2 .property-card .card-img-top {
  height: 200px;
  object-fit: cover;
  opacity: 0.9;
}

.style2 .property-card .img-wrapper {
  overflow: hidden;
  position: relative;
}

.style2 .property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
  font-family: "Poppins", sans-serif;
}

.style2 .property-card .card-body {
  padding: 1.5rem;
  background: var(--card-bg);
}

.style2 .property-card .card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.style2 .property-card .location {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  font-family: "Poppins", sans-serif;
}

.style2 .property-card .location i {
  color: var(--accent);
  margin-right: 5px;
}

.style2 .property-card .price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  font-family: "Poppins", sans-serif;
}

.style2 .property-card .features span {
  font-size: 0.85rem;
  color: var(--muted);
  margin-right: 1rem;
  font-family: "Poppins", sans-serif;
}

/* Features - Style 2: dark black background */
.style2 .features-section {
  background: #000;
  padding: 4.5rem 0 5rem;
  border-top: none;
}

.style2 .features-section .section-title {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  padding: 0 0 0 0;
  margin: 0 0 5px 0;
}
.style2 .features-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.style2 .features-section .row > [class*="col"] {
  display: flex;
}

.style2 .feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 280px;
  padding: 3rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s ease;
}

.style2 .feature-box:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.style2 .feature-box i {
  font-size: 3rem;
  color: #e89634;
  margin-bottom: 1.5rem;
}

.style2 .feature-box h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
  font-family: "Cormorant Garamond", serif;
}

.style2 .feature-box .text-muted {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

/* Testimonials Section - Owl Carousel, 3 per slide */
.style2 .testimonials-section {
  background: #0a0e17;
  padding: 4.5rem 0 5rem;
  color: #fff;
}

.style2 .testimonials-section .section-title {
  color: #fff;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.style2 .testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
}

.testimonial-item {
  padding: 0 6px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 150, 52, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
  font-family: "Poppins", sans-serif;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-name {
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  font-family: 'Frank Ruhl Libre', serif;
}

.testimonial-role {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Poppins", sans-serif;
}

/* Owl Carousel overrides - testimonials */
.testimonials-section .owl-carousel .owl-stage-outer {
  padding: 8px 0 16px;
}

.testimonials-section .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0;
  pointer-events: none;
}

.testimonials-section .owl-carousel .owl-nav button {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.testimonials-section .owl-carousel .owl-nav button:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #1a1a1a !important;
}

.testimonials-section .owl-carousel .owl-nav .owl-prev {
  left: -56px;
}

.testimonials-section .owl-carousel .owl-nav .owl-next {
  right: -56px;
}

.testimonials-section .owl-carousel .owl-dots {
  margin-top: 1.5rem;
  line-height: 1;
}

.testimonials-section .owl-carousel .owl-dots .owl-dot {
  outline: none;
}

.testimonials-section .owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.testimonials-section .owl-carousel .owl-dots .owl-dot.active span,
.testimonials-section .owl-carousel .owl-dots .owl-dot:hover span {
  background: var(--gold);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials-section .owl-carousel .owl-nav .owl-prev {
    left: 0;
  }
  .testimonials-section .owl-carousel .owl-nav .owl-next {
    right: 0;
  }
}

@media (max-width: 767px) {
  .style2 .testimonials-section {
    padding: 3rem 0 4rem;
  }
  .testimonial-card {
    min-height: 220px;
    padding: 1.5rem 1.25rem;
  }
}

/* Blog Cards Section - below testimonials */
.style2 .blog-cards-section {
  background: #000;
  padding: 4.5rem 0 5rem;
  color: #fff;
}

.style2 .blog-cards-section .section-title {
  color: #fff;
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.style2 .blog-cards-section .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 150, 52, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.blog-card-img-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.blog-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

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

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-family: "Poppins", sans-serif;
}

.blog-card-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-card-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--gold);
}

.blog-card-excerpt {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
  font-family: "Poppins", sans-serif;
}

.blog-card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.blog-card-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.blog-section-btn {
  background: var(--gold) !important;
  color: #1a1a1a !important;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.blog-section-btn:hover {
  background: var(--gold-light) !important;
  color: #1a1a1a !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
}

@media (max-width: 767px) {
  .style2 .blog-cards-section {
    padding: 3rem 0 4rem;
  }
  .blog-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

/* CTA - Style 2 */
/* CTA Section - Redesigned */
.style2 .cta-section {
  position: relative;
  background: linear-gradient(135deg, #0a0e17 0%, #1a2332 50%, #0d1321 100%);
  color: #fff;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-section-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.cta-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cta-btn-primary {
  background: var(--gold) !important;
  color: #1a1a1a !important;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.cta-btn-primary:hover {
  background: var(--gold-light) !important;
  color: #1a1a1a !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.35);
}

.cta-btn-outline {
  background: transparent !important;
  color: #fff !important;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.cta-btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: rgba(201, 169, 98, 0.1) !important;
  transform: translateY(-3px);
}

/* Footer - Style 2 Redesign: transparent bg image + animation */
.style2 .footer.footer-redesign {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
  border-top: none;
  overflow: hidden;
}

.style2 .footer.footer-redesign .footer-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  background-attachment: fixed;
}

.style2 .footer.footer-redesign .footer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.style2 .footer.footer-redesign .footer-inner {
  position: relative;
  z-index: 2;
  padding: 4rem 0 2rem;
}

.style2 .footer.footer-redesign .footer-brand {
  margin-bottom: 1rem;
}

.style2 .footer.footer-redesign .footer-logo-link {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.style2 .footer.footer-redesign .footer-logo-link:hover {
  color: #fff;
  opacity: 0.9;
}

.style2 .footer.footer-redesign .footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: "Poppins", sans-serif;
    padding: 0 90px 0 0;
}

.style2 .footer.footer-redesign .footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: "Poppins", sans-serif;
    padding: 0 90px 0 0;
}

.style2 .footer.footer-redesign .footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-brand img{
  width: 120px;
}

.style2 .footer.footer-redesign .footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.style2 .footer.footer-redesign .footer-social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1a1a;
  transform: translateY(-3px);
}

.style2 .footer.footer-redesign .footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
  font-family: 'Frank Ruhl Libre', serif;
}

.style2 .footer.footer-redesign .footer-links li, .style2 .footer.footer-redesign .footer-contact li {
  margin-bottom: 15px;
}

.style2 .footer.footer-redesign .footer-links a,
.style2 .footer.footer-redesign .footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.style2 .footer.footer-redesign .footer-links a:hover {
  color: var(--gold);
}

.style2 .footer.footer-redesign .footer-contact li {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Poppins", sans-serif;
}

.style2 .footer.footer-redesign .footer-contact li i {
  color: #e89634;
  opacity: 0.9;
}

.style2 .footer.footer-redesign .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 3rem;
  padding-top: 1.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.style2 .footer.footer-redesign .footer-bottom p {
  margin: 0;
  font-family: "Poppins", sans-serif;
}

/* Footer - Style 2 (default when not redesign) */
.style2 .footer:not(.footer-redesign) {
  background: #020617;
  color: var(--muted);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.style2 .footer h6 {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 1rem;
}

.style2 .footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.style2 .footer a:hover {
  color: var(--accent);
}

.style2 .footer.footer-redesign a:hover {
  color: var(--gold);
}

.style2 .footer .footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

/* Page header inner pages */
.style2 .page-header {
  background: var(--card-bg);
  color: var(--text);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.style2 .breadcrumb-item a {
  color: var(--muted);
}

.style2 .breadcrumb-item.active {
  color: var(--accent);
}

.style2 .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(13, 148, 136, 0.25);
}
