/* ═══════════════════════════════════════════
   PREMO GAYRİMENKUL — Ana Stil Dosyası
═══════════════════════════════════════════ */

:root {
  --navy: #1B2B4B;
  --navy-dark: #0F1B2E;
  --navy-mid: #243660;
  --navy-light: #2D4073;
  --gold: #C8973A;
  --gold-light: #E8B44A;
  --gold-dark: #A07828;
  --gold-pale: #F5ECD6;
  --white: #FFFFFF;
  --off-white: #F8F7F2;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,.15), 0 4px 6px -2px rgba(0,0,0,.07);
  --shadow-lg: 0 20px 40px -10px rgba(0,0,0,.2), 0 8px 15px -5px rgba(0,0,0,.1);
  --shadow-gold: 0 8px 30px rgba(200,151,58,.25);
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 35px rgba(200,151,58,.35); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); }
.btn-sm { padding: 8px 20px; font-size: .875rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ─── Section Headers ─── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-title { color: var(--navy); margin-bottom: .75rem; }
.section-subtitle { color: var(--gray-500); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 12px 0;
}
.navbar .container { display: flex; align-items: center; gap: 2rem; }
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-monogram {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.brand-text { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--white); line-height: 1.1; }
.brand-sub { display: block; font-family: var(--font-sans); font-size: .65rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.navbar.scrolled .brand-text { color: var(--navy); }
.navbar.scrolled .brand-sub { color: var(--gray-500); }
.nav-menu { display: flex; align-items: center; gap: 0; margin-left: auto; }
.nav-link {
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold-light); }
.navbar.scrolled .nav-link { color: var(--gray-700); }
.navbar.scrolled .nav-link:hover { color: var(--gold); background: var(--gold-pale); }
.nav-cta {
  margin-left: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: .875rem;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover { background: var(--gold-dark) !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .hamburger span { background: var(--navy); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-buildings {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,.3) 0%, transparent 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; padding: 120px 0 60px; width: 100%; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(200,151,58,.2);
  border: 1px solid rgba(200,151,58,.4);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 540px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 2px; }

/* Search Widget */
.search-widget {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.search-field { flex: 1; min-width: 150px; }
.search-field label { display: block; font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.7); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .06em; }
.search-field select, .search-field input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  color: var(--white);
  font-size: .9rem;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-sans);
}
.search-field select option { background: var(--navy); color: var(--white); }
.search-field select:focus, .search-field input:focus { border-color: var(--gold); background: rgba(255,255,255,.18); }
.search-field select::placeholder, .search-field input::placeholder { color: rgba(255,255,255,.5); }

/* ─── Section Padding ─── */
.section { padding: 80px 0; }
.section-lg { padding: 100px 0; }
.section-sm { padding: 56px 0; }
.section-gray { background: var(--gray-50); }
.section-navy { background: var(--navy); }
.section-dark { background: var(--navy-dark); }

/* ─── Listing Cards ─── */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.listing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.listing-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}
.listing-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.listing-card:hover .listing-img img { transform: scale(1.05); }
.listing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.badge-ofis { background: rgba(59,130,246,.9); color: var(--white); }
.badge-depo { background: rgba(16,185,129,.9); color: var(--white); }
.badge-fabrika { background: rgba(245,158,11,.9); color: var(--white); }
.badge-dukkan { background: rgba(139,92,246,.9); color: var(--white); }
.badge-arsa { background: rgba(239,68,68,.9); color: var(--white); }
.badge-vip {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.listing-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.listing-location { display: flex; align-items: center; gap: 4px; font-size: .8rem; color: var(--gray-500); margin-bottom: 8px; }
.listing-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.listing-desc { font-size: .875rem; color: var(--gray-500); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.listing-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.feature-tag {
  padding: 3px 10px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 500;
}
.listing-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}
.listing-price { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--gold); }
.listing-price span { font-family: var(--font-sans); font-size: .75rem; color: var(--gray-400); font-weight: 400; }
.listing-size { font-size: .8rem; color: var(--gray-500); font-weight: 500; }
.listing-cta { padding: 8px 18px; background: var(--navy); color: var(--white); border-radius: 50px; font-size: .8rem; font-weight: 600; transition: var(--transition); }
.listing-cta:hover { background: var(--gold); }

