/* =========================
   GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Montserrat', sans-serif;
  background: #111111;
  color: #ffffff;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  width: 280px;
  height: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 20;
}

.logo-img {
  width: 100%;
  height: auto;
  display: block;
}

.logo-black {
  display: none;
}

body.light-theme .logo-white {
  display: none;
}

body.light-theme .logo-black {
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: 0.3s ease;
}

.nav a:hover {
  color: #d7b08a;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 10px;
}

/* =========================
   HERO
========================= */
.hero-slider {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 6s ease;
}

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

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.42) 48%, rgba(0,0,0,0.24) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 390px;
  align-items: center;
  gap: 40px;
  padding-top: 120px;
  padding-bottom: 50px;
}

.hero-left {
  max-width: 740px;
}

.hero-subtitle {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: #d7b08a;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 1.02;
  font-weight: 800;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-text {
  max-width: 620px;
  color: rgba(255,255,255,0.86);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.35s ease;
}

.btn-primary {
  background: #d7b08a;
  color: #111111;
}

.btn-primary:hover {
  background: #e4c2a2;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

.hero-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card {
  min-height: 230px;
  padding: 28px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #d7b08a;
  transform: scaleY(0);
  transform-origin: top;
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.24);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-no {
  font-size: 0.95rem;
  color: #d7b08a;
  font-weight: 700;
  letter-spacing: 2px;
}

.service-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 14px 0 12px;
}

.service-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.83);
}

.service-link {
  margin-top: 22px;
  display: inline-block;
  font-weight: 600;
  color: #ffffff;
}

.slider-controls {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.18);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: 0.3s ease;
}

.dot.active {
  background: #d7b08a;
  transform: scale(1.15);
}

/* =========================
   ANIMATIONS
========================= */
.reveal,
.reveal-card,
.reveal-up {
  opacity: 0;
}

.reveal {
  transform: translateY(35px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-card {
  transform: translateX(35px);
  transition: all 0.9s ease;
}

.reveal-card.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  transform: translateY(45px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ABOUT HOME SECTION
========================= */
.about-section {
  position: relative;
  padding: 80px 0 110px;
  background: #0c0c0c;
  overflow: hidden;
}

.about-bg-track {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.about-bg-text {
  display: block;
  width: max-content;
  padding-left: 40px;
  font-size: clamp(4rem, 13vw, 10rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.08);
  white-space: nowrap;
  transform: translateX(0);
  transition: transform 0.18s linear;
  will-change: transform;
}

.about-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: start;
  margin-top: 95px;
}

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

.about-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 1.2s ease;
}

.about-section.in-view .about-image img {
  transform: scale(1);
}

.about-content {
  max-width: 780px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.88rem;
  letter-spacing: 4px;
  color: #d7b08a;
  font-weight: 600;
}

.about-content h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
}

.about-content p {
  max-width: 760px;
  color: rgba(255,255,255,0.80);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 34px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin-bottom: 38px;
}

.feature-item {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 1rem;
}

.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7b08a;
}

.about-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 58px;
  padding: 0 34px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  overflow: hidden;
  transition: 0.35s ease;
}

.about-btn span {
  position: relative;
  z-index: 2;
}

.about-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #d7b08a;
  transform: translateX(-102%);
  transition: transform 0.45s ease;
  z-index: 1;
}

.about-btn:hover {
  color: #111111;
  border-color: #d7b08a;
  transform: translateY(-3px);
}

.about-btn:hover::before {
  transform: translateX(0);
}

/* =========================
   LISTINGS HOME SECTION
========================= */
.listings-section {
  padding: 100px 0 120px;
  background: #0d0d0d;
}

.section-heading {
  margin-bottom: 48px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-top: 12px;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.listing-card {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255,255,255,0.10);
  background: #111111;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 34px 28px;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.listing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.18);
}

.listing-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.35s ease, transform 0.9s ease, filter 0.35s ease 0.5s;
  z-index: 1;
}

.listing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.35s ease 0.5s;
  z-index: 2;
}

.listing-card:hover .listing-image {
  opacity: 1;
  transform: scale(1);
  filter: brightness(65%);
}

.listing-card:hover .listing-overlay {
  background: rgba(0,0,0,0.35);
}

.listing-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.listing-date {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
}

.listing-card h3 {
  font-size: 2rem;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 700;
}

.listing-card p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 95%;
}

.listing-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #d7b08a;
  text-transform: uppercase;
  position: relative;
}

