/* ===================== TEMEL ===================== */
:root {
  --navy: #0a2540;
  --navy-2: #122b4d;
  --gold: #be9a53;
  --gold-2: #b48f48;
  --text: #1a2236;
  --muted: #6b7385;
  --light: #f5f7fa;
  --line: #e6e9ef;
  --white: #ffffff;
  --red: #e63946;
  --green: #2ecc71;
  --shadow-sm: 0 2px 10px rgba(10,37,64,0.06);
  --shadow-md: 0 8px 28px rgba(10,37,64,0.10);
  --shadow-lg: 0 18px 48px rgba(10,37,64,0.18);
  --radius: 10px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: 0.25s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; }

@supports (content-visibility: auto) {
  .listings,
  .why,
  .home-videos,
  .areas,
  .footer,
  .detail-wrap {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }

  .listings { contain-intrinsic-size: auto 1200px; }
  .areas { contain-intrinsic-size: auto 1000px; }
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}

h2 { font-size: 38px; margin-bottom: 10px; }
h4 { font-size: 18px; }

.eyebrow {
  letter-spacing: 3px;
  font-size: 12px;
  color: #7c5618;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ===================== BUTONLAR ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: 0.25s;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0,0,0,0.20);
}
.btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 14px 32px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--gold); }

/* ===================== TOP BAR ===================== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar-left span, .topbar-left a { margin-right: 22px; }
.topbar-left i { color: var(--gold); margin-right: 6px; }
.topbar-left a:hover { color: var(--gold); }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-right a { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); }
.topbar-right a:hover { background: var(--gold); }
.lang { font-weight: 600; color: var(--gold); margin-left: 6px; }

/* ===================== HEADER ===================== */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 24px;
  box-shadow: var(--shadow-sm);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 1px;
  line-height: 1;
}
.logo-text small {
  display: block;
  font-size: 11px;
  letter-spacing: 4px;
  color: #7c5618;
  font-weight: 600;
  margin-top: 4px;
}
.logo-light .logo-text { color: #fff; }

.nav { display: flex; gap: 32px; }
.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { color: var(--navy); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(10,37,64,0.78), rgba(10,37,64,0.85)),
    url('background.webp') center/cover;
  color: #fff;
  padding: 90px 0 140px;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  letter-spacing: 4px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: 64px;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0;
  line-height: 1.08;
  max-width: 980px;
}
.hero-sub { font-size: 18px; opacity: 0.85; margin-bottom: 40px; max-width: 760px; }

.hero-stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.hero-stats div,
.hero-stats a {
  display: flex;
  flex-direction: column;
}
.hero-stats a:hover strong,
.hero-stats a:hover span {
  color: #fff;
}
.hero-stats strong {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
}
.hero-stats span { font-size: 13px; opacity: 0.8; margin-top: 6px; letter-spacing: 1px; }

/* ===================== KATEGORİLER ===================== */
.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: -70px;
  position: relative;
  z-index: 5;
  margin-bottom: 90px;
}
.cat-card {
  background: #fff;
  padding: 28px 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid var(--line);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.cat-card i {
  font-size: 32px;
  color: var(--gold-2);
  margin-bottom: 12px;
}
.cat-card h3 { font-size: 15px; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.cat-card span { font-size: 12px; color: var(--muted); }

/* ===================== LISTINGS ===================== */
.listings { padding: 0 24px 100px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 24px;
}
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  padding: 10px 20px;
  background: var(--light);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: 0.25s;
}
.chip:hover { background: var(--gold); color: #fff; }
.chip.active { background: var(--navy); color: #fff; }

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

/* CARD */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.35s;
  cursor: pointer;
  border: 1px solid var(--line);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: 0.6s;
}
.card:hover .card-img img { transform: scale(1.08); }
.card-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.badge {
  padding: 5px 12px;
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  border: 1px solid transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  text-shadow: 0 1px 2px rgba(0,0,0,0.20);
}
.badge.satilik { background: #12883f; }
.badge.kiralik { background: #3498db; }
.badge.firsat { background: #e3242f; }
.card-ref {
  position: absolute;
  top: 14px; right: 14px;
  min-width: 44px;
  height: 38px;
  padding: 0 10px;
  background: rgba(255,255,255,0.95);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(10,37,64,0.16);
  z-index: 3;
}
.card-photos {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(10,37,64,0.85);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  display: flex; gap: 6px; align-items: center;
  text-shadow: 0 1px 2px rgba(0,0,0,0.20);
}

.card-body { padding: 22px 22px 24px; }
.card-price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.card-price span { font-size: 14px; color: var(--muted); font-weight: 500; font-family: 'Inter', sans-serif; margin-left: 6px; }
.card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-loc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 6px;
}
.card-loc i { color: #7c5618; }

.card-features {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 13px;
}
.card-features div { display: flex; align-items: center; gap: 6px; }
.card-features i { color: #7c5618; }

.load-more { text-align: center; margin-top: 50px; }

/* ===================== AREAS ===================== */
.areas { padding: 90px 24px 100px; }
.areas .section-head {
  align-items: flex-start;
}
.areas .section-head > div {
  min-width: 0;
}
.areas-title-line {
  display: inline;
}
.section-intro {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}
.site-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: -8px 0 34px;
}
.site-overview div {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.site-overview i {
  color: #7c5618;
  font-size: 22px;
  margin-bottom: 12px;
}
.site-overview strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 4px;
}
.site-overview span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.area-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  min-height: 255px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.area-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.area-card h3 {
  font-size: 24px;
  letter-spacing: 0;
}
.area-card-top span {
  flex: 0 0 auto;
  background: var(--light);
  color: #7c5618;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}
.area-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.area-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  max-width: 100%;
}
.area-tags i { color: #7c5618; }

/* ===================== WHY ===================== */
.why { background: var(--light); padding: 90px 0; }
.why h2 { margin-bottom: 50px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 30px;
}
.why-card {
  background: #fff;
  padding: 36px 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  transition: 0.3s;
  border: 1px solid var(--line);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.icon-circle {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 14px; }

/* ===================== VIDEOS ===================== */
.home-videos {
  padding: 90px 24px 100px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.video-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--navy);
}
.video-frame-detail {
  overflow: hidden;
  border-radius: 12px;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.youtube-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.youtube-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,37,64,0.28);
  transition: 0.25s;
}
.youtube-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.25s;
}
.youtube-placeholder:hover img {
  transform: scale(1.04);
}
.youtube-placeholder:hover::after {
  background: rgba(10,37,64,0.18);
}
.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.20);
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  font-size: 24px;
}
.youtube-play i {
  margin-left: 4px;
}
.video-body {
  padding: 20px 22px 22px;
}
.video-body span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #7c5618;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.video-body h3 {
  font-size: 20px;
  margin-bottom: 16px;
}
.video-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}
.video-body a:hover {
  color: var(--gold-2);
}
.service-model {
  max-width: 1080px;
  margin: 58px auto 0;
}
.service-model h3 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 32px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: 0;
}
.service-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-model-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px 16px 30px;
}
.service-model-card i {
  color: #0f8bd5;
  font-size: 18px;
  margin-bottom: 18px;
}
.service-model-card h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 6px;
}
.service-model-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