/* ─── Service Cards ─── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-pale); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold-pale), #fdf3de);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}
.service-icon i { width: 28px; height: 28px; }
.service-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-desc { font-size: .875rem; color: var(--gray-500); line-height: 1.6; }

/* ─── Stats ─── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.7); }

/* ─── Blog Cards ─── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-img { height: 180px; overflow: hidden; background: var(--gray-100); }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body { padding: 20px; }
.blog-cat {
  display: inline-block;
  padding: 3px 12px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.blog-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: .85rem; color: var(--gray-500); line-height: 1.5; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: .78rem; color: var(--gray-400); }
.read-more { color: var(--gold); font-weight: 600; transition: var(--transition); }
.read-more:hover { color: var(--gold-dark); }

/* ─── Testimonials ─── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold-pale);
  line-height: 1;
}
.testimonial-text { font-style: italic; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; padding-top: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--navy); font-size: .9rem; }
.author-title { font-size: .78rem; color: var(--gray-400); }
.stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-bottom: 4px; }

/* ─── Forms ─── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,151,58,.1); }
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── About Section ─── */
.about-visual {
  position: relative;
  height: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-visual-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-inner {
  text-align: center;
  color: var(--white);
  padding: 2rem;
}
.about-visual-icon { margin-bottom: 1.5rem; opacity: .6; }
.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-badge-num { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-text { font-size: .75rem; font-weight: 600; opacity: .9; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 1.5rem 0; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--gray-600); }
.about-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ─── Legal Teaser Cards ─── */
.legal-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.legal-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.legal-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.legal-card-icon { margin-bottom: 14px; color: var(--gold-light); }
.legal-card-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.legal-card-text { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ─── Footer ─── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); margin-bottom: 12px; }
.footer-brand-name span { color: var(--gold-light); }
.footer-about { font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-heading { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-light); margin-bottom: 16px; }
.footer-links-list { display: flex; flex-direction: column; gap: 10px; }
.footer-links-list a { font-size: .875rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links-list a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .875rem; color: rgba(255,255,255,.6); }
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ─── Page Hero ─── */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.gray-after::after { background: var(--gray-50); }
.page-hero.navy-after::after { background: var(--navy-dark); }
.page-hero h1 { color: var(--white); }
.page-hero .subtitle { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 560px; margin: 1rem auto 0; }

/* ─── Breadcrumb ─── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 1rem; justify-content: center; }
.breadcrumb a { color: rgba(255,255,255,.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ─── Filter Sidebar ─── */
.filter-wrap { display: flex; gap: 24px; align-items: flex-start; }
.filter-sidebar { width: 280px; flex-shrink: 0; background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); position: sticky; top: 90px; }
.filter-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.filter-group { margin-bottom: 20px; }
.filter-label { font-size: .78rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; display: block; }
.filter-select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .875rem;
  color: var(--gray-700);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition);
}
.filter-select:focus { border-color: var(--gold); }
.filter-range { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.filter-input { width: 100%; padding: 10px 12px; border: 1.5px solid var(--gray-200); border-radius: var(--radius); font-size: .875rem; color: var(--gray-700); outline: none; font-family: var(--font-sans); transition: var(--transition); }
.filter-input:focus { border-color: var(--gold); }
.filter-btn { width: 100%; margin-top: 8px; }
.listings-main { flex: 1; min-width: 0; }
.listings-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.listings-count { font-size: .875rem; color: var(--gray-500); }
.listings-count strong { color: var(--navy); }

/* ─── Tabs ─── */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 2rem;
}
.tab-btn {
  padding: 12px 24px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-500);
  border-radius: var(--radius) var(--radius) 0 0;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.tab-btn:hover { color: var(--navy); background: var(--gray-50); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); background: var(--gold-pale); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ─── Alert / Info Boxes ─── */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: .875rem;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.alert-warning { background: #FEF3C7; border-left: 4px solid var(--warning); color: #92400E; }
.alert-danger { background: #FEE2E2; border-left: 4px solid var(--danger); color: #991B1B; }
.alert-success { background: #D1FAE5; border-left: 4px solid var(--success); color: #065F46; }
.alert-info { background: #DBEAFE; border-left: 4px solid var(--info); color: #1E40AF; }

/* ─── VIP Features ─── */
.vip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.vip-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.vip-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
}
.vip-card.featured .vip-title, .vip-card.featured .vip-price, .vip-card.featured .vip-price-note { color: var(--white); }
.vip-card.featured .vip-desc, .vip-card.featured .vip-features li { color: rgba(255,255,255,.7); }
.vip-card.featured .vip-features li::before { color: var(--gold-light); }
.vip-card.featured .vip-badge { background: var(--gold); }
.vip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vip-badge-wrap { margin-bottom: 20px; }
.vip-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gold-pale);
  color: var(--gold-dark);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.vip-badge.popular { background: var(--gold); color: var(--white); }
.vip-title { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.vip-desc { font-size: .875rem; color: var(--gray-500); margin-bottom: 20px; line-height: 1.6; }
.vip-price { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.vip-price-note { font-size: .78rem; color: var(--gray-400); margin-bottom: 20px; }
.vip-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.vip-features li { display: flex; align-items: flex-start; gap: 8px; font-size: .875rem; color: var(--gray-600); }
.vip-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ─── Accordion / FAQ ─── */
.accordion { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  font-size: .95rem;
  text-align: left;
  gap: 12px;
  transition: var(--transition);
}
.accordion-header:hover { background: var(--gray-50); }
.accordion-header.active { background: var(--gold-pale); color: var(--gold-dark); }
.accordion-icon { flex-shrink: 0; transition: transform .3s; }
.accordion-header.active .accordion-icon { transform: rotate(180deg); }
.accordion-body { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; }
.accordion-body.open { padding: 16px 24px 20px; max-height: 600px; }
.accordion-body p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; }

/* ─── Steps ─── */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; position: relative; }
.steps-row::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: var(--gray-200); z-index: 0; }
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-gold);
}
.step-title { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: .95rem; }
.step-desc { font-size: .825rem; color: var(--gray-500); line-height: 1.6; }

