/**
* Updated: May 2026
* Author: Glamour Star Marketing Management L.L.C.
--------------------------------------------------------------*/
.project-meta i {
  width: 15px;
  min-width: 15px;
  color: #D6A94F;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.project-link i,
.projects-view-all i {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.project-link:hover i,
.projects-view-all:hover i {
  transform: translateX(4px);
}

/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #05080D;
  --default-color: #F5F1E8;
  --heading-color: #F8F3E8;
  --accent-color: #D6A94F;
  --surface-color: #0B1118;
  --contrast-color: #05080D;

  --bg-deep: #02040A;
  --bg-card-soft: #101820;
  --gold-soft: #E8C878;
  --text-muted: #A7AAB0;
  --border-soft: rgba(255, 255, 255, 0.08);
}

/* Nav Menu Colors */
:root {
  --nav-color: #F5F1E8;
  --nav-hover-color: #D6A94F;
  --nav-mobile-background-color: #05080D;
  --nav-dropdown-background-color: #0B1118;
  --nav-dropdown-color: #F5F1E8;
  --nav-dropdown-hover-color: #D6A94F;
}

/* Color Presets */

.light-background {
  --background-color: #0B1118;
  --surface-color: #101820;
  --default-color: #F5F1E8;
  --heading-color: #F8F3E8;
}

.dark-background {
  --background-color: #02040A;
  --default-color: #F5F1E8;
  --heading-color: #F8F3E8;
  --surface-color: #0B1118;
  --contrast-color: #05080D;
}

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

/* Global Public Website Scrollbar */

/* Firefox */
html,
body,
* {
  scrollbar-width: thin;
  scrollbar-color: #c9a45c #02040a;
}

/* Chrome / Edge / Safari */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #02040a;
}

*::-webkit-scrollbar-thumb {
  background: #c9a45c;
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #e0bf70;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background:
          radial-gradient(circle at top center, #101820 0%, #05080D 45%, #02040A 100%);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--gold-soft);
  text-decoration: none;
}

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

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

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(2, 4, 10, 0.12);
  --default-color: #F5F1E8;
  --heading-color: #F8F3E8;
  color: var(--default-color);
  background: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 10px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: #F5F1E8;
  font-size: 13px;
  padding: 9px 26px;
  margin: 0 0 0 30px;
  border-radius: 999px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 1px solid rgba(214, 169, 79, 0.75);
  background: rgba(214, 169, 79, 0.08);
  letter-spacing: 0.6px;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  border-color: #D6A94F;
  box-shadow: 0 0 24px rgba(214, 169, 79, 0.25);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 16px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  background: rgba(2, 4, 10, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(214, 169, 79, 0.12);
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 13px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

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

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 1px;
    bottom: -7px;
    left: 0;
    background: linear-gradient(90deg, transparent, #D6A94F, transparent);
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out;
  }

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

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #E8C878;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 12px 0;
    background: rgba(11, 17, 24, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 14px;
    z-index: 99;
    border: 1px solid rgba(214, 169, 79, 0.12);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  }

  .navmenu .dropdown ul li {
    min-width: 220px;
  }

  .navmenu .dropdown ul a {
    padding: 11px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    letter-spacing: 0.2px;
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: #D6A94F;
    background: rgba(214, 169, 79, 0.06);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #F5F1E8;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .mobile-nav-toggle:hover {
    color: #D6A94F;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 72px 18px 20px 18px;
    padding: 12px 0;
    margin: 0;
    border-radius: 18px;
    background: rgba(11, 17, 24, 0.98);
    border: 1px solid rgba(214, 169, 79, 0.14);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #F5F1E8;
    padding: 12px 22px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background: rgba(214, 169, 79, 0.10);
    color: #D6A94F;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background: #D6A94F;
    color: #05080D;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #D6A94F;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background: #D6A94F;
    color: #05080D;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background: rgba(2, 4, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s ease-in-out;
    border-radius: 14px;
  }

  .navmenu .dropdown ul ul {
    background: rgba(2, 4, 10, 0.45);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background: rgba(214, 169, 79, 0.04);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #D6A94F;
    position: absolute;
    font-size: 32px;
    top: 18px;
    right: 18px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(2, 4, 10, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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



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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background: transparent;
  padding: 80px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section {
  background: #02040A;
}

.section-title {
  padding-bottom: 52px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  font-weight: 500;
  padding: 0;
  line-height: 1;
  margin: 0 0 18px 0;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--accent-color);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title {
    padding-bottom: 36px;
  }

  .section-title p {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 110px 0 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #02040A;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* تصویر بیشتر سمت راست دیده بشه */
  object-position: center right;

  z-index: 1;

  /* شارپ‌تر و سینمایی‌تر */
  transform: scale(1.02);

  /* سمت راست واضح‌تر */
  opacity: 0.92;
}

/* لایه اصلی فید مشکی */
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    /* فید افقی اصلی */
          linear-gradient(
                  90deg,
                  rgba(2, 4, 10, 0.98) 0%,
                  rgba(2, 4, 10, 0.94) 18%,
                  rgba(2, 4, 10, 0.78) 34%,
                  rgba(2, 4, 10, 0.42) 52%,
                  rgba(2, 4, 10, 0.10) 74%,
                  rgba(2, 4, 10, 0.04) 100%
          ),

            /* فید عمودی بالا و پایین */
          linear-gradient(
                  180deg,
                  rgba(2, 4, 10, 0.52) 0%,
                  rgba(2, 4, 10, 0.12) 38%,
                  rgba(2, 4, 10, 0.88) 100%
          );
}

/* فقط سمت چپ glow طلایی داشته باشه */
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
          radial-gradient(
                  circle at 18% 30%,
                  rgba(2, 6, 14, 0.16),
                  transparent 30%
          ),

          radial-gradient(
                  circle at 24% 52%,
                  rgba(7, 33, 89, 0.07),
                  transparent 30%
          );
}

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

.hero h2 {
  margin: 0;
  max-width: 720px;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(46px, 6vw, 76px);

  font-weight: 600;

  line-height: 0.92;

  letter-spacing: -1px;

  text-transform: uppercase;

  color: var(--heading-color);
}

.hero h2 span,
.hero .text-accent {
  color: var(--accent-color);
}

.hero p {
  color: rgba(245, 241, 232, 0.78);

  margin: 22px 0 0 0;
  max-width: 520px;

  font-size: 16px;
  line-height: 1.8;
}

.hero .btn-get-started {
  background: linear-gradient(135deg, #E8C878, #D6A94F);

  color: #05080D;

  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;

  display: inline-block;

  padding: 14px 32px;

  border-radius: 8px;

  transition: 0.3s;

  text-transform: uppercase;

  border: 1px solid rgba(214, 169, 79, 0.75);

  box-shadow: 0 18px 40px rgba(214, 169, 79, 0.18);
}

.hero .btn-get-started:hover {
  transform: translateY(-2px);

  box-shadow: 0 22px 55px rgba(214, 169, 79, 0.28);
}

.hero .btn-watch-video {
  font-size: 14px;

  transition: 0.3s;

  margin-left: 18px;

  font-weight: 500;

  color: #F5F1E8;

  display: inline-flex;
  align-items: center;

  padding: 13px 28px;

  border-radius: 8px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  background: rgba(11, 17, 24, 0.32);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  text-transform: uppercase;

  letter-spacing: 0.8px;
}

.hero .btn-watch-video i {
  color: var(--accent-color);

  font-size: 26px;

  transition: 0.3s;

  line-height: 0;

  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);

  border-color: rgba(214, 169, 79, 0.55);

  background: rgba(214, 169, 79, 0.08);
}

.hero .btn-watch-video:hover i {
  color: var(--gold-soft);
}

@media (max-width: 768px) {

  .hero {
    min-height: 82vh;
    padding: 120px 0 70px;
  }

  .hero img {
    object-position: center;
    opacity: 0.75;
  }

  .hero:before {
    background:
            linear-gradient(
                    90deg,
                    rgba(2, 4, 10, 0.96),
                    rgba(2, 4, 10, 0.74)
            ),

            linear-gradient(
                    180deg,
                    rgba(2, 4, 10, 0.50),
                    rgba(2, 4, 10, 0.94)
            );
  }

  .hero:after {
    background:
            radial-gradient(
                    circle at 20% 24%,
                    rgba(214, 169, 79, 0.12),
                    transparent 34%
            );
  }

  .hero h2 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.7;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    display: inline-flex;

    margin: 10px 8px 0 0;

    padding: 12px 20px;
  }
}

/*--------------------------------------------------------------
# Property Search Section
--------------------------------------------------------------*/
.property-search-section {
  padding: 0 0 40px;
  margin-top: -55px;
  position: relative;
  z-index: 5;
  background: #02040A;
}

.property-search-box {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.9fr 1fr 0.85fr 210px;
  align-items: center;
  gap: 0;

  padding: 18px;

  border-radius: 14px;

  background: rgba(11, 17, 24, 0.86);

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.search-field {
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.property-search-btn {
  height: 58px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  color: #05080D;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
  box-shadow: 0 18px 38px rgba(214, 169, 79, 0.18);
  white-space: nowrap;
}

.search-field label {
  display: block;

  margin-bottom: 8px;

  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: rgba(245, 241, 232, 0.58);
}

.search-field select {
  width: 100%;

  border: 0;
  outline: 0;

  background: transparent;

  color: #F5F1E8;

  font-size: 15px;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  background-image:
          linear-gradient(45deg, transparent 50%, #D6A94F 50%),
          linear-gradient(135deg, #D6A94F 50%, transparent 50%);

  background-position:
          calc(100% - 10px) 55%,
          calc(100% - 5px) 55%;

  background-size:
          5px 5px,
          5px 5px;

  background-repeat: no-repeat;
}

.search-field select option {
  background: #0B1118;
  color: #F5F1E8;
}

.property-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(214, 169, 79, 0.28);
}

@media (max-width: 1199px) {
  .property-search-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .search-field {
    padding: 0;
    border-right: 0;
  }

  .property-search-btn {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .property-search-section {
    margin-top: -30px;
    padding: 0 0 30px;
  }

  .property-search-box {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .property-search-btn {
    grid-column: span 1;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Featured Properties Block
--------------------------------------------------------------*/
.featured-properties-block {
  padding: 38px 0 80px;
  background: #02040A;
}

.featured-properties-block .row {
  align-items: stretch;
}

/* Left Column */
.service-grid {
  height: 100%;
  min-height: 460px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-content: stretch;
}

.service-card {
  min-height: 197px;
  height: 100%;
  padding: 30px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.86), rgba(5, 8, 13, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: #F5F1E8;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.service-card i,
.service-buy-svg-icon {
  display: block;
  margin: 0 auto 18px;
  color: #D6A94F;
}

.service-card i {
  font-size: 34px;
  line-height: 1;
}

.service-buy-svg-icon {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 700;
  color: #D6A94F;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.service-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

.service-card:hover {
  color: #F5F1E8;
  transform: translateY(-4px);
  border-color: rgba(214, 169, 79, 0.32);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  background: linear-gradient(180deg, rgba(20, 29, 38, 0.92), rgba(5, 8, 13, 0.98));
}

.service-card:hover i,
.service-card:hover .service-buy-svg-icon {
  color: #E8C878;
}

/* Right Column Header */
.featured-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.featured-header h2 {
  margin: 0;
  font-family: var(--nav-font);
  color: #F5F1E8;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.featured-header a {
  color: #D6A94F;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
}

.featured-header a i {
  margin-left: 8px;
}

/* Featured Swiper */
.featured-properties-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2px 2px 34px;
}

.featured-properties-swiper .swiper-wrapper {
  align-items: stretch;
}

.featured-properties-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.featured-properties-swiper .property-card {
  width: 100%;
  height: auto;
  min-height: 376px;
}

/* Pagination */
.featured-properties-pagination {
  bottom: 0 !important;
}

.featured-properties-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: rgba(245, 241, 232, 0.38);
  opacity: 1;
}

.featured-properties-pagination .swiper-pagination-bullet-active {
  width: 22px;
  border-radius: 999px;
  background: #D6A94F;
}

/* Property Card */
.property-card {
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.88), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 169, 79, 0.25);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

.property-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.property-card-link:hover {
  color: inherit;
}

.property-card-link:hover h3 {
  color: #D6A94F;
}

.property-image {
  height: 178px;
  flex: 0 0 178px;
  position: relative;
  overflow: hidden;
}

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

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

.property-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 5px;
  background: rgba(2, 4, 10, 0.78);
  color: #F5F1E8;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.property-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #F5F1E8;
  font-size: 22px;
  line-height: 1;
  transition: color 0.3s ease;
}

.property-fav:hover {
  color: #D6A94F;
}

.property-info {
  flex: 1;
  padding: 18px 17px 19px;
  display: flex;
  flex-direction: column;
}

.property-info h3 {
  min-height: 42px;
  margin: 0 0 6px;
  color: #F5F1E8;
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.25s ease;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-info p {
  min-height: 20px;
  margin: 0 0 13px;
  color: rgba(245, 241, 232, 0.62);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.property-meta {
  min-height: 38px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px 12px;
  margin-bottom: 14px;
  color: rgba(245, 241, 232, 0.66);
  font-size: 12px;
}

.property-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: 100%;
  white-space: nowrap;
}

.property-meta span:last-child {
  flex-basis: 100%;
}

.property-meta i {
  margin-right: 4px;
  color: rgba(245, 241, 232, 0.72);
}

.meta-svg-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: #D6A94F;
}

.property-info strong {
  margin-top: auto;
  display: block;
  color: #D6A94F;
  font-size: 16px;
  font-weight: 800;
}

.property-info small {
  color: rgba(245, 241, 232, 0.66);
  font-weight: 400;
}

/* Optional non-swiper grid fallback */
.featured-property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Responsive */
@media (max-width: 1199px) {
  .service-grid,
  .featured-property-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    min-height: 396px;
  }

  .service-card {
    min-height: 190px;
  }

  .featured-properties-swiper .property-card {
    min-height: 366px;
  }

  .property-image {
    height: 170px;
    flex-basis: 170px;
  }
}

@media (max-width: 991px) {
  .service-grid {
    height: auto;
    min-height: 0;
  }

  .service-card {
    min-height: 160px;
  }

  .featured-header {
    margin-top: 12px;
  }

  .featured-properties-swiper .property-card {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .featured-properties-block {
    padding: 30px 0 60px;
  }

  .service-grid,
  .featured-property-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 24px 18px;
  }

  .property-image {
    height: 190px;
    flex-basis: 190px;
  }

  .property-info h3 {
    min-height: auto;
  }

  .property-meta {
    min-height: auto;
  }
}


/*--------------------------------------------------------------
# Explore UAE Communities Section
--------------------------------------------------------------*/
.explore-communities-section {
  padding: 62px 0 86px;
  background: #02040A;
  position: relative;
  overflow: hidden;
}

.explore-communities-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
          linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.16;
  pointer-events: none;
}

.explore-communities-section .container {
  position: relative;
  z-index: 2;
}

.explore-communities-header {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 36px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #D6A94F;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-kicker:before {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, #D6A94F, transparent);
}

.explore-communities-header h2 {
  margin: 0;
  max-width: 720px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #F8F3E8;
}

.explore-communities-header p {
  margin: 0;
  color: rgba(245, 241, 232, 0.70);
  font-size: 14px;
  line-height: 1.8;
}

.communities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.community-card {
  min-height: 230px;
  padding: 22px;
  border-radius: 18px;
  background:
          linear-gradient(180deg, rgba(16, 24, 32, 0.96), rgba(11, 17, 24, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  color: inherit;
}

.community-card:before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(214, 169, 79, 0.10);
  filter: blur(4px);
  transition: 0.35s;
}

.community-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(135deg, rgba(214, 169, 79, 0.12), transparent 38%);
  opacity: 0;
  transition: 0.35s;
  pointer-events: none;
}

.community-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 169, 79, 0.28);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  color: inherit;
}

.community-card:hover:before {
  transform: scale(1.18);
  background: rgba(214, 169, 79, 0.18);
}

.community-card:hover:after {
  opacity: 1;
}

.community-card-top,
.community-card-body,
.community-card-footer {
  position: relative;
  z-index: 2;
}

.community-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.community-number {
  color: rgba(245, 241, 232, 0.22);
  font-family: "Arial", serif;
  font-size: 38px;
  line-height: 1;
}

.community-emirate {
  padding: 7px 11px;
  border-radius: 999px;
  color: #D6A94F;
  background: rgba(214, 169, 79, 0.08);
  border: 1px solid rgba(214, 169, 79, 0.14);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.community-card-body h3 {
  margin: 28px 0 8px;
  font-size: 25px;
  font-weight: 600;
  color: #F8F3E8;
}

.community-card-body p {
  margin: 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
}

.community-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #D6A94F;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.community-card-footer i {
  transition: 0.3s;
}

.community-card:hover .community-card-footer i {
  transform: translateX(4px);
}

.community-empty-card {
  grid-column: 1 / -1;
  padding: 36px;
  border-radius: 18px;
  background: rgba(11, 17, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.community-empty-card h3 {
  margin: 0 0 10px;
  color: #F8F3E8;
}

.community-empty-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.68);
}

.communities-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}

.communities-btn,
.communities-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: 0.3s;
}