.listing-link::after {
  content: "→";
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.listing-card:hover .listing-link::after {
  transform: translateX(6px);
}

/* =========================
   VIDEO
========================= */
.video-section {
  padding: 80px 0;
  background: #0b0b0b;
}

.video-cover {
  position: relative;
  display: block;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s ease;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.3s ease;
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #ffffff;
}

.video-cover:hover img {
  transform: scale(1.05);
}

.video-cover:hover .video-overlay {
  background: rgba(0,0,0,0.5);
}

.video-cover:hover .video-play-button {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(215,176,138,0.18);
}

/* =========================
   INNER PAGE SHARED
========================= */
.inner-page {
  min-height: 100vh;
  padding: 180px 0 100px;
  background: #111111;
}

.page-kicker,
.page-hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: #d7b08a;
  letter-spacing: 4px;
  font-size: 0.9rem;
  font-weight: 600;
}

.inner-page h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.inner-page p {
  max-width: 760px;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.9;
}

.page-hero {
  position: relative;
  padding: 180px 0 90px;
  background: #0c0c0c;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.45), rgba(0,0,0,0.12)), radial-gradient(circle at top left, rgba(215,176,138,0.08), transparent 38%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1.02;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,0.80);
  font-size: 1.05rem;
  line-height: 1.9;
}

/* =========================
   ABOUT PAGE
========================= */
.about-intro-section,
.about-stats-section,
.about-story-section {
  background: #111111;
}

.about-intro-section,
.about-values-section,
.about-story-section,
.about-cta-section {
  padding: 90px 0;
}

.about-values-section,
.about-cta-section {
  background: #0d0d0d;
}

.about-stats-section {
  padding: 0 0 90px;
}

.about-intro-grid,
.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.about-story-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.about-intro-left h2,
.about-story-content h2,
.about-cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 22px;
  color: #ffffff;
  text-transform: uppercase;
}

.about-intro-left p,
.about-story-content p,
.about-cta-box p {
  color: rgba(255,255,255,0.80);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 1rem;
}

.about-image-card,
.about-story-image {
  overflow: hidden;
  border-radius: 6px;
}

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

.about-story-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 6px;
}

.about-stats-grid,
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.about-values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.stat-box,
.value-card,
.about-cta-box {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.stat-box {
  padding: 34px 24px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #d7b08a;
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-box span {
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
}

.left-heading {
  text-align: left;
  margin-bottom: 42px;
}

.value-card {
  padding: 34px 28px;
  min-height: 280px;
}

.value-no {
  display: inline-block;
  margin-bottom: 18px;
  color: #d7b08a;
  font-weight: 700;
  letter-spacing: 2px;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.value-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
}

.about-cta-box {
  padding: 56px 48px;
  text-align: center;
}

.about-cta-box p {
  max-width: 760px;
  margin: 0 auto 28px;
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-info-section {
  padding: 90px 0;
  background: #111111;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-left h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-left .contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.contact-left .contact-item span {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8a27a;
  font-weight: 600;
}

.contact-left .contact-item a,
.contact-left .contact-item p {
  font-size: 22px;
  line-height: 1.6;
  color: #ffffff;
}

.contact-left .contact-item a:hover {
  color: #d7b08a;
}

.contact-map {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.10);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-cta-section {
  padding: 90px 0 110px;
  background: #0d0d0d;
}

.contact-cta-box {
  text-align: center;
  padding: 50px 40px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.contact-cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.contact-cta-box p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 24px;
}

.contact-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   SERVICES & PROJECTS PAGES
========================= */
.services-section,
.projects-section,
.service-detail-section,
.service-points-section {
  background: #111111;
}

.services-section,
.projects-section,
.service-detail-section {
  padding: 90px 0 110px;
}

.service-points-section {
  padding: 0 0 110px;
}

.services-list,
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.service-row,
.project-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.project-row {
  padding: 24px;
}

.service-row:hover,
.project-row:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
}

.service-row.reverse .service-row-image,
.project-row.reverse .project-row-image {
  order: 2;
}

.service-row.reverse .service-row-content,
.project-row.reverse .project-row-content {
  order: 1;
}

.service-row-image,
.project-row-image {
  overflow: hidden;
  border-radius: 6px;
}

.service-row-image img,
.project-row-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.6s ease;
}

.service-row:hover .service-row-image img,
.project-row:hover .project-row-image img {
  transform: scale(1.08);
}

.service-row-content,
.project-row-content {
  max-width: 620px;
}

.service-row-no,
.project-row-category {
  display: inline-block;
  margin-bottom: 14px;
  color: #d7b08a;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.82rem;
}

.service-row-content h2,
.project-row-content h2,
.service-detail-content h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #ffffff;
}