/* ===================== DETAY GÖRÜNÜMÜ ===================== */
.detail-wrap { padding: 40px 24px 100px; }
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 24px;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--light);
  transition: 0.25s;
}
.detail-back:hover { background: var(--navy); color: #fff; }

.detail-header {
  display: block;
  margin-bottom: 28px;
}
.detail-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.detail-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.detail-title-block {
  max-width: 980px;
  min-width: 0;
}
.detail-header h1 {
  font-size: 36px;
  margin-bottom: 8px;
  color: var(--navy);
}
.detail-loc { color: var(--muted); font-size: 15px; }
.detail-loc i { color: var(--gold); margin-right: 6px; }
.detail-price-wrap {
  text-align: left;
  margin-top: 18px;
}
.detail-listing-no {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.detail-listing-no strong {
  color: var(--navy);
  font-size: 14px;
}
.detail-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  text-align: left;
}
.detail-price small { display: block; font-size: 13px; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 500; }

.gallery {
  display: block;
  position: relative;
  max-width: 100%;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10,37,64,0.78);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(10,37,64,0.24);
  transition: 0.25s;
  z-index: 4;
}
.gallery-nav:hover {
  background: var(--gold);
  transform: translateY(-50%) scale(1.05);
}
.gallery-nav-prev { left: 18px; }
.gallery-nav-next { right: 18px; }

.detail-body { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }

.detail-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 24px;
}
.detail-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.detail-section p { color: var(--text); line-height: 1.8; }

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
}
.specs div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.specs div span:first-child { color: var(--muted); font-weight: 500; }
.specs div span:last-child { color: var(--text); font-weight: 600; }

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.features-list div {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  padding: 10px 14px;
  background: var(--light);
  border-radius: 8px;
}
.features-list i { color: var(--green); }

/* Sidebar */
.contact-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  position: sticky;
  top: 100px;
}
.contact-card h4 { color: #fff; font-size: 18px; margin-bottom: 6px; }
.agent {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.agent-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.20);
  font-family: 'Playfair Display', serif;
}
.agent-info strong { display: block; font-size: 16px; margin-bottom: 2px; }
.agent-info span { font-size: 12px; opacity: 0.7; letter-spacing: 1px; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 14px 16px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: 0.25s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.contact-form textarea { resize: vertical; min-height: 90px; }
.contact-form button { padding: 14px; }

.contact-direct {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.contact-direct a {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.25s;
}
.contact-direct a:hover { background: var(--gold); }
.contact-direct i { margin-right: 6px; }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer h3 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  margin-bottom: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}
.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-about { margin: 20px 0; font-size: 14px; line-height: 1.8; }
.social { display: flex; gap: 10px; }
.social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: 0.25s;
}
.social a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; }
.contact-list i { color: var(--gold); margin-top: 4px; }
.contact-list a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  font-size: 13px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===================== WHATSAPP FAB ===================== */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px; height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: 0.3s;
  animation: pulse 2s infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .site-overview { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-model-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-body { grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; }
}

@media (max-width: 700px) {
  .topbar-left { display: none; }
  .nav { display: none; }
  .detail-wrap { max-width: 100%; overflow-x: hidden; }
  .detail-header > div { min-width: 0; }
  .detail-header h1 { overflow-wrap: break-word; }
  .grid { grid-template-columns: 1fr; }
  .categories { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: 1fr; }
  .areas-title-line { display: block; }
  .site-overview { grid-template-columns: 1fr; }
  .section-intro { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .service-model h3 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 60px 0 100px; }
  .hero h1 { font-size: 36px; }
  .hero-stats { gap: 30px; }
  .hero-stats strong { font-size: 32px; }
  .gallery img { height: 260px; }
  .gallery-nav {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .gallery-nav-prev { left: 10px; }
  .gallery-nav-next { right: 10px; }
  .specs, .features-list { grid-template-columns: 1fr; }
  h2 { font-size: 28px; }
  .detail-header h1 { font-size: 26px; }
  .detail-price { font-size: 32px; }
}