.communities-btn {
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  border: 1px solid rgba(214, 169, 79, 0.75);
  box-shadow: 0 18px 38px rgba(214, 169, 79, 0.16);
}

.communities-btn:hover {
  color: #05080D;
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(214, 169, 79, 0.25);
}

.communities-map-link {
  color: #F5F1E8;
  background: rgba(11, 17, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.communities-map-link:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.35);
  background: rgba(214, 169, 79, 0.07);
}

/* Responsive */
@media (max-width: 1199px) {
  .explore-communities-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .communities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .communities-grid {
    grid-template-columns: 1fr;
  }

  .community-card {
    min-height: 210px;
  }

  .communities-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .communities-btn,
  .communities-map-link {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# UAE Projects & Developers Section - Dynamic Clean Version
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# UAE Projects & Developers Section
--------------------------------------------------------------*/
.projects-developers-section {
  position: relative;
  overflow: hidden;
  padding: 62px 0 86px;
  background: #02040A;
}

.projects-developers-section .container {
  position: relative;
  z-index: 2;
}

/* Header */
.projects-developers-header {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.projects-developers-header .section-kicker,
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #D6A94F;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.projects-developers-header h2 {
  margin: 0 auto 18px;
  max-width: 760px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  color: #F8F3E8;
}

.projects-developers-header p {
  margin: 0 auto;
  max-width: 680px;
  color: rgba(245, 241, 232, 0.68);
  font-size: 14px;
  line-height: 1.8;
}

/* Panel Header */
.projects-panel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin: 0 0 22px;
}

.projects-panel-header span {
  display: block;
  margin-bottom: 7px;
  color: rgba(245, 241, 232, 0.58);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.projects-panel-header h3 {
  margin: 0;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 600;
  line-height: 1;
}

.projects-view-all {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #D6A94F;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.25s ease;
}

.projects-view-all i {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.projects-view-all:hover {
  color: #E8C878;
}

.projects-view-all:hover i {
  transform: translateX(4px);
}

/* Loader */
.projects-loader {
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(245, 241, 232, 0.68);
  font-size: 13px;
}

.projects-loader.active {
  display: flex;
}

.projects-loader span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(214, 169, 79, 0.25);
  border-top-color: #D6A94F;
  animation: glamourSpin 0.8s linear infinite;
}

@keyframes glamourSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Project Grid */
.projects-developers-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.projects-developers-grid.loading,
#projects-result.loading {
  opacity: 0.35;
  transform: translateY(4px);
  pointer-events: none;
}

/* Project Cards */
.project-card {
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.88), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 169, 79, 0.28);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.38);
}

.project-card-large {
  grid-row: span 2;
}

/* Project Image */
.project-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #05080D;
}

.project-card-large .project-image {
  height: 360px;
}

.project-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.55s ease, opacity 0.55s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.055);
  opacity: 0.9;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(180deg, rgba(2, 4, 10, 0.06), rgba(2, 4, 10, 0.78)),
          linear-gradient(90deg, rgba(2, 4, 10, 0.22), transparent);
  pointer-events: none;
}

.project-status {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(2, 4, 10, 0.78);
  border: 1px solid rgba(214, 169, 79, 0.28);
  color: #F5F1E8;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Project Content */
.project-content {
  padding: 24px 26px 28px;
}

.project-card-large .project-content {
  padding: 28px 30px 32px;
}

.project-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.project-topline span {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(214, 169, 79, 0.07);
  border: 1px solid rgba(214, 169, 79, 0.14);
  color: rgba(245, 241, 232, 0.76);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.project-content h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: var(--nav-font);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.25px;
}

.project-card-large .project-content h3 {
  font-size: 28px;
}

.project-content p {
  margin: 0 0 18px;
  color: rgba(245, 241, 232, 0.64);
  font-size: 14px;
  line-height: 1.75;
}

.project-card-large .project-content p {
  max-width: 720px;
  font-size: 15px;
}

/* Project Meta */
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 20px;
  color: rgba(245, 241, 232, 0.7);
  font-size: 12px;
}

.project-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.project-meta i {
  width: 15px;
  min-width: 15px;
  color: #D6A94F;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

/* Project Links */
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #D6A94F;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease;
}

.project-link i {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.project-link:hover {
  color: #E8C878;
}

.project-link:hover i {
  transform: translateX(4px);
}

.project-link-secondary {
  color: rgba(245, 241, 232, 0.78);
}

.project-link-secondary:hover {
  color: #D6A94F;
}

/* Empty / Fallback Card */
.project-empty-card {
  grid-column: 1 / -1;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-empty-card .project-content {
  max-width: 720px;
  text-align: center;
}

.project-empty-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3vw, 46px);
}