.service-row-content p,
.project-row-content p,
.service-detail-content p {
  color: rgba(255,255,255,0.80);
  line-height: 1.9;
  margin-bottom: 24px;
}

.service-row-link,
.project-row-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d7b08a;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-row-link::after,
.project-row-link::after {
  content: "→";
  transition: transform 0.3s ease;
}

.service-row:hover .service-row-link::after,
.project-row:hover .project-row-link::after {
  transform: translateX(5px);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.service-detail-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 6px;
}

.service-points-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-point {
  padding: 30px 26px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.service-point h3 {
  font-size: 1.45rem;
  color: #ffffff;
  margin-bottom: 14px;
}

.service-point p {
  color: rgba(255,255,255,0.78);
  line-height: 1.85;
}

/* =========================
   PROPERTY DETAIL
========================= */
.property-detail,
.property-extra-section {
  background: #0d0d0d;
}

.property-detail {
  padding: 160px 0 100px;
  min-height: 100vh;
}

.property-hero {
  margin-bottom: 42px;
  overflow: hidden;
  border-radius: 6px;
}

.property-hero img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.property-body h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.05;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
}

.property-body p {
  max-width: 900px;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.95;
  margin-bottom: 20px;
}

.property-location,
.property-plans-box,
.property-map-box {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}

.property-location {
  margin-top: 34px;
  padding: 26px;
}

.property-location h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.property-extra-section {
  padding: 80px 0 110px;
}

.property-plans-box,
.property-map-box {
  padding: 34px;
}

.property-map-box {
  margin-top: 34px;
}

.property-plans-box h2,
.property-map-box h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  color: #ffffff;
  margin: 10px 0 26px;
  text-transform: uppercase;
}

.property-plan-grid.two-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.plan-card {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.10);
  background: #111;
  padding: 12px;
}

.plan-card img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
  transition: 0.35s ease;
}

.plan-card span {
  display: block;
  padding: 16px;
  color: #ffffff;
  font-weight: 700;
}

.plan-card:hover img {
  transform: scale(1.03);
}

.property-map {
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.10);
}

.property-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-direction-btn {
  display: inline-flex;
  margin-top: 20px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  background: #d7b08a;
  color: #111111;
  font-weight: 800;
  border-radius: 4px;
  transition: 0.3s ease;
}

.map-direction-btn:hover {
  transform: translateY(-2px);
  background: #e4c2a2;
}

/* =========================
   PORTFOLIO PAGE
========================= */
.portfolio-list-page {
  padding: 90px 0 120px;
  background: #111111;
}

.portfolio-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 42px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.portfolio-filter-bar span {
  color: #d7b08a;
  font-size: 0.85rem;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-filter-bar p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.05);
}

.portfolio-card-image {
  height: 310px;
  overflow: hidden;
  background: #0b0b0b;
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.65s ease, filter 0.45s ease;
}

.portfolio-card:hover .portfolio-card-image img {
  transform: scale(1.08);
  filter: brightness(0.82);
}

.portfolio-card-content {
  padding: 28px 26px 30px;
}

.portfolio-date {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.62);
  font-size: 0.78rem;
  letter-spacing: 2px;
  font-weight: 700;
}

.portfolio-card h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.portfolio-card p {
  color: rgba(255,255,255,0.76);
  line-height: 1.8;
  margin-bottom: 24px;
}

.portfolio-link {
  color: #d7b08a;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.portfolio-link::after {
  content: " →";
  transition: margin-left 0.3s ease;
}

.portfolio-card:hover .portfolio-link::after {
  margin-left: 6px;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  position: relative;
  background: #080808;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 55px 0 28px;
}

.footer-bg-vertical {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg) translateX(20px);
  transform-origin: left top;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.07);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.site-footer.in-view .footer-bg-vertical {
  opacity: 1;
  transform: translateY(-50%) rotate(-90deg) translateX(0);
}

.footer-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, 94%);
  margin: 0 auto;
  padding-left: 120px;
}

.footer-top {
  max-width: 720px;
  margin-bottom: 34px;
}

.footer-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 4px;
  color: #d7b08a;
  font-weight: 600;
}

.footer-top h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  margin-bottom: 14px;
  font-weight: 800;
  color: #ffffff;
}