/* ─── Loading ─── */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  color: var(--gray-400);
  flex-direction: column;
  gap: 16px;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Pagination ─── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.5rem); color: var(--white); margin-bottom: 1rem; }
.cta-subtitle { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 2rem; }

/* ─── Admin Panel ─── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: var(--navy-dark);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-logo { padding: 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-sidebar-logo .brand { font-family: var(--font-serif); color: var(--white); font-size: 1.1rem; }
.admin-sidebar-logo .brand span { color: var(--gold); }
.admin-sidebar-logo .brand-sub { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; }
.admin-nav { padding: 16px 0; flex: 1; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border-left: 3px solid transparent;
}
.admin-nav-item:hover { color: var(--white); background: rgba(255,255,255,.05); }
.admin-nav-item.active { color: var(--gold-light); background: rgba(200,151,58,.1); border-left-color: var(--gold); }
.admin-main { flex: 1; display: flex; flex-direction: column; background: var(--gray-50); overflow: hidden; }
.admin-topbar {
  background: var(--white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.admin-page-title { font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.admin-content { padding: 24px; overflow-y: auto; flex: 1; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.stat-cards-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
}
.admin-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-blue { background: #DBEAFE; color: var(--info); }
.icon-green { background: #D1FAE5; color: var(--success); }
.icon-yellow { background: #FEF3C7; color: var(--warning); }
.icon-purple { background: #EDE9FE; color: #7C3AED; }
.admin-stat-num { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; color: var(--navy); line-height: 1; }
.admin-stat-label { font-size: .78rem; color: var(--gray-500); margin-top: 2px; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { padding: 12px 16px; text-align: left; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.data-table td { padding: 14px 16px; font-size: .875rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.data-table tr:hover td { background: var(--gray-50); }
.status-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px; border-radius: 50px; font-size: .72rem; font-weight: 700; }
.status-active { background: #D1FAE5; color: #065F46; }
.status-inactive { background: #FEE2E2; color: #991B1B; }
.status-pending { background: #FEF3C7; color: #92400E; }
.status-confirmed { background: #DBEAFE; color: #1E40AF; }
.action-btns { display: flex; gap: 8px; }
.action-btn {
  padding: 5px 12px;
  border-radius: var(--radius);
  font-size: .75rem;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-edit { background: #DBEAFE; color: #1E40AF; }
.btn-edit:hover { background: #BFDBFE; }
.btn-delete { background: #FEE2E2; color: #991B1B; }
.btn-delete:hover { background: #FECACA; }
.table-wrap { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.table-header { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--gray-100); }
.table-title { font-weight: 700; color: var(--navy); font-size: .95rem; }

/* ─── Overlay / Modal ─── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.modal-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 28px 32px;
  text-align: center;
}
.modal-logo { font-family: var(--font-serif); font-size: 1.6rem; color: var(--white); }
.modal-logo span { color: var(--gold-light); }
.modal-subtitle { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 4px; }
.modal-body { padding: 32px; }

/* ─── Animations ─── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.anim-fadeInUp { animation: fadeInUp .6s ease both; }
.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .3s; }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal].delay-1 { transition-delay: .1s; }
[data-reveal].delay-2 { transition-delay: .2s; }
[data-reveal].delay-3 { transition-delay: .3s; }

/* ─── Utilities ─── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-500); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: .5rem; }
.mb-1 { margin-bottom: .5rem; }
.mt-2 { margin-top: 1rem; }
.mb-2 { margin-bottom: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.fw-bold { font-weight: 700; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 999;
    padding: 80px 24px 24px;
    gap: 4px;
  }
  .nav-menu.open .nav-link { font-size: 1.1rem; padding: 14px 16px; color: rgba(255,255,255,.9); }
  .nav-menu.open .nav-cta { margin: 16px 0 0; padding: 14px; text-align: center; justify-content: center; }
  .filter-wrap { flex-direction: column; }
  .filter-sidebar { width: 100%; position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero-stats { gap: 1.5rem; }
  .steps-row::before { display: none; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .search-widget { flex-direction: column; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .listings-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