.project-empty-card p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.project-empty-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Developer Strip */
.developer-strip {
  margin-top: 24px;
  padding: 24px 26px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.78), rgba(5, 8, 13, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: center;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.developer-strip-content span {
  display: inline-block;
  margin-bottom: 8px;
  color: #D6A94F;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.developer-strip-content h3 {
  margin: 0;
  max-width: 440px;
  color: #F8F3E8;
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

/* Developer Logos Slider */
.developer-logos-area {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 10px;
  align-items: center;
}

.developer-logos-swiper {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 4px 2px;
}

.developer-logos {
  align-items: stretch;
}

/* Fixed equal logo cards */
.developer-logo-card {
  width: 152px !important;
  height: 86px;
  min-height: 86px;
  max-height: 86px;
  flex: 0 0 152px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(214, 169, 79, 0.16);
  color: #05080D;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  padding: 12px 13px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.developer-logo-card:hover {
  border-color: rgba(214, 169, 79, 0.45);
  background: #ffffff;
  color: #05080D;
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.developer-logo-card img {
  width: 112px;
  max-width: 112px;
  height: 38px;
  max-height: 38px;
  object-fit: contain;
  display: block;
}

.developer-logo-card span {
  display: block;
  max-width: 100%;
  color: #05080D;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.developer-logo-card small {
  display: block;
  max-width: 100%;
  color: rgba(5, 8, 13, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.developer-logo-card.active {
  border-color: rgba(214, 169, 79, 0.92);
  background: linear-gradient(135deg, #ffffff, #fff7df);
  color: #05080D;
  box-shadow:
          0 18px 42px rgba(214, 169, 79, 0.18),
          inset 0 0 0 1px rgba(214, 169, 79, 0.18);
}

.developer-logo-card.active small {
  color: rgba(5, 8, 13, 0.68);
}

.developer-logo-card.active img {
  filter: none;
}

.developer-logo-card:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

/* Developer Slider Navigation */
.developer-logo-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(214, 169, 79, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #D6A94F;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.developer-logo-nav i {
  font-size: 13px;
  line-height: 1;
}

.developer-logo-nav:hover {
  background: #D6A94F;
  border-color: #D6A94F;
  color: #05080D;
  transform: translateY(-2px);
}

.developer-logo-nav.swiper-button-disabled {
  opacity: 0.32;
  cursor: not-allowed;
  transform: none;
}

/* Responsive */
@media (max-width: 1199px) {
  .projects-developers-section {
    padding: 58px 0 78px;
  }

  .projects-developers-grid {
    grid-template-columns: 1fr;
  }

  .project-card-large {
    grid-row: auto;
  }

  .project-card-large .project-image {
    height: 320px;
  }

  .developer-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .developer-strip-content {
    text-align: center;
  }

  .developer-strip-content h3 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .projects-developers-section {
    padding: 56px 0 68px;
  }

  .projects-developers-header {
    text-align: left;
    margin-bottom: 30px;
  }

  .projects-developers-header h2 {
    font-size: 34px;
    margin-left: 0;
  }

  .projects-developers-header p {
    font-size: 15px;
    line-height: 1.75;
    margin-left: 0;
  }

  .projects-panel-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .projects-panel-header h3 {
    font-size: 34px;
  }

  .project-image,
  .project-card-large .project-image {
    height: 235px;
  }

  .project-content,
  .project-card-large .project-content {
    padding: 22px;
  }

  .project-card-large .project-content h3,
  .project-content h3 {
    font-size: 22px;
  }

  .project-empty-card {
    min-height: 260px;
  }

  .project-empty-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .project-empty-actions .project-link {
    justify-content: center;
  }

  .developer-strip {
    padding: 22px;
  }

  .developer-strip-content {
    text-align: left;
  }

  .developer-logos-area {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .developer-logo-nav {
    width: 34px;
    height: 34px;
  }

  .developer-logo-card {
    width: 140px !important;
    flex-basis: 140px;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
  }

  .developer-logo-card img {
    width: 102px;
    max-width: 102px;
    height: 34px;
    max-height: 34px;
  }
}

@media (max-width: 480px) {
  .projects-developers-header h2 {
    font-size: 30px;
  }

  .projects-panel-header h3 {
    font-size: 30px;
  }

  .developer-logos-area {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
  }

  .developer-logo-nav {
    width: 32px;
    height: 32px;
  }

  .developer-logo-card {
    width: 132px !important;
    flex-basis: 132px;
  }

  .project-meta {
    flex-direction: column;
    gap: 8px;
  }

  .project-topline {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*--------------------------------------------------------------
# AI Property Assistant Section
--------------------------------------------------------------*/
.ai-property-section {
  padding: 92px 0;
  background: #02040A;
  position: relative;
  overflow: hidden;
}

.ai-property-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
          linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.18;
  pointer-events: none;
}

.ai-property-section .container {
  position: relative;
  z-index: 2;
}

.ai-property-wrapper {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}

.ai-property-visual {
  position: relative;
  min-height: 520px;
  border-radius: 26px;
  overflow: hidden;
  background:
          linear-gradient(180deg, rgba(16, 24, 32, 0.82), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.ai-property-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(180deg, rgba(2, 4, 10, 0.06), rgba(2, 4, 10, 0.72)),
          radial-gradient(circle at 50% 25%, rgba(214, 169, 79, 0.13), transparent 36%);
  pointer-events: none;
}

.ai-property-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  opacity: 0.86;
}

.ai-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  top: 42px;
  right: -70px;
  border-radius: 50%;
  background: rgba(214, 169, 79, 0.20);
  filter: blur(18px);
  z-index: 2;
}

.ai-floating-card {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(2, 4, 10, 0.72);
  border: 1px solid rgba(214, 169, 79, 0.22);
  color: #F5F1E8;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.ai-floating-card i {
  color: #D6A94F;
  font-size: 18px;
}

.ai-card-top {
  top: 24px;
  left: 24px;
}

.ai-card-bottom {
  right: 24px;
  bottom: 24px;
}

.ai-property-content .section-kicker {
  margin-bottom: 16px;
}

.ai-property-content h2 {
  margin: 0 0 22px;
  max-width: 740px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.8px;
}

.ai-property-content h2 span {
  display: block;
  color: #D6A94F;
  margin-top: 10px;
}

.ai-property-content > p {
  margin: 0 0 28px;
  max-width: 680px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 14px;
  line-height: 1.85;
}

.ai-feature-list {
  display: grid;
  gap: 14px;
  margin: 0 0 30px;
}

.ai-feature-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(11, 17, 24, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.075);
  transition: 0.3s ease;
}

.ai-feature-item:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 169, 79, 0.22);
  background: rgba(214, 169, 79, 0.045);
}

.ai-feature-item i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 22px;
}

.ai-feature-item h3 {
  margin: 0 0 5px;
  color: #F8F3E8;
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 800;
}

.ai-feature-item p {
  margin: 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.ai-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.ai-primary-btn,
.ai-secondary-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.ai-primary-btn {
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  border: 1px solid rgba(214, 169, 79, 0.78);
  box-shadow: 0 18px 42px rgba(214, 169, 79, 0.18);
}

.ai-primary-btn:hover {
  color: #05080D;
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(214, 169, 79, 0.28);
}

.ai-secondary-btn {
  color: #F5F1E8;
  background: rgba(11, 17, 24, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.ai-secondary-btn:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.35);
  background: rgba(214, 169, 79, 0.07);
}

.ai-note {
  margin: 0;
  max-width: 660px;
  color: rgba(245, 241, 232, 0.46);
  font-size: 12px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 1199px) {
  .ai-property-wrapper {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ai-property-visual {
    min-height: 420px;
  }

  .ai-property-visual img {
    min-height: 420px;
  }
}

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

  .ai-property-visual {
    min-height: 360px;
    border-radius: 20px;
  }

  .ai-property-visual img {
    min-height: 360px;
  }

  .ai-property-content h2 {
    font-size: 40px;
  }

  .ai-feature-item {
    grid-template-columns: 1fr;
  }

  .ai-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ai-primary-btn,
  .ai-secondary-btn {
    width: 100%;
  }

  .ai-floating-card {
    font-size: 10px;
    padding: 11px 13px;
  }

  .ai-card-top {
    top: 16px;
    left: 16px;
  }

  .ai-card-bottom {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .ai-property-content h2 {
    font-size: 36px;
  }

  .ai-property-visual {
    min-height: 320px;
  }

  .ai-property-visual img {
    min-height: 320px;
  }
}

/*--------------------------------------------------------------
# Renovation & Interior Section
--------------------------------------------------------------*/
.renovation-section {
  padding: 92px 0;
  background: #02040A;
  position: relative;
  overflow: hidden;
}

.renovation-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.renovation-content h2 {
  margin: 0 0 22px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.8px;
}

.renovation-content h2 span {
  display: block;
  color: #D6A94F;
  margin-top: 10px;
}

.renovation-content > p {
  margin: 0 0 30px;
  max-width: 680px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 14px;
  line-height: 1.85;
}

.renovation-points {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.renovation-point {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(11, 17, 24, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.075);
  transition: 0.3s ease;
}

.renovation-point:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 169, 79, 0.22);
  background: rgba(214, 169, 79, 0.045);
}

.renovation-point i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 22px;
}

.renovation-point h3 {
  margin: 0 0 5px;
  color: #F8F3E8;
  font-family: var(--nav-font);
  font-size: 15px;
  font-weight: 800;
}

.renovation-point p {
  margin: 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.renovation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.renovation-primary-btn,
.renovation-secondary-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.renovation-primary-btn {
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  border: 1px solid rgba(214, 169, 79, 0.78);
  box-shadow: 0 18px 42px rgba(214, 169, 79, 0.18);
}

.renovation-primary-btn:hover {
  color: #05080D;
  transform: translateY(-2px);
}

.renovation-secondary-btn {
  color: #F5F1E8;
  background: rgba(11, 17, 24, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.renovation-secondary-btn:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.35);
}

.renovation-visual {
  position: relative;
  min-height: 520px;
  border-radius: 26px;
  overflow: hidden;
  background: #05080D;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.renovation-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
  opacity: 0.86;
}

.renovation-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(180deg, rgba(2, 4, 10, 0.08), rgba(2, 4, 10, 0.76)),
          radial-gradient(circle at 50% 30%, rgba(214, 169, 79, 0.12), transparent 36%);
  pointer-events: none;
}

.renovation-stat-card {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(2, 4, 10, 0.72);
  border: 1px solid rgba(214, 169, 79, 0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.renovation-stat-card span {
  display: block;
  margin-bottom: 6px;
  color: #D6A94F;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.renovation-stat-card strong {
  color: #F8F3E8;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Why Glamour Section
--------------------------------------------------------------*/
.why-glamour-section {
  padding: 90px 0;
  background: #02040A;
  position: relative;
}

.why-glamour-header {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.why-glamour-header h2 {
  margin: 0 auto 18px;
  max-width: 800px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.8px;
}

.why-glamour-header h2 span {
  display: block;
  color: #D6A94F;
  margin-top: 10px;
}

.why-glamour-header p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(245, 241, 232, 0.68);
  font-size: 14px;
  line-height: 1.85;
}

.why-glamour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.88), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  transition: 0.35s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 169, 79, 0.28);
}

.why-card i {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 24px;
}

.why-card h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 850;
}

.why-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
  line-height: 1.72;
}

.why-glamour-cta {
  margin-top: 34px;
  text-align: center;
}

.why-glamour-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.why-glamour-btn:hover {
  color: #05080D;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Final CTA Section
--------------------------------------------------------------*/
.final-cta-section {
  padding: 86px 0 96px;
  background: #02040A;
}

.final-cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: 42px;
  border-radius: 26px;
  background:
          radial-gradient(circle at 82% 24%, rgba(214, 169, 79, 0.14), transparent 28%),
          linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(5, 8, 13, 0.98));
  border: 1px solid rgba(214, 169, 79, 0.16);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.34);
}

.final-cta-content h2 {
  margin: 0 0 16px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 600;
  line-height: 1;
}

.final-cta-content p {
  margin: 0;
  max-width: 720px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 14px;
  line-height: 1.8;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.final-primary-btn,
.final-secondary-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.final-primary-btn {
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  border: 1px solid rgba(214, 169, 79, 0.78);
}

.final-primary-btn:hover {
  color: #05080D;
  transform: translateY(-2px);
}

.final-secondary-btn {
  color: #F5F1E8;
  background: rgba(2, 4, 10, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.final-secondary-btn:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.35);
}

/* Responsive Final Sections */
@media (max-width: 1199px) {
  .renovation-wrapper,
  .final-cta-box {
    grid-template-columns: 1fr;
  }

  .renovation-visual {
    min-height: 420px;
  }

  .renovation-visual img {
    min-height: 420px;
  }

  .why-glamour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .renovation-section,
  .why-glamour-section,
  .final-cta-section {
    padding: 70px 0;
  }

  .renovation-content h2,
  .why-glamour-header h2 {
    font-size: 38px;
  }

  .renovation-point {
    grid-template-columns: 1fr;
  }

  .renovation-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .renovation-primary-btn,
  .renovation-secondary-btn {
    width: 100%;
  }

  .renovation-visual {
    min-height: 340px;
    border-radius: 20px;
  }

  .renovation-visual img {
    min-height: 340px;
  }

  .why-glamour-header {
    text-align: left;
  }

  .why-glamour-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: auto;
  }

  .final-cta-box {
    padding: 28px;
    border-radius: 22px;
  }

  .final-cta-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .renovation-content h2,
  .why-glamour-header h2,
  .final-cta-content h2 {
    font-size: 32px;
  }

  .renovation-stat-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

/*--------------------------------------------------------------
# Glamour Footer
--------------------------------------------------------------*/
.glamour-footer {
  padding: 58px 0 0;
  background:
          radial-gradient(circle at top left, rgba(214, 169, 79, 0.08), transparent 34%),
          #02040A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.9fr 0.85fr 1fr;
  gap: 34px;
  padding-bottom: 44px;
}

.footer-brand {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo img {
  max-height: 80px;
  width: auto;
  display: block;
}

.footer-brand p {
  margin: 0;
  max-width: 390px;
  color: rgba(245, 241, 232, 0.64);
  font-size: 14px;
  line-height: 1.78;
}

.footer-brand-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  max-width: 390px;
}

.footer-brand-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(214, 169, 79, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 241, 232, 0.72);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.glamour-footer h4 {
  margin: 0 0 18px;
  color: #F8F3E8;
  font-family: var(--nav-font);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.glamour-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.glamour-footer li {
  margin-bottom: 11px;
}

.glamour-footer a {
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.glamour-footer a:hover {
  color: #D6A94F;
}

.footer-links a {
  display: inline-flex;
}

.footer-links a:hover {
  transform: translateX(3px);
}

.footer-contact p {
  margin: 0 0 10px;
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.footer-contact p a {
  color: rgba(245, 241, 232, 0.72);
}

.footer-contact p a:hover {
  color: #D6A94F;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 15px;
  border: 1px solid rgba(214, 169, 79, 0.36);
  border-radius: 999px;
  background: rgba(214, 169, 79, 0.06);
  color: #D6A94F !important;
  font-size: 13px !important;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.footer-contact-btn i {
  font-size: 14px;
  line-height: 1;
}

.footer-contact-btn:hover {
  background: #D6A94F;
  border-color: #D6A94F;
  color: #02040A !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(214, 169, 79, 0.18);
}

.footer-bottom {
  min-height: 68px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 241, 232, 0.52);
  font-size: 13px;
  line-height: 1.5;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a {
  font-size: 13px;
  color: rgba(245, 241, 232, 0.52);
}

.footer-bottom a:hover {
  color: #D6A94F;
}

/* Footer Responsive */
@media (max-width: 1199px) {
  .footer-main {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 3;
  }

  .footer-brand p,
  .footer-brand-note {
    max-width: 620px;
  }
}

@media (max-width: 991px) {
  .glamour-footer {
    padding-top: 50px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-bottom: 38px;
  }

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo img {
    max-height: 42px;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 14px;
  }

  .footer-brand-note {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 24px;
  }

  .footer-bottom div {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .glamour-footer {
    padding-top: 44px;
  }

  .footer-main {
    gap: 26px;
    padding-bottom: 34px;
  }

  .footer-brand-note span {
    font-size: 10px;
    padding: 6px 9px;
  }

  .footer-contact-btn {
    width: 100%;
  }

  .footer-bottom a,
  .footer-bottom p {
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Floating Action Buttons
--------------------------------------------------------------*/
.floating-action-btn {
  position: fixed;
  right: 24px;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  transition: all 0.25s ease;
}

.floating-action-btn i {
  font-size: 19px;
  line-height: 1;
}

.floating-action-btn:hover {
  transform: translateY(-3px);
}

/* AI Button */
.floating-ai-chat {
  bottom: 132px;
  background: #D6A94F;
  color: #02040A;
}

.floating-ai-chat:hover {
  color: #02040A;
  background: #F1C866;
  box-shadow: 0 14px 34px rgba(214, 169, 79, 0.28);
}

/* WhatsApp Button */
.floating-whatsapp {
  bottom: 78px;
  background: #25D366;
  color: #ffffff;
}

.floating-whatsapp:hover {
  color: #ffffff;
  background: #2BE477;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.26);
}

/* Scroll Top Button */
.scroll-top,
.floating-scroll-top {
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: #F8F3E8;
  border: 1px solid rgba(248, 243, 232, 0.18);
  opacity: 0;
  visibility: hidden;
}

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

.scroll-top i,
.floating-scroll-top i {
  font-size: 24px;
  line-height: 1;
}

.scroll-top:hover,
.floating-scroll-top:hover {
  background: #D6A94F;
  color: #02040A;
  border-color: #D6A94F;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(214, 169, 79, 0.22);
}

/* Soft pulse only for AI */
.floating-ai-chat::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(214, 169, 79, 0.42);
  animation: floatingAiIconPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes floatingAiIconPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.65;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

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

@media (max-width: 768px) {
  .floating-action-btn,
  .scroll-top,
  .floating-scroll-top {
    right: 18px;
    width: 42px;
    height: 42px;
  }

  .floating-action-btn i {
    font-size: 18px;
  }

  .floating-ai-chat {
    bottom: 126px;
  }

  .floating-whatsapp {
    bottom: 74px;
  }

  .scroll-top,
  .floating-scroll-top {
    bottom: 22px;
  }

  .scroll-top i,
  .floating-scroll-top i {
    font-size: 23px;
  }
}

/*--------------------------------------------------------------
# Properties Page
--------------------------------------------------------------*/
.meta-svg-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  flex: 0 0 15px;
  vertical-align: -2px;
  stroke: #D6A94F;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.property-meta span,
.property-list-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.properties-hero-section {
  padding: 160px 0 70px;
  background:
          linear-gradient(
                  90deg,
                  rgba(2, 4, 10, 0.98) 0%,
                  rgba(2, 4, 10, 0.92) 34%,
                  rgba(2, 4, 10, 0.72) 62%,
                  rgba(2, 4, 10, 0.54) 100%
          ),
          url("../img/properties/properties-hero.png") center right / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.properties-hero-content {
  max-width: 820px;
}

.properties-hero-content h1 {
  margin: 0 0 20px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 600;
  line-height: 0.96;
}

.properties-hero-content h1 span {
  display: block;
  color: #D6A94F;
  margin-top: 10px;
}

.properties-hero-content p {
  margin: 0;
  max-width: 720px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 17px;
  line-height: 1.85;
}

.properties-listing-section {
  padding: 50px 0 90px;
  background: #02040A;
}

.properties-filter-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px;
  margin-bottom: 28px;
  border-radius: 20px;
  background: rgba(11, 17, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.filter-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 241, 232, 0.58);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.filter-field select,
.filter-field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 4, 10, 0.64);
  color: #F5F1E8;
  outline: none;
}

.filter-field select:disabled {
  opacity: 0.55;
}

.filter-actions {
  display: flex;
  gap: 10px;
  align-items: end;
}

.filter-search-btn,
.filter-reset-btn {
  height: 48px;
  flex: 1;
  border-radius: 10px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.filter-search-btn {
  border: 0;
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
}

.filter-reset-btn {
  color: #F5F1E8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.properties-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.properties-toolbar span {
  color: rgba(245, 241, 232, 0.64);
}

.properties-toolbar strong {
  display: inline-flex;
  margin-left: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #D6A94F;
  background: rgba(214, 169, 79, 0.08);
  border: 1px solid rgba(214, 169, 79, 0.14);
  font-size: 12px;
}

.properties-view-links {
  display: flex;
  gap: 10px;
}

.properties-view-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(245, 241, 232, 0.74);
  background: rgba(11, 17, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.properties-view-links a.active {
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  border-color: rgba(214, 169, 79, 0.75);
}

.properties-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.properties-layout.map-active {
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: start;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.property-list-card {
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.88), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  transition: 0.35s ease;
}

.property-list-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 169, 79, 0.28);
}

.property-list-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.property-list-card-link:hover {
  color: inherit;
}

.property-list-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #05080D;
}

.property-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.86;
  transition: 0.45s ease;
}

.property-list-card:hover .property-list-image img {
  transform: scale(1.05);
  opacity: 0.95;
}

.property-list-content {
  padding: 20px;
}

.property-list-content h3 {
  margin: 0 0 8px;
  color: #F8F3E8;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.35;
}

.property-list-content p {
  margin: 0 0 16px;
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
}

.property-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  margin-bottom: 16px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 12px;
}

.property-list-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.property-list-meta i {
  color: #D6A94F;
}

.property-list-content strong {
  color: #D6A94F;
  font-size: 16px;
}

.properties-map-panel {
  display: none;
  position: sticky;
  top: 105px;
  height: calc(100vh - 130px);
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(214, 169, 79, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
}

.properties-layout.map-active .properties-map-panel {
  display: block;
}

#properties-map {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #05080D;
}

.properties-pagination {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.properties-pagination a,
.properties-pagination span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(11, 17, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 241, 232, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.properties-pagination a:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.28);
}

.properties-empty-state {
  padding: 58px 28px;
  border-radius: 22px;
  text-align: center;
  background: rgba(11, 17, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.properties-empty-state i {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 28px;
}

.properties-empty-state h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
}

.properties-empty-state p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(245, 241, 232, 0.66);
  line-height: 1.8;
}

.empty-primary-btn,
.empty-secondary-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.empty-primary-btn {
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
}

.empty-secondary-btn {
  color: #F5F1E8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* Responsive */
@media (max-width: 1199px) {
  .properties-filter-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .properties-layout.map-active {
    grid-template-columns: 1fr;
  }

  .properties-map-panel {
    position: relative;
    top: 0;
    height: 460px;
    min-height: 460px;
    order: -1;
  }

  #properties-map {
    min-height: 460px;
  }

  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .properties-hero-section {
    padding: 135px 0 55px;
  }

  .properties-hero-content h1 {
    font-size: 42px;
  }

  .properties-filter-box {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .filter-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .properties-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .properties-view-links {
    width: 100%;
  }

  .properties-view-links a {
    flex: 1;
    justify-content: center;
  }

  .properties-grid {
    grid-template-columns: 1fr;
  }

  .properties-map-panel {
    height: 380px;
    min-height: 380px;
  }

  #properties-map {
    min-height: 380px;
  }

  .properties-pagination {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Property Details Page
--------------------------------------------------------------*/
.property-details-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 58px;
  background:
          linear-gradient(90deg, rgba(2, 4, 10, 0.96), rgba(2, 4, 10, 0.88), rgba(2, 4, 10, 0.96)),
          radial-gradient(circle at 84% 18%, rgba(214, 169, 79, 0.12), transparent 32%),
          radial-gradient(circle at 14% 88%, rgba(214, 169, 79, 0.07), transparent 28%),
          url("../img/properties/properties-hero.png") center right / cover no-repeat;
}

.property-details-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
          linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.18;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.35), transparent);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.35), transparent);
  pointer-events: none;
}