.footer-top p {
  color: rgba(255,255,255,0.76);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 760px;
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: end;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 24px;
}

.footer-info-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-label {
  color: #d7b08a;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-info-group a,
.footer-info-group p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
  transition: 0.3s ease;
  word-break: normal;
  overflow-wrap: anywhere;
}

.footer-info-group a:hover {
  color: #d7b08a;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: end;
  gap: 16px;
}

.footer-logo-box {
  position: relative;
}

.footer-logo-box .footer-logo {
  width: 160px;
  transition: opacity 0.3s ease;
}

/* FOOTER LOGO TEMA DEĞİŞİMİ */

/* Varsayılan tema koyu olduğu için beyaz logo görünür */
.footer-logo.logo-light {
  display: block;
}

.footer-logo.logo-dark {
  display: none;
}

/* Light tema açılınca siyah logo görünür */
body.light-theme .footer-logo.logo-light {
  display: none;
}

body.light-theme .footer-logo.logo-dark {
  display: block;
}

.footer-logo-box {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-logo {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1100px) {
  .footer-logo-box {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-logo-box {
    width: 150px;
  }
}
/* =========================
   FLOAT CONTACT
========================= */
.contact-float {
  position: fixed;
  bottom: 30px;
  left: 25px;
  z-index: 99999;
}

.contact-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: #d7b08a;
  color: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  animation: pulse 2.2s infinite;
}

.contact-toggle svg {
  width: 26px;
  height: 26px;
}

.contact-toggle:hover {
  transform: scale(1.08);
}

.contact-label {
  font-size: 9px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  max-width: 52px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(215,176,138,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(215,176,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(215,176,138,0); }
}

.contact-menu {
  position: absolute;
  bottom: 75px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  pointer-events: none;
  transition: all 0.35s ease;
}

.contact-menu.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.contact-float .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.3s ease;
}

.contact-menu.active .contact-item {
  transform: translateX(0);
  opacity: 1;
}

.contact-menu.active .contact-item:nth-child(1) { transition-delay: 0.05s; }
.contact-menu.active .contact-item:nth-child(2) { transition-delay: 0.1s; }
.contact-menu.active .contact-item:nth-child(3) { transition-delay: 0.15s; }

.contact-float .contact-item svg {
  width: 18px;
  height: 18px;
}

.contact-float .contact-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.contact-float .contact-item.whatsapp { background: #25D366; }
.contact-float .contact-item.instagram { background: linear-gradient(45deg, #833AB4, #FD1D1D, #FCAF45); }
.contact-float .contact-item.phone { background: #333; }

/* =========================
   THEME TOGGLE
========================= */
.theme-toggle {
  position: fixed;
  right: 22px;
  top: 80%;
  transform: translateY(-50%);
  z-index: 9999;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  background: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.theme-toggle:hover {
  transform: translateY(-50%) scale(1.05);
}

.theme-icon {
  position: absolute;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7) rotate(-20deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.theme-icon svg {
  width: 100%;
  height: 100%;
}

.theme-icon.active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* =========================
   LIGHT THEME
========================= */
body.light-theme {
  background: #f5f3ef;
  color: #111111;
}

body.light-theme .site-header {
  background: transparent;
}

body.light-theme .nav a,
body.light-theme .hero-title,
body.light-theme .about-content h2,
body.light-theme .section-heading h2,
body.light-theme .property-body h1,
body.light-theme .property-location h3,
body.light-theme .listing-card h3,
body.light-theme .inner-page h1,
body.light-theme .page-hero h1,
body.light-theme .about-intro-left h2,
body.light-theme .about-story-content h2,
body.light-theme .about-cta-box h2,
body.light-theme .value-card h3,
body.light-theme .contact-left h2,
body.light-theme .service-row-content h2,
body.light-theme .service-detail-content h2,
body.light-theme .service-point h3,
body.light-theme .project-row-content h2,
body.light-theme .portfolio-card h2,
body.light-theme .property-plans-box h2,
body.light-theme .property-map-box h2,
body.light-theme .plan-card span {
  color: #111111;
}

body.light-theme .hero-text,
body.light-theme .about-content p,
body.light-theme .inner-page p,
body.light-theme .property-body p,
body.light-theme .property-meta,
body.light-theme .listing-card p,
body.light-theme .page-hero p,
body.light-theme .about-intro-left p,
body.light-theme .about-story-content p,
body.light-theme .about-cta-box p,
body.light-theme .value-card p,
body.light-theme .stat-box span,
body.light-theme .contact-left .contact-item a,
body.light-theme .contact-left .contact-item p,
body.light-theme .service-row-content p,
body.light-theme .service-detail-content p,
body.light-theme .service-point p,
body.light-theme .project-row-content p,
body.light-theme .portfolio-filter-bar p,
body.light-theme .portfolio-card p,
body.light-theme .portfolio-date {
  color: rgba(17,17,17,0.78);
}

body.light-theme .nav a:hover {
  color: #b68d63;
}

body.light-theme .menu-toggle {
  border-color: rgba(17,17,17,0.16);
  background: rgba(17,17,17,0.05);
}

body.light-theme .menu-toggle span {
  background: #111111;
}

body.light-theme .hero-slider,
body.light-theme .about-section,
body.light-theme .listings-section,
body.light-theme .property-detail,
body.light-theme .inner-page,
body.light-theme .page-hero,
body.light-theme .about-intro-section,
body.light-theme .about-stats-section,
body.light-theme .about-story-section,
body.light-theme .contact-info-section,
body.light-theme .services-section,
body.light-theme .service-detail-section,
body.light-theme .service-points-section,
body.light-theme .projects-section,
body.light-theme .portfolio-list-page,
body.light-theme .property-extra-section {
  background: #f5f3ef;
}

body.light-theme .about-values-section,
body.light-theme .about-cta-section,
body.light-theme .contact-cta-section,
body.light-theme .video-section {
  background: #ece7df;
}

body.light-theme .overlay {
  background: linear-gradient(to right, rgba(245,243,239,0.84) 0%, rgba(245,243,239,0.55) 48%, rgba(245,243,239,0.18) 100%);
}

body.light-theme .btn-secondary {
  border-color: rgba(17,17,17,0.18);
  color: #111111;
  background: rgba(17,17,17,0.03);
}

body.light-theme .service-card,
body.light-theme .listing-card,
body.light-theme .property-location,
body.light-theme .about-btn,
body.light-theme .stat-box,
body.light-theme .value-card,
body.light-theme .about-cta-box,
body.light-theme .contact-cta-box,
body.light-theme .service-row,
body.light-theme .service-point,
body.light-theme .project-row,
body.light-theme .portfolio-card,
body.light-theme .property-plans-box,
body.light-theme .property-map-box,
body.light-theme .plan-card {
  background: rgba(255,255,255,0.60);
  border-color: rgba(17,17,17,0.10);
  color: #111111;
}

body.light-theme .feature-item,
body.light-theme .listing-date,
body.light-theme .listing-link,
body.light-theme .service-card p {
  color: rgba(17,17,17,0.80);
}

body.light-theme .about-bg-text {
  color: rgba(17,17,17,0.06);
}

body.light-theme .site-footer {
  background: #ece7df;
  color: rgba(17,17,17,0.72);
  border-top-color: rgba(17,17,17,0.08);
}

body.light-theme .footer-bg-vertical {
  color: rgba(17,17,17,0.06);
}

body.light-theme .footer-top h2,
body.light-theme .footer-info-group a,
body.light-theme .footer-info-group p,
body.light-theme .footer-brand p {
  color: rgba(17,17,17,0.82);
}

body.light-theme .footer-top p {
  color: rgba(17,17,17,0.72);
}

body.light-theme .slider-btn {
  border-color: rgba(17,17,17,0.18);
  background: rgba(17,17,17,0.05);
  color: #111111;
}

body.light-theme .dot {
  background: rgba(17,17,17,0.28);
}

body.light-theme .dot.active {
  background: #b68d63;
}

body.light-theme .theme-toggle {
  background: #ffffff;
  color: #111111;
  border-color: rgba(17,17,17,0.85);
}

body.light-theme .contact-toggle {
  background: #111;
  color: #fff;
}

body.light-theme .contact-float .contact-item.phone {
  background: #000;
}

body.light-theme .video-overlay {
  background: rgba(255,255,255,0.15);
}

body.light-theme .video-play-button {
  background: rgba(255,255,255,0.8);
  border-color: rgba(17,17,17,0.8);
}

body.light-theme .play-icon {
  border-left-color: #111111;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .hero-content,
  .about-wrapper,
  .about-intro-grid,
  .about-story-grid,
  .contact-grid,
  .service-row,
  .project-row,
  .service-detail-grid,
  .service-points-grid,
  .about-values-grid,
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: end;
    padding-bottom: 110px;
  }

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

  .slider-controls {
    right: 24px;
  }

  .footer-inner {
    padding-left: 90px;
  }

  .footer-bottom-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-logo-box {
    justify-content: flex-start;
  }

  .footer-brand p {
    text-align: left;
  }

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

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

  .service-row.reverse .service-row-image,
  .service-row.reverse .service-row-content,
  .project-row.reverse .project-row-image,
  .project-row.reverse .project-row-content {
    order: initial;
  }

  .about-image-card img,
  .about-story-image img {
    height: 420px;
  }

  .service-row-image img,
  .project-row-image img,
  .service-detail-image img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 0;
  }

  .logo {
    width: 82px;
  }

  .nav {
    position: absolute;
    top: 84px;
    right: 4%;
    width: min(280px, 92vw);
    background: rgba(17,17,17,0.92);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-slider {
    min-height: 920px;
    height: auto;
  }

  .hero-content {
    min-height: 920px;
    padding-top: 170px;
    padding-bottom: 110px;
  }

  .hero-subtitle {
    margin-top: 10px;
    letter-spacing: 2px;
    font-size: 0.82rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3.3rem);
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .hero-right {
    grid-template-columns: 1fr;
  }

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

  .slider-controls {
    top: auto;
    bottom: 92px;
    right: 20px;
    transform: none;
    flex-direction: row;
  }

  .slider-dots {
    bottom: 34px;
  }

  .theme-toggle {
    right: 14px;
    width: 58px;
    height: 58px;
  }

  .theme-icon {
    width: 28px;
    height: 28px;
  }

  .contact-float {
    left: 16px;
    bottom: 24px;
  }

  .contact-menu {
    bottom: 78px;
  }

  .page-hero {
    padding: 145px 0 70px;
  }

  .about-section,
  .about-intro-section,
  .about-values-section,
  .about-story-section,
  .about-cta-section,
  .contact-info-section,
  .contact-cta-section,
  .services-section,
  .service-detail-section,
  .projects-section,
  .portfolio-list-page,
  .property-extra-section {
    padding: 70px 0;
  }

  .about-stats-section,
  .service-points-section {
    padding: 0 0 72px;
  }

  .about-bg-track {
    top: 8px;
  }

  .about-bg-text {
    padding-left: 18px;
    font-size: clamp(2.8rem, 13vw, 5.4rem);
    color: rgba(255,255,255,0.09);
  }

  .about-wrapper {
    margin-top: 45px;
  }

  .about-image img {
    height: 390px;
  }

  .about-features,
  .property-plan-grid.two-plans,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .about-btn,
  .about-cta-actions .btn,
  .contact-cta-actions .btn,
  .map-direction-btn {
    width: 100%;
  }

  .about-cta-actions,
  .contact-cta-actions {
    flex-direction: column;
  }

  .listing-card {
    min-height: 360px;
    padding: 26px 22px;
  }

  .listing-card h3 {
    font-size: 1.6rem;
  }

  .video-cover {
    height: 260px;
  }

  .video-play-button {
    width: 72px;
    height: 72px;
  }

  .play-icon {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid #ffffff;
  }

  .footer-bg-vertical {
    left: 18px;
    font-size: clamp(1.7rem, 7vw, 2.8rem);
    letter-spacing: 3px;
  }

  .footer-inner {
    width: min(92%, 1200px);
    padding-left: 60px;
  }

  .footer-top {
    margin-bottom: 24px;
  }

  .footer-logo-box {
    width: 220px;
  }

  .contact-left h2 {
    font-size: 48px;
  }

  .contact-left .contact-item a,
  .contact-left .contact-item p {
    font-size: 18px;
  }

  .contact-map {
    height: 400px;
  }

  .portfolio-card-image {
    height: 260px;
  }

  .property-detail {
    padding: 130px 0 80px;
  }

  .property-hero img {
    height: 320px;
  }

  .property-meta {
    flex-direction: column;
    gap: 10px;
  }

  .property-plans-box,
  .property-map-box {
    padding: 22px;
  }

  .plan-card img {
    height: 380px;
  }

  .property-map {
    height: 340px;
  }

  body.light-theme .nav {
    background: rgba(255,255,255,0.92);
    border-color: rgba(17,17,17,0.10);
  }
}

@media (max-width: 480px) {
  .logo {
    width: 72px;
  }

  .hero-content {
    padding-top: 185px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .about-content h2 {
    line-height: 1.08;
  }

  .about-content p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .about-image img {
    height: 320px;
  }
}
