:root {
  --cream: #f8f5f0;
  --cream-alt: #f0ebe3;
  --navy: #1a1a2e;
  --navy-light: #2a2a42;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dim: #a8892e;
  --bronze: #8b7355;
  --text: #1a1a2e;
  --text-dim: #7a7a8a;
  --text-light: #b0a8a0;
  --border: #e5ddd4;
  --card-bg: #ffffff;
  --nav-bg: rgba(248, 245, 240, 0.85);
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 12px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 26, 46, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0, 1);
}

[data-theme="dark"] {
  --cream: #1a1a2e;
  --cream-alt: #22223a;
  --navy: #f0ebe3;
  --navy-light: #e0d8cc;
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dim: #b89840;
  --bronze: #9a8a7a;
  --text: #f0ebe3;
  --text-dim: #9a9aaa;
  --text-light: #7a7a8a;
  --border: #2a2a42;
  --card-bg: #22223a;
  --nav-bg: rgba(26, 26, 46, 0.92);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--navy);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========== NAV ========== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-slogan {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(201, 168, 76, 0.3);
  line-height: 1.2;
  white-space: nowrap;
}

[data-theme="dark"] .nav-slogan {
  border-left-color: rgba(201, 168, 76, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.5px;
  transition: color 0.3s var(--ease);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s var(--ease);
}

.nav-toggle span:first-child { top: 0; }
.nav-toggle span:last-child { bottom: 0; }

.nav-open .nav-toggle span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Dil Toggle */
.nav-lang-toggle {
  background: var(--gold);
  border: none;
  color: var(--navy);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.5px;
}

.nav-lang-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

/* Dark Mod Toggle */
.nav-dark-toggle {
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.nav-dark-toggle:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Aktif sayfa vurgusu */
.nav-links a.active {
  color: var(--gold);
}

/* ========== PAGE HERO (alt sayfalar) ========== */

.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 3rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2a44 100%);
  color: #ffffff;
}

[data-theme="dark"] .page-hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2a44 100%);
  color: #ffffff;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.4;
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201, 168, 76, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(255,255,255,0.05) 0%, transparent 40%);
  z-index: 0;
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ========== HERO ========== */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 1.05;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.7s forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.3s; }
.hero-title span:nth-child(2) { animation-delay: 0.5s; }

.hero-accent {
  font-style: italic;
  color: var(--gold);
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--gold);
  color: var(--navy);
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-wide {
  padding: 1rem 4rem;
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  animation: fadeUp 0.6s 1.1s forwards;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  animation: fadeUp 0.6s 1.4s forwards;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

/* ========== MARQUEE ========== */

.marquee {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dim);
}

.marquee-track span {
  display: flex;
  gap: 3rem;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ========== SECTIONS ========== */

.section {
  padding: 8rem 0;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 600px;
}

.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.section-footer {
  margin-top: 3rem;
  text-align: center;
}

/* ========== PROPERTIES ========== */

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.property-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s var(--ease);
}

.property-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.property-card:nth-child(1) { transition-delay: 0s; }
.property-card:nth-child(2) { transition-delay: 0.1s; }
.property-card:nth-child(3) { transition-delay: 0.2s; }
.property-card:nth-child(4) { transition-delay: 0.3s; }
.property-card:nth-child(5) { transition-delay: 0.4s; }

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

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

.card-featured {
  border-color: var(--gold);
}

.property-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.property-img {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s var(--ease);
}

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(201, 168, 76, 0.9);
  color: var(--navy);
  padding: 0.35rem 0.9rem;
  border-radius: 4px;
}

.badge-green {
  background: rgba(201, 168, 76, 0.9);
  color: var(--navy);
}

.property-img-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0l20 20-20 20L0 20z' fill='%23c9a84c' fill-opacity='0.3'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.property-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.property-meta {
  display: flex;
  gap: 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.property-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.property-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.property-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.property-cta:hover {
  gap: 0.5rem;
}

/* ========== SERVICES ========== */

.services {
  background: var(--cream-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease);
}

.service-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ========== ABOUT ========== */

.about {
  background: var(--card-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2a2a42, #1a1a2e);
  border-radius: var(--radius);
}

.about-img-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 0l24 24-24 24L12 24z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px 100px;
}

.about-decor {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.5rem 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.about-decor-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
}

.about-decor-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  line-height: 1.3;
}

.about-content {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.6s var(--ease);
}