.property-details-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 70px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(214, 169, 79, 0.13);
  box-shadow:
          inset 0 0 80px rgba(214, 169, 79, 0.035),
          0 0 80px rgba(214, 169, 79, 0.04);
  pointer-events: none;
}

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

.property-details-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: end;
}

.property-detail-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.property-details-title h1 {
  margin: 0 0 18px;
  max-width: 900px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.8px;
}

.property-details-title p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 16px;
}

.property-details-title p i {
  color: #D6A94F;
}

.property-details-price-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(11, 17, 24, 0.86);
  border: 1px solid rgba(214, 169, 79, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.property-details-price-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 241, 232, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.property-details-price-card strong {
  display: block;
  margin-bottom: 18px;
  color: #D6A94F;
  font-size: 24px;
}

/* Gallery */
.property-gallery-section {
  padding: 50px 0 48px;
  background: #05080D;
}

.property-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  gap: 14px;
  align-items: stretch;
}

.property-gallery-main {
  position: relative;
  display: block;
  height: 560px;
  overflow: hidden;
  border-radius: 18px;
  background: #02040A;
  cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.property-gallery-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(180deg, rgba(2, 4, 10, 0.02), rgba(2, 4, 10, 0.22)),
          radial-gradient(circle at 82% 18%, rgba(214, 169, 79, 0.10), transparent 34%);
  pointer-events: none;
  opacity: 0.85;
}

.property-gallery-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.property-gallery-main:hover img {
  transform: scale(1.025);
  opacity: 0.98;
}

.property-gallery-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  height: 560px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(214, 169, 79, 0.55) rgba(255, 255, 255, 0.06);
}

.property-gallery-side::-webkit-scrollbar {
  width: 6px;
}

.property-gallery-side::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.property-gallery-side::-webkit-scrollbar-thumb {
  background: rgba(214, 169, 79, 0.55);
  border-radius: 999px;
}

.property-gallery-side::-webkit-scrollbar-thumb:hover {
  background: rgba(232, 200, 120, 0.75);
}

.property-gallery-thumb {
  position: relative;
  height: 129.5px;
  min-height: 129.5px;
  overflow: hidden;
  border-radius: 18px;
  background: #02040A;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0;
  cursor: pointer;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.property-gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(180deg, rgba(2, 4, 10, 0.02), rgba(2, 4, 10, 0.34));
  pointer-events: none;
  transition: 0.3s ease;
}

.property-gallery-thumb img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.property-gallery-thumb:hover img,
.property-gallery-thumb.active img {
  transform: scale(1.04);
  opacity: 1;
}

.property-gallery-thumb.active {
  border-color: rgba(214, 169, 79, 0.75);
  box-shadow: 0 0 0 1px rgba(214, 169, 79, 0.45) inset;
}

.property-gallery-thumb.active::after {
  background:
          linear-gradient(180deg, rgba(2, 4, 10, 0.00), rgba(2, 4, 10, 0.14));
}

.property-hidden-gallery-link {
  display: none;
}

/* Media Actions */
.property-media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.property-media-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  color: #F5F1E8;
  background: rgba(11, 17, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.property-media-btn i {
  color: #D6A94F;
  font-size: 17px;
}

.property-media-btn:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.32);
  background: rgba(214, 169, 79, 0.07);
}

/* Main Layout */
.property-detail-content-section {
  padding: 54px 0 80px;
  background: #02040A;
}

.property-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.property-detail-main {
  display: grid;
  gap: 22px;
}

.property-detail-meta-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.detail-meta-item {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.88), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-meta-item svg,
.detail-meta-item i {
  margin-bottom: 14px;
  color: #D6A94F;
  stroke: #D6A94F;
  font-size: 22px;
}

.detail-meta-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(245, 241, 232, 0.54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.detail-meta-item strong {
  display: block;
  color: #F8F3E8;
  font-size: 15px;
}

.property-detail-card {
  padding: 26px;
  border-radius: 20px;
  background: rgba(11, 17, 24, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-section-title {
  margin-bottom: 22px;
}

.detail-section-title span {
  display: block;
  margin-bottom: 8px;
  color: #D6A94F;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.detail-section-title h2 {
  margin: 0;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
}

.property-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.property-detail-info-grid div {
  padding: 16px;
  border-radius: 14px;
  background: rgba(2, 4, 10, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.property-detail-info-grid span {
  display: block;
  margin-bottom: 6px;
  color: rgba(245, 241, 232, 0.52);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.property-detail-info-grid strong {
  color: #F8F3E8;
  font-size: 14px;
}

.property-description {
  color: rgba(245, 241, 232, 0.70);
  font-size: 15px;
  line-height: 1.9;
}

.property-description p {
  margin: 0;
}

#property-detail-map {
  width: 100%;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #05080D;
}

/* Sidebar */
.property-detail-sidebar {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 18px;
}

.property-inquiry-card,
.property-sidebar-mini-card {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.92), rgba(5, 8, 13, 0.98));
  border: 1px solid rgba(214, 169, 79, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.property-inquiry-card h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
}

.property-inquiry-card p {
  margin: 0 0 22px;
  color: rgba(245, 241, 232, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

.details-primary-btn,
.details-secondary-btn {
  min-height: 48px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.details-primary-btn {
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  border: 1px solid rgba(214, 169, 79, 0.78);
}

.details-primary-btn:hover {
  color: #05080D;
  transform: translateY(-2px);
}

.details-secondary-btn {
  margin-top: 12px;
  color: #F5F1E8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.details-secondary-btn:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.30);
}

.property-sidebar-mini-card h4 {
  margin: 0 0 16px;
  color: #F8F3E8;
  font-size: 18px;
}

.property-sidebar-mini-card div {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.property-sidebar-mini-card span {
  display: block;
  margin-bottom: 4px;
  color: rgba(245, 241, 232, 0.52);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.property-sidebar-mini-card strong {
  color: #F8F3E8;
  font-size: 14px;
}

/* Similar */
.similar-properties-section {
  padding: 70px 0 90px;
  background: #05080D;
}

.similar-properties-header {
  margin-bottom: 28px;
  text-align: center;
}

.similar-properties-header h2 {
  margin: 0;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
  font-weight: 600;
}

.similar-properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Not Found */
.property-not-found-section {
  padding: 170px 0 100px;
  background: #02040A;
}

.property-not-found-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 46px;
  text-align: center;
  border-radius: 24px;
  background: rgba(11, 17, 24, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.property-not-found-box i {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 28px;
}

.property-not-found-box h1 {
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
}

.property-not-found-box p {
  color: rgba(245, 241, 232, 0.68);
  line-height: 1.8;
}

.property-not-found-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* Responsive */
@media (max-width: 1199px) {
  .property-details-hero-grid,
  .property-detail-layout {
    grid-template-columns: 1fr;
  }

  .property-detail-sidebar {
    position: relative;
    top: 0;
  }

  .property-gallery-grid {
    grid-template-columns: 1fr;
  }

  .property-gallery-main {
    height: 460px;
  }

  .property-gallery-side {
    height: auto;
    max-height: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
    padding-bottom: 8px;
  }

  .property-gallery-thumb {
    height: 130px;
    min-height: 130px;
  }

  .property-detail-meta-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .similar-properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .property-details-hero {
    padding: 135px 0 45px;
  }

  .property-details-title h1 {
    font-size: 40px;
  }

  .property-details-price-card {
    padding: 20px;
  }

  .property-gallery-main {
    height: 330px;
  }

  .property-gallery-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 0;
  }

  .property-gallery-thumb {
    height: 120px;
    min-height: 120px;
    border-radius: 14px;
  }

  .property-detail-meta-box,
  .property-detail-info-grid,
  .similar-properties-grid {
    grid-template-columns: 1fr;
  }

  .property-detail-card {
    padding: 22px;
  }

  #property-detail-map {
    height: 340px;
  }

  .property-media-actions {
    flex-direction: column;
  }

  .property-media-btn {
    width: 100%;
  }

  .property-not-found-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .property-details-title h1 {
    font-size: 36px;
  }

  .property-gallery-main {
    height: 285px;
  }

  .property-gallery-thumb {
    height: 96px;
    min-height: 96px;
  }

  .property-inquiry-card h3 {
    font-size: 30px;
  }

  .similar-properties-header h2 {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Projects Page
--------------------------------------------------------------*/
.projects-page-hero {
  padding: 160px 0 70px;
  background:
          linear-gradient(
                  90deg,
                  rgba(2, 4, 10, 0.98) 0%,
                  rgba(2, 4, 10, 0.92) 34%,
                  rgba(2, 4, 10, 0.72) 62%,
                  rgba(2, 4, 10, 0.54) 100%
          ),
          url("../img/projects/projects-hero.png") center right / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.projects-page-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -130px -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(214, 169, 79, 0.12);
  filter: blur(60px);
  pointer-events: none;
}

.projects-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.projects-page-hero-content h1 {
  margin: 0 0 20px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.9px;
}

.projects-page-hero-content h1 span {
  display: block;
  margin-top: 10px;
  color: #D6A94F;
}

.projects-page-hero-content p {
  margin: 0;
  max-width: 740px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 17px;
  line-height: 1.85;
}

/* Listing Section */
.projects-listing-section {
  padding: 50px 0 90px;
  background: #02040A;
}

/* Filters */
.projects-filter-box {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) 210px;
  gap: 14px;
  padding: 22px;
  margin-bottom: 28px;
  border-radius: 20px;
  background: rgba(11, 17, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.project-filter-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 241, 232, 0.58);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-filter-field select {
  width: 100%;
  min-width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 4, 10, 0.64);
  color: #F5F1E8;
  outline: none;
}

.project-filter-field select:focus {
  border-color: rgba(214, 169, 79, 0.36);
  box-shadow: 0 0 0 3px rgba(214, 169, 79, 0.08);
}

.project-filter-actions {
  display: flex;
  gap: 10px;
  align-items: end;
}

.project-filter-search-btn,
.project-filter-reset-btn {
  height: 48px;
  flex: 1;
  border-radius: 10px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s ease;
}

.project-filter-search-btn {
  border: 0;
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
}

.project-filter-search-btn:hover {
  color: #05080D;
  transform: translateY(-2px);
}

.project-filter-reset-btn {
  color: #F5F1E8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.project-filter-reset-btn:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.30);
}

/* Toolbar */
.projects-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.projects-toolbar span {
  color: rgba(245, 241, 232, 0.64);
}

.projects-toolbar strong {
  display: inline-flex;
  margin-left: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #D6A94F;
  background: rgba(214, 169, 79, 0.08);
  border: 1px solid rgba(214, 169, 79, 0.14);
  font-size: 12px;
}

.projects-toolbar-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.projects-toolbar-cta:hover {
  color: #05080D;
  transform: translateY(-2px);
}

/* Project Cards */
.projects-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-list-card {
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.88), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  transition: 0.35s ease;
}

.project-list-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 169, 79, 0.28);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.36);
}

.project-list-card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
}

.project-list-card-link:hover {
  color: inherit;
}

.project-list-image {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: #05080D;
}

.project-list-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(180deg, rgba(2, 4, 10, 0.04), rgba(2, 4, 10, 0.56)),
          radial-gradient(circle at 82% 20%, rgba(214, 169, 79, 0.16), transparent 32%);
  pointer-events: none;
  z-index: 1;
}

.project-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.86;
  transition: 0.45s ease;
}

.project-list-card:hover .project-list-image img {
  transform: scale(1.05);
  opacity: 0.95;
}

/* Card Badges */
.project-card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 3;
}

.project-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(2, 4, 10, 0.72);
  color: #F8F3E8;
  font-size: 11px;
  line-height: 1;
  border: 1px solid rgba(214, 169, 79, 0.35);
  backdrop-filter: blur(10px);
}

