/* ===========================
   FONTS
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===========================
   TOKENS
=========================== */
:root {
  --navy:        #0d1f35;
  --navy-mid:    #16324f;
  --navy-light:  #1e4468;
  --gold:        #b8963a;
  --gold-light:  #d4af5a;
  --gold-pale:   #f5ead8;
  --bg:          #f5f3ef;
  --surface:     #ffffff;
  --border:      #e6e0d6;
  --text:        #1a1a2e;
  --text-muted:  #6b7280;
  --shadow-sm:   0 2px 8px rgba(13,31,53,0.06);
  --shadow-md:   0 8px 32px rgba(13,31,53,0.10);
  --shadow-lg:   0 20px 60px rgba(13,31,53,0.14);
  --radius:      14px;
  --radius-sm:   8px;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   HEADER
=========================== */
.header {
  background: rgba(13, 31, 53, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(184,150,58,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  font-size: 30px;
  filter: drop-shadow(0 0 8px rgba(184,150,58,0.4));
}

.logo-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.logo-sub {
  font-size: 11px;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 1px;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(184,150,58,0.35);
}
.btn-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,150,58,0.45);
}

/* ===========================
   HERO
=========================== */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 90px 0 100px;
  text-align: center;
}

/* İnce çizgi doku */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
  pointer-events: none;
}

/* Altın halo */
.hero::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(184,150,58,0.12) 0%, transparent 65%);
  pointer-events: none;
}

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


.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.hero-title span {
  color: var(--gold-light);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(184,150,58,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(184,150,58,0.5);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}
.btn-whatsapp:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

/* ===========================
   BİLGİ KARTLARI
=========================== */
.info-section {
  padding: 72px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,150,58,0.3);
}

.info-card:hover::before { opacity: 1; }

.info-card-icon {
  font-size: 38px;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(0.2);
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

.info-card .closed {
  font-size: 12px;
  color: #e05252;
  margin-top: 8px;
  font-weight: 500;
}

.link {
  display: inline-block;
  margin-top: 14px;
  color: var(--navy-mid);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ===========================
   HİZMETLER
=========================== */
.services-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,150,58,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  margin-bottom: 48px;
  font-weight: 300;
  letter-spacing: 0.3px;
}

.section-gold-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.service-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.25s;
  cursor: default;
}

.service-item:hover {
  background: rgba(184,150,58,0.12);
  border-color: rgba(184,150,58,0.3);
  color: #fff;
  transform: translateX(4px);
}

.service-icon {
  font-size: 20px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* ===========================
   HARİTA
=========================== */
.map-section {
  padding: 80px 0;
  background: var(--bg);
}

.map-section .section-title { color: var(--navy); }
.map-section .section-gold-line { margin-bottom: 16px; }
.map-section .section-subtitle { color: var(--text-muted); }

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-top: 40px;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,150,58,0.2);
  padding: 36px 0;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}

.footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(184,150,58,0.4);
  margin: 14px auto;
}

/* ===========================
   MOBİL
=========================== */
@media (max-width: 640px) {
  .hero { padding: 64px 0 72px; }
  .hero-title { font-size: 26px; }
  .hero-sub { font-size: 14px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-whatsapp { width: 100%; justify-content: center; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .info-section { padding: 48px 0; }
  .services-section, .map-section { padding: 56px 0; }
}

@media (max-width: 400px) {
  .info-grid, .services-grid { grid-template-columns: 1fr; }
  .logo-title { font-size: 16px; }
}