.about-content.revealed {
  opacity: 1;
  transform: translateX(0);
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-content > p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.about-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about-value-icon {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.4;
}

.about-value strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.about-value span:last-child {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ========== TEAM ========== */

.team {
  background: var(--cream-alt);
  padding: 5rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 560px;
  margin: 0 auto;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease);
}

.team-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.team-card:nth-child(1) { transition-delay: 0s; }
.team-card:nth-child(2) { transition-delay: 0.1s; }

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--gold);
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--border);
  transition: border-color 0.3s var(--ease);
}

.team-card:hover .team-avatar {
  border-color: var(--gold);
}

.team-avatar-initials {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.team-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ========== TESTIMONIALS ========== */

.testimonials {
  background: var(--card-bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonial-card:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card:nth-child(3) { transition-delay: 0.2s; }

.testimonial-card:hover {
  border-color: var(--gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-card figcaption {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-card figcaption strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
  font-family: var(--font-body);
}

.testimonial-card figcaption span {
  font-size: 0.75rem;
  color: var(--bronze);
  font-weight: 500;
}

/* ========== CONTACT ========== */

.contact {
  background: var(--navy);
  color: white;
}

.contact .section-title {
  color: white;
}

.contact .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info > p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.contact-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}

.contact-item span:last-child {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease);
}

.contact-form.revealed {
  opacity: 1;
  transform: translateY(0);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  color: white;
  outline: none;
  transition: all 0.3s var(--ease);
  margin-bottom: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.contact-form select option {
  background: var(--navy);
  color: white;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn-primary {
  margin-top: 0.5rem;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.06);
}

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

.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s var(--ease);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links strong {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.25rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

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

.footer-links span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ========== DARK MODE OVERRIDES ========== */

[data-theme="dark"] .nav {
  background: var(--nav-bg);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .nav-cta {
  background: var(--gold);
  color: #1a1a2e !important;
}

[data-theme="dark"] .marquee {
  background: #1a1a2e;
}

[data-theme="dark"] .hero-img {
  object-fit: cover;
  object-position: center;
}

[data-theme="dark"] .contact {
  background: #1a1a2e;
}

[data-theme="dark"] .contact-form {
  background: rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .service-card:hover,
[data-theme="dark"] .team-card:hover {
  background: var(--cream);
}

[data-theme="dark"] .about-img-bg {
  background: linear-gradient(135deg, #2a2a42, #1a1a2e);
}

[data-theme="dark"] .footer {
  background: #1a1a2e;
}

[data-theme="dark"] .nav-links {
  background: var(--nav-bg);
}

[data-theme="dark"] .hero-stat-label {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .hero-text {
  color: rgba(255, 255, 255, 0.7);
}

/* ========== HOMEPAGE COMPACT ========== */

.home .section {
  padding: 4rem 0;
}

.home .section-header {
  margin-bottom: 2.5rem;
}

.home .property-img-wrap {
  aspect-ratio: 16 / 9;
}

.home .property-body {
  padding: 1rem 1.25rem 1.25rem;
}

.home .property-title {
  font-size: 1.15rem;
}

.home .property-desc {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.home .property-price {
  font-size: 1.1rem;
}

.home .service-card {
  padding: 1.5rem 1.25rem;
}

.home .service-card h3 {
  font-size: 1rem;
}

.home .service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}

.home .about-grid {
  gap: 3rem;
}

.home .about-content > p {
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

.home .about-values {
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
}

.home .team {
  padding: 3rem 0;
}

.home .section-footer {
  margin-top: 2rem;
}

.home .section-footer .btn-wide {
  padding: 1.2rem 4rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* ========== ANIMATIONS ========== */

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1024px) {
  .property-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
    margin: 0 auto;
  }

  .about-grid {
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-visual {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }

  .about-img {
    aspect-ratio: auto;
    min-height: 320px;
  }

  .team-avatar {
    width: 56px;
    height: 56px;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(248, 245, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
  }

  .nav-open .nav-links {
    transform: translateY(0);
  }

  .nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .hero-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .section {
    padding: 5rem 0;
  }

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

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
    margin: 0 auto;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .nav-slogan {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-content {
    padding: 0 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
  }

  .about-img {
    min-height: 240px;
  }

  .about-decor {
    right: 0;
    bottom: -1.5rem;
    padding: 1rem 1.5rem;
  }

  .about-decor-num {
    font-size: 2rem;
  }

  .team-avatar {
    width: 48px;
    height: 48px;
  }
}