.project-card-badge.gold {
  background: rgba(214, 169, 79, 0.94);
  color: #02040A;
  font-weight: 800;
}

/* Card Content */
.project-list-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.project-list-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.project-list-topline span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(214, 169, 79, 0.07);
  border: 1px solid rgba(214, 169, 79, 0.14);
  color: rgba(245, 241, 232, 0.76);
  font-size: 11px;
  font-weight: 700;
}

.project-list-content h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: var(--nav-font);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.35;
}

.project-list-subtitle {
  margin: -4px 0 12px;
  color: rgba(245, 241, 232, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.project-list-content p {
  margin: 0 0 18px;
  color: rgba(245, 241, 232, 0.64);
  font-size: 14px;
  line-height: 1.75;
}

.project-list-meta {
  display: grid;
  gap: 9px;
  margin-bottom: 14px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 12px;
}

.project-list-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.project-list-meta i {
  color: #D6A94F;
}

.project-list-extra-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.project-list-extra-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(214, 169, 79, 0.18);
  font-size: 12px;
  color: rgba(245, 241, 232, 0.76);
}

.project-list-extra-meta i {
  color: #D6A94F;
}

.project-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #D6A94F;
}

.project-list-footer strong {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.project-list-footer i {
  transition: 0.3s ease;
}

.project-list-card:hover .project-list-footer i {
  transform: translateX(4px);
}

/* Pagination */
.projects-pagination {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.projects-pagination a,
.projects-pagination span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(11, 17, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 241, 232, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.projects-pagination a:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.28);
}

/* Empty State */
.projects-empty-state {
  padding: 58px 28px;
  border-radius: 22px;
  text-align: center;
  background: rgba(11, 17, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.projects-empty-state i {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 28px;
}

.projects-empty-state h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
}

.projects-empty-state p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(245, 241, 232, 0.66);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 1399px) {
  .projects-filter-box {
    grid-template-columns: repeat(3, 1fr);
  }

  .project-filter-actions {
    grid-column: span 3;
  }
}

@media (max-width: 1199px) {
  .projects-filter-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-filter-actions {
    grid-column: span 2;
  }

  .projects-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .projects-page-hero {
    padding: 135px 0 55px;
  }

  .projects-page-hero-content h1 {
    font-size: 40px;
  }

  .projects-page-hero-content p {
    font-size: 15px;
  }

  .projects-filter-box {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .project-filter-actions {
    grid-column: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .projects-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-toolbar-cta {
    width: 100%;
    justify-content: center;
  }

  .projects-list-grid {
    grid-template-columns: 1fr;
  }

  .project-list-image {
    height: 230px;
  }

  .projects-pagination {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Project Details Page
--------------------------------------------------------------*/
.project-details-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 58px;
  background:
          linear-gradient(90deg, rgba(2, 4, 10, 0.96), rgba(2, 4, 10, 0.88), rgba(2, 4, 10, 0.96)),
          radial-gradient(circle at 84% 18%, rgba(214, 169, 79, 0.12), transparent 32%),
          radial-gradient(circle at 14% 88%, rgba(214, 169, 79, 0.07), transparent 28%),
          url("../img/projects/projects-hero.png") center right / cover no-repeat;
}


.project-details-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
          linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.18;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.35), transparent);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.95), rgba(0,0,0,0.35), transparent);
  pointer-events: none;
}

.project-details-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 70px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(214, 169, 79, 0.13);
  box-shadow:
          inset 0 0 80px rgba(214, 169, 79, 0.035),
          0 0 80px rgba(214, 169, 79, 0.04);
  pointer-events: none;
}

.project-details-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: end;
}

.project-detail-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-details-title h1 {
  margin: 0 0 18px;
  max-width: 900px;
  color: #F8F3E8;
  font-family: "Arial", serif;
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.8px;
}

.project-details-title p {
  margin: 0;
  color: rgba(245, 241, 232, 0.70);
  font-size: 16px;
  line-height: 1.75;
}

.project-details-title p + p {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-details-title p i {
  color: #D6A94F;
}

.project-details-price-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(11, 17, 24, 0.86);
  border: 1px solid rgba(214, 169, 79, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.project-details-price-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 241, 232, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-details-price-card strong {
  display: block;
  margin-bottom: 12px;
  color: #D6A94F;
  font-size: 24px;
}

.project-details-price-card small {
  display: block;
  margin-bottom: 18px;
  color: rgba(245, 241, 232, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

/* Gallery */
.project-gallery-section {
  padding: 50px 0 48px;
  background: #05080D;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
  gap: 14px;
  align-items: stretch;
}

.project-gallery-main {
  position: relative;
  display: block;
  height: 560px;
  overflow: hidden;
  border-radius: 18px;
  background: #02040A;
  cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.project-gallery-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.project-gallery-main:hover img {
  transform: scale(1.025);
  opacity: 0.98;
}

.project-gallery-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  height: 560px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(214, 169, 79, 0.55) rgba(255, 255, 255, 0.06);
}

.project-gallery-side::-webkit-scrollbar {
  width: 6px;
}

.project-gallery-side::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.project-gallery-side::-webkit-scrollbar-thumb {
  background: rgba(214, 169, 79, 0.55);
  border-radius: 999px;
}

.project-gallery-thumb {
  position: relative;
  height: 129.5px;
  min-height: 129.5px;
  overflow: hidden;
  border-radius: 18px;
  background: #02040A;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0;
  cursor: pointer;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

.project-gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.project-gallery-thumb:hover img,
.project-gallery-thumb.active img {
  transform: scale(1.04);
  opacity: 1;
}

.project-gallery-thumb.active {
  border-color: rgba(214, 169, 79, 0.75);
  box-shadow: 0 0 0 1px rgba(214, 169, 79, 0.45) inset;
}

.project-hidden-gallery-link {
  display: none;
}

.project-media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.project-media-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  color: #F5F1E8;
  background: rgba(11, 17, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.project-media-btn i {
  color: #D6A94F;
  font-size: 17px;
}

.project-media-btn:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.32);
  background: rgba(214, 169, 79, 0.07);
}

/* Main Content */
.project-detail-content-section {
  padding: 54px 0 80px;
  background: #02040A;
}

.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.project-detail-main {
  display: grid;
  gap: 22px;
}

.project-detail-meta-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.project-detail-meta-item {
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.88), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-detail-meta-item i {
  display: block;
  margin-bottom: 14px;
  color: #D6A94F;
  font-size: 22px;
}

.project-detail-meta-item span {
  display: block;
  margin-bottom: 6px;
  color: rgba(245, 241, 232, 0.54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-detail-meta-item strong {
  display: block;
  color: #F8F3E8;
  font-size: 15px;
  line-height: 1.45;
}

.project-detail-card {
  padding: 26px;
  border-radius: 20px;
  background: rgba(11, 17, 24, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-detail-section-title {
  margin-bottom: 22px;
}

.project-detail-section-title span {
  display: block;
  margin-bottom: 8px;
  color: #D6A94F;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.project-detail-section-title h2 {
  margin: 0;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
}

.project-detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.project-detail-info-grid div {
  padding: 16px;
  border-radius: 14px;
  background: rgba(2, 4, 10, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.project-detail-info-grid span {
  display: block;
  margin-bottom: 6px;
  color: rgba(245, 241, 232, 0.52);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-detail-info-grid strong {
  color: #F8F3E8;
  font-size: 14px;
  line-height: 1.45;
}

.project-description,
.project-rich-text {
  color: rgba(245, 241, 232, 0.70);
  font-size: 15px;
  line-height: 1.9;
}

.project-description p {
  margin: 0;
}

.project-rich-text + .project-rich-text {
  margin-top: 14px;
}

.project-rich-text strong {
  color: #F8F3E8;
}

/* Payment / Amenities / Nearby */
.project-payment-grid,
.project-premium-pill-grid {
  display: grid;
  gap: 14px;
}

.project-payment-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  margin-bottom: 18px;
}

.project-payment-step {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(214, 169, 79, 0.20);
  background: rgba(255, 255, 255, 0.035);
}

.project-payment-step span {
  display: block;
  margin-bottom: 7px;
  color: rgba(245, 241, 232, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.project-payment-step strong {
  display: block;
  color: #D6A94F;
  font-size: 18px;
  line-height: 1.35;
}

.project-premium-pill-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.project-premium-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(214, 169, 79, 0.20);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 241, 232, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.project-premium-pill i {
  color: #D6A94F;
  font-size: 18px;
  flex: 0 0 auto;
}

/* Sidebar */
.project-detail-sidebar {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 18px;
}

.project-inquiry-card,
.project-sidebar-mini-card {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.92), rgba(5, 8, 13, 0.98));
  border: 1px solid rgba(214, 169, 79, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.project-inquiry-card h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
}

.project-inquiry-card p {
  margin: 0 0 22px;
  color: rgba(245, 241, 232, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

.project-details-primary-btn,
.project-details-secondary-btn {
  min-height: 48px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.project-details-primary-btn {
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  border: 1px solid rgba(214, 169, 79, 0.78);
}

.project-details-primary-btn:hover {
  color: #05080D;
  transform: translateY(-2px);
}

.project-details-secondary-btn {
  margin-top: 12px;
  color: #F5F1E8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.project-details-secondary-btn:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.30);
}

.project-developer-logo-box {
  width: 150px;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 18px;
  background: #fffaf0;
  border: 1px solid rgba(214, 169, 79, 0.28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.project-developer-logo-box img {
  width: 100%;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

.project-developer-profile-link {
  min-height: 42px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 0 16px;
  border-radius: 999px;
  color: #F5F1E8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(214, 169, 79, 0.18);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.project-developer-profile-link i {
  color: #D6A94F;
  transition: 0.3s ease;
}

.project-developer-profile-link:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.34);
  background: rgba(214, 169, 79, 0.07);
}

.project-developer-profile-link:hover i {
  transform: translateX(3px);
}

.project-sidebar-mini-card h4 {
  margin: 0 0 16px;
  color: #F8F3E8;
  font-size: 18px;
}

.project-sidebar-mini-card div {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.project-sidebar-mini-card span {
  display: block;
  margin-bottom: 4px;
  color: rgba(245, 241, 232, 0.52);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.project-sidebar-mini-card strong {
  color: #F8F3E8;
  font-size: 14px;
}

/* Similar */
.similar-projects-section {
  padding: 70px 0 90px;
  background: #05080D;
}

.similar-projects-header {
  margin-bottom: 28px;
  text-align: center;
}

.similar-projects-header h2 {
  margin: 0;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 600;
}

.similar-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Not Found */
.project-not-found-section {
  padding: 170px 0 100px;
  background: #02040A;
}

.project-not-found-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 46px;
  text-align: center;
  border-radius: 24px;
  background: rgba(11, 17, 24, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-not-found-box i {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 28px;
}

.project-not-found-box h1 {
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
}

.project-not-found-box p {
  color: rgba(245, 241, 232, 0.68);
  line-height: 1.8;
}

.project-not-found-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* Responsive */
@media (max-width: 1199px) {
  .project-details-hero-grid,
  .project-detail-layout {
    grid-template-columns: 1fr;
  }

  .project-detail-sidebar {
    position: relative;
    top: 0;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-gallery-main {
    height: 460px;
  }

  .project-gallery-side {
    height: auto;
    max-height: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: auto;
    overflow-y: hidden;
    padding-right: 0;
    padding-bottom: 8px;
  }

  .project-gallery-thumb {
    height: 130px;
    min-height: 130px;
  }

  .project-detail-meta-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .similar-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .project-details-hero {
    padding: 135px 0 45px;
  }

  .project-details-title h1 {
    font-size: 40px;
  }

  .project-details-price-card {
    padding: 20px;
  }

  .project-gallery-main {
    height: 330px;
  }

  .project-gallery-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 0;
  }

  .project-gallery-thumb {
    height: 120px;
    min-height: 120px;
    border-radius: 14px;
  }

  .project-detail-meta-box,
  .project-detail-info-grid,
  .similar-projects-grid,
  .project-payment-grid,
  .project-premium-pill-grid {
    grid-template-columns: 1fr;
  }

  .project-detail-card {
    padding: 22px;
  }

  .project-media-actions {
    flex-direction: column;
  }

  .project-media-btn {
    width: 100%;
  }

  .project-not-found-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .project-details-title h1 {
    font-size: 36px;
  }

  .project-gallery-main {
    height: 285px;
  }

  .project-gallery-thumb {
    height: 96px;
    min-height: 96px;
  }

  .project-inquiry-card h3 {
    font-size: 30px;
  }

  .similar-projects-header h2 {
    font-size: 36px;
  }
}

/*--------------------------------------------------------------
# Developers Page
--------------------------------------------------------------*/
.developers-page-hero {
  padding: 160px 0 70px;
  background:
          linear-gradient(
                  90deg,
                  rgba(2, 4, 10, 0.98) 0%,
                  rgba(2, 4, 10, 0.92) 34%,
                  rgba(2, 4, 10, 0.72) 62%,
                  rgba(2, 4, 10, 0.54) 100%
          ),
          url("../img/developers/developers-hero.png") center right / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.developers-page-hero-content {
  max-width: 850px;
}

.developers-page-hero-content h1 {
  margin: 0 0 20px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 52px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.9px;
}

.developers-page-hero-content h1 span {
  display: block;
  margin-top: 10px;
  color: #D6A94F;
}

.developers-page-hero-content p {
  margin: 0;
  max-width: 740px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 17px;
  line-height: 1.85;
}

.developers-listing-section {
  padding: 50px 0 90px;
  background: #02040A;
}

.developers-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.developers-toolbar span {
  color: rgba(245, 241, 232, 0.64);
}

.developers-toolbar-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.developers-toolbar-cta:hover {
  color: #05080D;
  transform: translateY(-2px);
}

.developers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.developer-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.88), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  transition: 0.35s ease;
}

.developer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 169, 79, 0.28);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.36);
}

.developer-card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: inherit;
}

.developer-card-link:hover {
  color: inherit;
}

/* New dynamic cover area */
.developer-card-cover {
  position: relative;
  min-height: 150px;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  background:
          radial-gradient(circle at 22% 28%, rgba(214, 169, 79, 0.20), transparent 34%),
          linear-gradient(180deg, rgba(16, 24, 32, 0.92), rgba(5, 8, 13, 0.98));
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.developer-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
          linear-gradient(180deg, rgba(2, 4, 10, 0.02), rgba(2, 4, 10, 0.78)),
          radial-gradient(circle at 80% 20%, rgba(214, 169, 79, 0.18), transparent 32%);
  pointer-events: none;
}

.developer-card-cover.has-cover {
  background-position: center;
  background-size: cover;
}

.developer-logo-box {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 16px;
  background: #fffaf0;
  border: 1px solid rgba(214, 169, 79, 0.28);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.developer-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.developer-logo-box span {
  color: #D6A94F;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
}

.developer-featured-badge {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.developer-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 24px;
}

.developer-card-content h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: var(--nav-font);
  font-size: 19px;
  font-weight: 850;
  line-height: 1.35;
}

.developer-card-content p {
  margin: 0 0 18px;
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

.developer-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.developer-card-badges span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(214, 169, 79, 0.07);
  border: 1px solid rgba(214, 169, 79, 0.14);
  color: rgba(245, 241, 232, 0.78);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.developer-card-stats {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 12px;
}

.developer-card-stats div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(2, 4, 10, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.developer-card-stats span {
  display: block;
  margin-bottom: 5px;
  color: rgba(245, 241, 232, 0.48);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.developer-card-stats strong {
  display: block;
  color: #F8F3E8;
  font-size: 13px;
  line-height: 1.35;
}

.developer-card-extra-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.developer-card-extra-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(245, 241, 232, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(214, 169, 79, 0.14);
  font-size: 11px;
  font-weight: 750;
}

.developer-card-extra-stats i {
  color: #D6A94F;
}

.developer-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #D6A94F;
}

.developer-card-footer strong {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.developer-card-footer i {
  transition: 0.3s ease;
}

.developer-card:hover .developer-card-footer i {
  transform: translateX(4px);
}

/* Pagination */
.developers-pagination {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.developers-pagination a,
.developers-pagination span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(11, 17, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 241, 232, 0.76);
  font-size: 12px;
  font-weight: 800;
}

.developers-pagination a:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.28);
}

/* Empty State */
.developers-empty-state {
  padding: 58px 28px;
  border-radius: 22px;
  text-align: center;
  background: rgba(11, 17, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.developers-empty-state i {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 28px;
}

.developers-empty-state h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
}

.developers-empty-state p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(245, 241, 232, 0.66);
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 1199px) {
  .developers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .developers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .developers-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .developers-toolbar-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .developers-page-hero {
    padding: 135px 0 55px;
  }

  .developers-page-hero-content h1 {
    font-size: 40px;
  }

  .developers-page-hero-content p {
    font-size: 15px;
  }

  .developers-grid {
    grid-template-columns: 1fr;
  }

  .developer-card-cover {
    min-height: 170px;
  }

  .developers-pagination {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Developer Details Page
--------------------------------------------------------------*/
.developer-cover-strip {
  display: none;
}

/* Hero */
.developer-details-hero {
  padding: 150px 0 70px;
  background:
          linear-gradient(
                  90deg,
                  rgba(2, 4, 10, 0.98) 0%,
                  rgba(2, 4, 10, 0.92) 36%,
                  rgba(2, 4, 10, 0.72) 66%,
                  rgba(2, 4, 10, 0.58) 100%
          ),
          url("../img/developers/developer-details-hero.png") center right / cover no-repeat;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 169, 79, 0.12);
}

.developer-details-hero::before {
  content: "";
  position: absolute;
  inset: auto auto -140px -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(214, 169, 79, 0.12);
  filter: blur(60px);
  pointer-events: none;
}

.developer-details-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}

.developer-details-title {
  max-width: 820px;
}

.developer-details-title h1 {
  margin: 0 0 20px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.9px;
}

.developer-details-title p {
  margin: 0;
  max-width: 740px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 17px;
  line-height: 1.85;
}

.developer-card-badges.compact {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.developer-card-badges.compact span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(245, 241, 232, 0.84);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(214, 169, 79, 0.18);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.developer-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* Profile Card */
.developer-profile-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.92), rgba(5, 8, 13, 0.98));
  border: 1px solid rgba(214, 169, 79, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
}

.developer-profile-logo {
  width: 132px;
  height: 98px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 20px;
  background: #fffaf0;
  border: 1px solid rgba(214, 169, 79, 0.30);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.developer-profile-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.developer-profile-logo span {
  color: #D6A94F;
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  font-weight: 700;
}

.developer-profile-card h2 {
  margin: 0 0 20px;
  color: #F8F3E8;
  font-family: var(--nav-font);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.35;
}

.developer-profile-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.developer-profile-meta div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(2, 4, 10, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.developer-profile-meta span {
  display: block;
  margin-bottom: 6px;
  color: rgba(245, 241, 232, 0.48);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.developer-profile-meta strong {
  display: block;
  color: #F8F3E8;
  font-size: 15px;
}

.developer-website-link {
  min-height: 44px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  color: #F5F1E8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.developer-website-link:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.30);
}

/* Buttons */
.developer-details-primary-btn,
.developer-details-secondary-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.developer-details-primary-btn {
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  border: 1px solid rgba(214, 169, 79, 0.78);
}

.developer-details-primary-btn:hover {
  color: #05080D;
  transform: translateY(-2px);
}

.developer-details-secondary-btn {
  color: #F5F1E8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.developer-details-secondary-btn:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.30);
}

/* Snapshot */
.developer-snapshot-section {
  padding: 42px 0;
  background: #02040A;
}

.developer-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.developer-snapshot-card {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.88), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.developer-snapshot-card i {
  display: block;
  margin-bottom: 18px;
  color: #D6A94F;
  font-size: 28px;
}

.developer-snapshot-card span {
  display: block;
  margin-bottom: 6px;
  color: rgba(245, 241, 232, 0.52);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.developer-snapshot-card strong {
  color: #F8F3E8;
  font-size: 24px;
}

/* Main Sections */
.developer-projects-section {
  padding: 70px 0 90px;
  background: #05080D;
}

.developer-projects-section + .developer-projects-section {
  padding-top: 20px;
}

.developer-projects-header {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.developer-projects-header h2 {
  margin: 0 0 16px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 600;
  line-height: 0.98;
}

.developer-projects-header h2 span {
  display: block;
  color: #D6A94F;
}

.developer-projects-header p {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(245, 241, 232, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.developer-section-block {
  margin-top: 44px;
}

.developer-section-block .developer-projects-header {
  max-width: 100%;
}

.developer-section-block .developer-projects-header h2 {
  font-size: clamp(34px, 4vw, 52px);
}

/* Premium Info Cards */
.developer-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.developer-premium-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(201, 164, 92, 0.22);
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.82), rgba(5, 8, 13, 0.94));
}

.developer-premium-card i {
  color: #D6A94F;
  font-size: 22px;
  margin-bottom: 12px;
  display: inline-flex;
}

.developer-premium-card span {
  display: block;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(245, 241, 232, 0.52);
  margin-bottom: 6px;
}

.developer-premium-card strong {
  display: block;
  color: #F8F3E8;
  font-size: 17px;
  line-height: 1.45;
}

/* Text / Pills */
.developer-text-card {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(201, 164, 92, 0.18);
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.78), rgba(5, 8, 13, 0.92));
  margin-top: 18px;
}

.developer-rich-text {
  color: rgba(245, 241, 232, 0.72);
  font-size: 16px;
  line-height: 1.85;
}

.developer-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.developer-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(201, 164, 92, 0.20);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 241, 232, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.developer-pill i {
  color: #D6A94F;
  flex: 0 0 auto;
}

/* Developer Projects */
.developer-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.developer-project-sales-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(214, 169, 79, 0.94);
  color: #02040A;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.developer-projects-empty {
  padding: 58px 28px;
  border-radius: 22px;
  text-align: center;
  background: rgba(11, 17, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.developer-projects-empty i {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 28px;
}

.developer-projects-empty h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
}

.developer-projects-empty p {
  max-width: 620px;
  margin: 0 auto 24px;
  color: rgba(245, 241, 232, 0.66);
  line-height: 1.8;
}

/* Not Found */
.developer-not-found-section {
  padding: 170px 0 100px;
  background: #02040A;
}

.developer-not-found-box {
  max-width: 720px;
  margin: 0 auto;
  padding: 46px;
  text-align: center;
  border-radius: 24px;
  background: rgba(11, 17, 24, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.developer-not-found-box i {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 28px;
}

.developer-not-found-box h1 {
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 46px;
}

.developer-not-found-box p {
  color: rgba(245, 241, 232, 0.68);
  line-height: 1.8;
}

.developer-not-found-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1199px) {
  .developer-details-hero-grid {
    grid-template-columns: 1fr;
  }

  .developer-profile-card {
    max-width: 520px;
  }

  .developer-snapshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .developer-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .developer-details-hero {
    padding: 135px 0 55px;
  }

  .developer-details-title h1 {
    font-size: 40px;
  }

  .developer-details-title p {
    font-size: 15px;
  }

  .developer-card-badges.compact {
    margin-top: 18px;
  }

  .developer-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .developer-details-primary-btn,
  .developer-details-secondary-btn {
    width: 100%;
  }

  .developer-profile-card {
    max-width: 100%;
  }

  .developer-snapshot-grid,
  .developer-projects-grid,
  .developer-premium-grid {
    grid-template-columns: 1fr;
  }

  .developer-projects-header {
    text-align: left;
  }

  .developer-projects-header h2 {
    font-size: 38px;
  }

  .developer-text-card {
    padding: 20px;
  }

  .developer-pill {
    border-radius: 16px;
  }

  .developer-not-found-actions {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# Developer Details Page - Typography Size Balance
--------------------------------------------------------------*/

/* Hero */
.developer-details-title h1 {
  font-size: clamp(38px, 4.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.6px;
}

.developer-details-title p {
  max-width: 680px;
  font-size: 15px;
  line-height: 1.75;
}

/* Hero badges */
.developer-card-badges.compact span {
  min-height: 31px;
  padding: 0 12px;
  font-size: 10px;
  letter-spacing: 0.65px;
}

/* Profile card */
.developer-profile-logo {
  width: 122px;
  height: 88px;
}

.developer-profile-logo span {
  font-size: 44px;
}

.developer-profile-card h2 {
  font-size: 19px;
  line-height: 1.35;
}

.developer-profile-meta strong {
  font-size: 14px;
}

/* Buttons */
.developer-details-primary-btn,
.developer-details-secondary-btn,
.developer-website-link {
  min-height: 44px;
  font-size: 11px;
  letter-spacing: 0.7px;
}

/* Snapshot cards */
.developer-snapshot-card {
  padding: 19px;
}

.developer-snapshot-card i {
  margin-bottom: 15px;
  font-size: 24px;
}

.developer-snapshot-card span {
  font-size: 10px;
}

.developer-snapshot-card strong {
  font-size: 20px;
}

/* Section headers */
.developer-projects-header h2 {
  font-size: clamp(21px, 2.7vw, 30px);
  line-height: 1.04;
}

.developer-projects-header p {
  max-width: 680px;
  font-size: 14px;
  line-height: 1.75;
}

.developer-section-block .developer-projects-header h2 {
  font-size: clamp(21px, 2.7vw, 30px);
}

/* Premium info cards */
.developer-premium-card i {
  font-size: 19px;
}

.developer-premium-card span {
  font-size: 10px;
}

.developer-premium-card strong {
  font-size: 15px;
  line-height: 1.45;
}

/* Text blocks */
.developer-rich-text {
  font-size: 14px;
  line-height: 1.8;
}

.developer-pill {
  min-height: 46px;
  font-size: 12px;
}

/* Empty / Not found */
.developer-projects-empty h3 {
  font-size: 30px;
}

.developer-projects-empty p,
.developer-not-found-box p {
  font-size: 14px;
}

.developer-not-found-box h1 {
  font-size: 38px;
}

/* Responsive */
@media (max-width: 768px) {
  .developer-details-title h1 {
    font-size: 38px;
  }

  .developer-details-title p {
    font-size: 14px;
  }

  .developer-projects-header h2 {
    font-size: 34px;
  }

  .developer-section-block .developer-projects-header h2 {
    font-size: 30px;
  }

  .developer-profile-card h2 {
    font-size: 18px;
  }

  .developer-snapshot-card strong {
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .developer-details-title h1 {
    font-size: 34px;
  }

  .developer-projects-header h2 {
    font-size: 30px;
  }

  .developer-section-block .developer-projects-header h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Renovation Page
--------------------------------------------------------------*/
.renovation-page-hero {
  padding: 160px 0 80px;
  background:
          linear-gradient(
                  90deg,
                  rgba(2, 4, 10, 0.98) 0%,
                  rgba(2, 4, 10, 0.92) 36%,
                  rgba(2, 4, 10, 0.72) 66%,
                  rgba(2, 4, 10, 0.58) 100%
          ),
          url("../img/renovation/renovation-hero.png") center right / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.renovation-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: center;
}

.renovation-page-hero-content {
  max-width: 850px;
}

.renovation-page-hero-content h1 {
  margin: 0 0 22px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.9px;
}

.renovation-page-hero-content h1 span {
  display: block;
  margin-top: 10px;
  color: #D6A94F;
}

.renovation-page-hero-content p {
  margin: 0;
  max-width: 760px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 17px;
  line-height: 1.85;
}

.renovation-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.renovation-hero-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.92), rgba(5, 8, 13, 0.98));
  border: 1px solid rgba(214, 169, 79, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
}

.renovation-hero-card span {
  display: block;
  margin-bottom: 10px;
  color: #D6A94F;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.renovation-hero-card h2 {
  margin: 0 0 14px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
}

.renovation-hero-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

.renovation-page-primary-btn,
.renovation-page-secondary-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.renovation-page-primary-btn {
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  border: 1px solid rgba(214, 169, 79, 0.78);
}

.renovation-page-primary-btn:hover {
  color: #05080D;
  transform: translateY(-2px);
}

.renovation-page-secondary-btn {
  color: #F5F1E8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.renovation-page-secondary-btn:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.30);
}

/* Shared Header */
.renovation-section-header {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.renovation-section-header h2 {
  margin: 0 0 18px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 600;
  line-height: 0.98;
}

.renovation-section-header h2 span {
  display: block;
  color: #D6A94F;
}

.renovation-section-header p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(245, 241, 232, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

/* Services */
.renovation-services-section {
  padding: 78px 0 90px;
  background: #02040A;
}

.renovation-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.renovation-service-card {
  min-height: 270px;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.88), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  transition: 0.35s ease;
}

.renovation-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 169, 79, 0.28);
}

.renovation-service-card i {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 24px;
}

.renovation-service-card h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 850;
}

.renovation-service-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
  line-height: 1.72;
}

/* Flow */
.renovation-flow-section {
  padding: 90px 0;
  background:
          radial-gradient(circle at 82% 28%, rgba(214, 169, 79, 0.08), transparent 28%),
          linear-gradient(180deg, #05080D 0%, #02040A 100%);
}

.renovation-flow-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.renovation-flow-content h2 {
  margin: 0 0 22px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 600;
  line-height: 0.98;
}

.renovation-flow-content h2 span {
  display: block;
  color: #D6A94F;
}

.renovation-flow-content p {
  margin: 0 0 28px;
  max-width: 680px;
  color: rgba(245, 241, 232, 0.68);
  font-size: 16px;
  line-height: 1.85;
}

.renovation-flow-steps {
  display: grid;
  gap: 14px;
}

.renovation-flow-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(11, 17, 24, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.renovation-flow-step > span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 900;
}

.renovation-flow-step h3 {
  margin: 0 0 7px;
  color: #F8F3E8;
  font-size: 17px;
  font-weight: 850;
}

.renovation-flow-step p {
  margin: 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

/* Clients */
.renovation-client-section {
  padding: 86px 0;
  background: #02040A;
}

.renovation-client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.renovation-client-card {
  padding: 26px;
  border-radius: 18px;
  background: rgba(11, 17, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.renovation-client-card h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
}

.renovation-client-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.64);
  font-size: 14px;
  line-height: 1.75;
}

/* Final CTA */
.renovation-final-cta-section {
  padding: 82px 0 96px;
  background: #05080D;
}

.renovation-final-cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: 42px;
  border-radius: 26px;
  background:
          radial-gradient(circle at 82% 24%, rgba(214, 169, 79, 0.14), transparent 28%),
          linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(5, 8, 13, 0.98));
  border: 1px solid rgba(214, 169, 79, 0.16);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.34);
}

.renovation-final-cta-box h2 {
  margin: 0 0 16px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 1;
}

.renovation-final-cta-box p {
  margin: 0;
  max-width: 720px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 16px;
  line-height: 1.8;
}

.renovation-final-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

/* Responsive */
@media (max-width: 1199px) {
  .renovation-page-hero-grid,
  .renovation-flow-layout,
  .renovation-final-cta-box {
    grid-template-columns: 1fr;
  }

  .renovation-hero-card {
    max-width: 560px;
  }

  .renovation-services-grid,
  .renovation-client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .renovation-page-hero {
    padding: 135px 0 60px;
  }

  .renovation-page-hero-content h1 {
    font-size: 40px;
  }

  .renovation-hero-actions,
  .renovation-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .renovation-page-primary-btn,
  .renovation-page-secondary-btn {
    width: 100%;
  }

  .renovation-section-header,
  .renovation-flow-content {
    text-align: left;
  }

  .renovation-section-header h2,
  .renovation-flow-content h2 {
    font-size: 38px;
  }

  .renovation-services-grid,
  .renovation-client-grid {
    grid-template-columns: 1fr;
  }

  .renovation-flow-step {
    grid-template-columns: 1fr;
  }

  .renovation-final-cta-box {
    padding: 28px;
    border-radius: 22px;
  }
}

/*--------------------------------------------------------------
# Renovation Page - Typography Size Balance
--------------------------------------------------------------*/

/* Hero */
.renovation-page-hero-content h1 {
  font-size: clamp(38px, 4.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.6px;
}

.renovation-page-hero-content h1 span {
  margin-top: 8px;
}

.renovation-page-hero-content p {
  max-width: 680px;
  font-size: 15px;
  line-height: 1.75;
}

/* Hero side card */
.renovation-hero-card {
  padding: 24px;
}

.renovation-hero-card h2 {
  font-size: 28px;
  line-height: 1.08;
}

.renovation-hero-card p {
  font-size: 13px;
  line-height: 1.7;
}

/* Buttons */
.renovation-page-primary-btn,
.renovation-page-secondary-btn {
  min-height: 46px;
  padding: 0 21px;
  font-size: 11px;
  letter-spacing: 0.7px;
}

/* Shared section headers */
.renovation-section-header h2,
.renovation-flow-content h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
}

.renovation-section-header p,
.renovation-flow-content p {
  max-width: 680px;
  font-size: 14px;
  line-height: 1.75;
}

/* Service cards */
.renovation-service-card {
  min-height: 248px;
  padding: 23px;
}

.renovation-service-card i {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  font-size: 21px;
}

.renovation-service-card h3 {
  font-size: 15px;
  line-height: 1.35;
}

.renovation-service-card p {
  font-size: 13px;
  line-height: 1.68;
}

/* Flow steps */
.renovation-flow-step {
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px;
}

.renovation-flow-step > span {
  width: 52px;
  height: 52px;
  font-size: 13px;
}

.renovation-flow-step h3 {
  font-size: 15px;
}

.renovation-flow-step p {
  font-size: 13px;
  line-height: 1.65;
}

/* Client cards */
.renovation-client-card {
  padding: 23px;
}

.renovation-client-card h3 {
  font-size: 25px;
  line-height: 1.08;
}

.renovation-client-card p {
  font-size: 13px;
  line-height: 1.7;
}

/* Final CTA */
.renovation-final-cta-box {
  padding: 38px;
}

.renovation-final-cta-box h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.04;
}

.renovation-final-cta-box p {
  font-size: 14px;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 768px) {
  .renovation-page-hero-content h1 {
    font-size: 38px;
  }

  .renovation-page-hero-content p {
    font-size: 14px;
  }

  .renovation-hero-card h2 {
    font-size: 26px;
  }

  .renovation-section-header h2,
  .renovation-flow-content h2 {
    font-size: 34px;
  }

  .renovation-flow-step {
    grid-template-columns: 1fr;
  }

  .renovation-final-cta-box {
    padding: 28px;
  }

  .renovation-final-cta-box h2 {
    font-size: 31px;
  }
}

@media (max-width: 480px) {
  .renovation-page-hero-content h1 {
    font-size: 34px;
  }

  .renovation-section-header h2,
  .renovation-flow-content h2 {
    font-size: 30px;
  }

  .renovation-client-card h3 {
    font-size: 23px;
  }

  .renovation-final-cta-box h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.about-page-hero {
  padding: 160px 0 80px;
  background:
          linear-gradient(
                  90deg,
                  rgba(2, 4, 10, 0.98) 0%,
                  rgba(2, 4, 10, 0.92) 36%,
                  rgba(2, 4, 10, 0.72) 66%,
                  rgba(2, 4, 10, 0.58) 100%
          ),
          url("../img/about/about-hero.png") center right / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.about-page-hero-content {
  max-width: 900px;
}

.about-page-hero-content h1 {
  margin: 0 0 22px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.9px;
}

.about-page-hero-content h1 span {
  display: block;
  margin-top: 10px;
  color: #D6A94F;
}

.about-page-hero-content p {
  margin: 0;
  max-width: 780px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 17px;
  line-height: 1.85;
}

.about-hero-actions,
.about-promise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.about-primary-btn,
.about-secondary-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.about-primary-btn {
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  border: 1px solid rgba(214, 169, 79, 0.78);
}

.about-primary-btn:hover {
  color: #05080D;
  transform: translateY(-2px);
}

.about-secondary-btn {
  color: #F5F1E8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.about-secondary-btn:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.30);
}

/* Intro */
.about-intro-section {
  padding: 84px 0;
  background: #02040A;
}

.about-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 54px;
  align-items: center;
}

.about-intro-content h2,
.about-ecosystem-content h2 {
  margin: 0 0 22px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 600;
  line-height: 0.98;
}

.about-intro-content h2 span,
.about-ecosystem-content h2 span {
  display: block;
  color: #D6A94F;
}

.about-intro-content p,
.about-ecosystem-content p {
  margin: 0 0 18px;
  max-width: 760px;
  color: rgba(245, 241, 232, 0.68);
  font-size: 16px;
  line-height: 1.85;
}

.about-intro-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.92), rgba(5, 8, 13, 0.98));
  border: 1px solid rgba(214, 169, 79, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
}

.about-intro-card span {
  display: block;
  margin-bottom: 10px;
  color: #D6A94F;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.about-intro-card h3 {
  margin: 0 0 14px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
}

.about-intro-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

/* Section Header */
.about-section-header {
  max-width: 880px;
  margin: 0 auto 40px;
  text-align: center;
}

.about-section-header h2 {
  margin: 0;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 600;
  line-height: 0.98;
}

.about-section-header h2 span {
  display: block;
  color: #D6A94F;
}

/* Pillars */
.about-pillars-section {
  padding: 86px 0;
  background: #05080D;
}

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-pillar-card {
  min-height: 285px;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.88), rgba(5, 8, 13, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
  transition: 0.35s ease;
}

.about-pillar-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214, 169, 79, 0.28);
}

.about-pillar-card i {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 24px;
}

.about-pillar-card h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 850;
}

.about-pillar-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
  line-height: 1.72;
}

/* Ecosystem */
.about-ecosystem-section {
  padding: 90px 0;
  background:
          radial-gradient(circle at 82% 28%, rgba(214, 169, 79, 0.08), transparent 28%),
          linear-gradient(180deg, #02040A 0%, #05080D 100%);
}

.about-ecosystem-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.about-ecosystem-list {
  display: grid;
  gap: 14px;
}

.about-ecosystem-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(11, 17, 24, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-ecosystem-item > span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  font-family: var(--nav-font);
  font-size: 14px;
  font-weight: 900;
}

.about-ecosystem-item h3 {
  margin: 0 0 7px;
  color: #F8F3E8;
  font-size: 17px;
  font-weight: 850;
}

.about-ecosystem-item p {
  margin: 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 14px;
  line-height: 1.7;
}

/* Promise */
.about-promise-section {
  padding: 82px 0 96px;
  background: #02040A;
}

.about-promise-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: 42px;
  border-radius: 26px;
  background:
          radial-gradient(circle at 82% 24%, rgba(214, 169, 79, 0.14), transparent 28%),
          linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(5, 8, 13, 0.98));
  border: 1px solid rgba(214, 169, 79, 0.16);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.34);
}

.about-promise-box h2 {
  margin: 0 0 16px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 600;
  line-height: 1;
}

.about-promise-box p {
  margin: 0;
  max-width: 720px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 16px;
  line-height: 1.8;
}

.about-promise-actions {
  flex-direction: column;
  align-items: stretch;
}

/* Responsive */
@media (max-width: 1199px) {
  .about-intro-layout,
  .about-ecosystem-layout,
  .about-promise-box {
    grid-template-columns: 1fr;
  }

  .about-intro-card {
    max-width: 560px;
  }

  .about-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-page-hero {
    padding: 135px 0 60px;
  }

  .about-page-hero-content h1 {
    font-size: 40px;
  }

  .about-hero-actions,
  .about-promise-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-primary-btn,
  .about-secondary-btn {
    width: 100%;
  }

  .about-section-header,
  .about-ecosystem-content {
    text-align: left;
  }

  .about-section-header h2,
  .about-intro-content h2,
  .about-ecosystem-content h2 {
    font-size: 38px;
  }

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

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

  .about-promise-box {
    padding: 28px;
    border-radius: 22px;
  }
}

/*--------------------------------------------------------------
# About Page - Typography Size Balance
--------------------------------------------------------------*/

/* Hero */
.about-page-hero-content h1 {
  font-size: clamp(38px, 4.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.6px;
}

.about-page-hero-content h1 span {
  margin-top: 8px;
}

.about-page-hero-content p {
  max-width: 700px;
  font-size: 15px;
  line-height: 1.75;
}

/* Buttons */
.about-primary-btn,
.about-secondary-btn {
  min-height: 46px;
  padding: 0 21px;
  font-size: 11px;
  letter-spacing: 0.7px;
}

/* Intro / Ecosystem headings */
.about-intro-content h2,
.about-ecosystem-content h2,
.about-section-header h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
}

.about-intro-content p,
.about-ecosystem-content p {
  max-width: 700px;
  font-size: 14px;
  line-height: 1.75;
}

/* Intro card */
.about-intro-card {
  padding: 24px;
}

.about-intro-card h3 {
  font-size: 28px;
  line-height: 1.08;
}

.about-intro-card p {
  font-size: 13px;
  line-height: 1.7;
}

/* Pillar cards */
.about-pillar-card {
  min-height: 258px;
  padding: 23px;
}

.about-pillar-card i {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  font-size: 21px;
}

.about-pillar-card h3 {
  font-size: 15px;
  line-height: 1.35;
}

.about-pillar-card p {
  font-size: 13px;
  line-height: 1.68;
}

/* Ecosystem items */
.about-ecosystem-item {
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px;
}

.about-ecosystem-item > span {
  width: 52px;
  height: 52px;
  font-size: 13px;
}

.about-ecosystem-item h3 {
  font-size: 15px;
}

.about-ecosystem-item p {
  font-size: 13px;
  line-height: 1.65;
}

/* Promise CTA */
.about-promise-box {
  padding: 38px;
}

.about-promise-box h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.04;
}

.about-promise-box p {
  font-size: 14px;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 768px) {
  .about-page-hero-content h1 {
    font-size: 38px;
  }

  .about-page-hero-content p {
    font-size: 14px;
  }

  .about-section-header h2,
  .about-intro-content h2,
  .about-ecosystem-content h2 {
    font-size: 34px;
  }

  .about-intro-card h3 {
    font-size: 26px;
  }

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

  .about-promise-box {
    padding: 28px;
  }

  .about-promise-box h2 {
    font-size: 31px;
  }
}

@media (max-width: 480px) {
  .about-page-hero-content h1 {
    font-size: 34px;
  }

  .about-section-header h2,
  .about-intro-content h2,
  .about-ecosystem-content h2 {
    font-size: 30px;
  }

  .about-promise-box h2 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page-hero {
  padding: 160px 0 80px;
  background:
          linear-gradient(
                  90deg,
                  rgba(2, 4, 10, 0.98) 0%,
                  rgba(2, 4, 10, 0.92) 36%,
                  rgba(2, 4, 10, 0.72) 66%,
                  rgba(2, 4, 10, 0.58) 100%
          ),
          url("../img/contact/contact-hero.png") center right / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.contact-page-hero-content {
  max-width: 900px;
}

.contact-page-hero-content h1 {
  margin: 0 0 22px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.9px;
}

.contact-page-hero-content h1 span {
  display: block;
  margin-top: 10px;
  color: #D6A94F;
}

.contact-page-hero-content p {
  margin: 0;
  max-width: 780px;
  color: rgba(245, 241, 232, 0.70);
  font-size: 17px;
  line-height: 1.85;
}

.contact-main-section {
  padding: 70px 0 96px;
  background: #02040A;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.contact-form-panel,
.contact-info-card {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.90), rgba(5, 8, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.contact-form-panel {
  padding: 30px;
}

.contact-form-header {
  margin-bottom: 24px;
}

.contact-form-header h2 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}

.contact-form-header p {
  margin: 0;
  color: rgba(245, 241, 232, 0.66);
  font-size: 15px;
  line-height: 1.75;
}

.contact-related-box {
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(214, 169, 79, 0.08);
  border: 1px solid rgba(214, 169, 79, 0.16);
}

.contact-related-box span {
  display: block;
  margin-bottom: 6px;
  color: #D6A94F;
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-related-box strong {
  color: #F8F3E8;
  font-size: 15px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-field-full {
  grid-column: span 2;
}

.contact-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 241, 232, 0.58);
  font-family: var(--nav-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 4, 10, 0.64);
  color: #F5F1E8;
  outline: none;
  font-size: 14px;
}

.contact-field input,
.contact-field select {
  height: 50px;
  padding: 0 14px;
}

.contact-field textarea {
  padding: 14px;
  resize: vertical;
  min-height: 150px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(245, 241, 232, 0.34);
}

.contact-submit-btn {
  min-height: 52px;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: #05080D;
  background: linear-gradient(135deg, #E8C878, #D6A94F);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
}

.contact-form-note {
  margin: 16px 0 0;
  color: rgba(245, 241, 232, 0.42);
  font-size: 12px;
  line-height: 1.7;
}

.contact-side-panel {
  position: sticky;
  top: 105px;
  display: grid;
  gap: 18px;
}

.contact-info-card {
  padding: 24px;
}

.contact-info-card h3 {
  margin: 0 0 12px;
  color: #F8F3E8;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
}

.contact-info-card h4 {
  margin: 0 0 16px;
  color: #F8F3E8;
  font-size: 18px;
  font-weight: 850;
}

.contact-info-card p {
  margin: 0;
  color: rgba(245, 241, 232, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

.contact-help-list {
  display: grid;
  gap: 12px;
}

.contact-help-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
}

.contact-help-list i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(214, 169, 79, 0.10);
  color: #D6A94F;
  font-size: 18px;
}

.contact-help-list span {
  color: rgba(245, 241, 232, 0.72);
  font-size: 14px;
}

.contact-side-link {
  min-height: 44px;
  margin-top: 14px;
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  color: #F5F1E8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-family: var(--nav-font);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.contact-side-link:hover {
  color: #D6A94F;
  border-color: rgba(214, 169, 79, 0.30);
}

.contact-success-box,
.contact-error-box {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 22px;
  padding: 16px;
  border-radius: 16px;
}

.contact-success-box {
  background: rgba(64, 180, 120, 0.10);
  border: 1px solid rgba(64, 180, 120, 0.22);
}

.contact-error-box {
  background: rgba(220, 80, 80, 0.10);
  border: 1px solid rgba(220, 80, 80, 0.22);
}

.contact-success-box i {
  color: #40B478;
  font-size: 24px;
}

.contact-error-box i {
  color: #DC5050;
  font-size: 24px;
}

.contact-success-box strong,
.contact-error-box strong {
  display: block;
  margin-bottom: 5px;
  color: #F8F3E8;
  font-size: 15px;
}

.contact-success-box p,
.contact-error-box p {
  margin: 0;
  color: rgba(245, 241, 232, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

.contact-related-box p {
  margin: 7px 0 0;
  color: rgba(245, 241, 232, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.contact-related-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.contact-related-meta small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(245, 241, 232, 0.74);
  background: rgba(2, 4, 10, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 11px;
  font-weight: 700;
}

.contact-related-meta i {
  color: #D6A94F;
}

.contact-locked-field {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 12px;
  color: rgba(245, 241, 232, 0.78);
  background: rgba(214, 169, 79, 0.08);
  border: 1px solid rgba(214, 169, 79, 0.18);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1199px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-side-panel {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .contact-page-hero {
    padding: 135px 0 60px;
  }

  .contact-page-hero-content h1 {
    font-size: 40px;
  }

  .contact-form-panel {
    padding: 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-field-full {
    grid-column: auto;
  }

  .contact-submit-btn {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Contact Page - Typography Size Balance
--------------------------------------------------------------*/

/* Hero */
.contact-page-hero-content h1 {
  font-size: clamp(38px, 4.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.6px;
}

.contact-page-hero-content h1 span {
  margin-top: 8px;
}

.contact-page-hero-content p {
  max-width: 700px;
  font-size: 15px;
  line-height: 1.75;
}

/* Form panel */
.contact-form-panel {
  padding: 28px;
}

.contact-form-header {
  margin-bottom: 22px;
}

.contact-form-header h2 {
  font-size: 34px;
  line-height: 1.04;
}

.contact-form-header p {
  font-size: 14px;
  line-height: 1.7;
}

/* Related box */
.contact-related-box span {
  font-size: 10px;
}

.contact-related-box strong {
  font-size: 14px;
}

.contact-related-box p {
  font-size: 12px;
}

/* Fields */
.contact-field label {
  font-size: 10px;
  letter-spacing: 0.9px;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  font-size: 13px;
}

.contact-field input,
.contact-field select,
.contact-locked-field {
  height: 48px;
}

.contact-field textarea {
  min-height: 138px;
}

/* Submit */
.contact-submit-btn {
  min-height: 48px;
  padding: 0 23px;
  font-size: 11px;
  letter-spacing: 0.7px;
}

/* Sidebar cards */
.contact-info-card {
  padding: 22px;
}

.contact-info-card h3 {
  font-size: 28px;
  line-height: 1.08;
}

.contact-info-card h4 {
  font-size: 16px;
}

.contact-info-card p {
  font-size: 13px;
  line-height: 1.7;
}

/* Help list */
.contact-help-list i {
  width: 36px;
  height: 36px;
  font-size: 16px;
}

.contact-help-list span {
  font-size: 13px;
}

/* Side link */
.contact-side-link {
  min-height: 42px;
  font-size: 11px;
  letter-spacing: 0.65px;
}

/* Success / Error */
.contact-success-box strong,
.contact-error-box strong {
  font-size: 14px;
}

.contact-success-box p,
.contact-error-box p {
  font-size: 12px;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-page-hero-content h1 {
    font-size: 38px;
  }

  .contact-page-hero-content p {
    font-size: 14px;
  }

  .contact-form-panel {
    padding: 22px;
  }

  .contact-form-header h2 {
    font-size: 30px;
  }

  .contact-info-card h3 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .contact-page-hero-content h1 {
    font-size: 34px;
  }

  .contact-form-header h2 {
    font-size: 28px;
  }

  .contact-info-card h3 {
    font-size: 24px;
  }
}