/* ==============================
   ASYA ARSA EMLAK — Global Styles
   ============================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --bg:        #0d0b08;
  --bg2:       #141109;
  --card:      #1a1610;
  --gold:      #c8a96e;
  --gold-dim:  #9c7d48;
  --gold-pale: #e8d5aa;
  --text:      #e8dfd0;
  --text-dim:  #9a8f7e;
  --border:    rgba(200,169,110,0.18);
  --radius:    4px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ─────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 999; opacity: 0.4;
}

/* ── TYPOGRAPHY ────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

.serif { font-family: 'Cormorant Garamond', serif; }
.gold  { color: var(--gold); }

/* ── NAVIGATION ────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  background: rgba(13,11,8,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

/* ── NAVIGATION MOBILE FIX ───────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(13, 11, 8, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  z-index: 102;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-logo-text {
  color: var(--text);
  font-weight: 600;
  line-height: 1.1;
}

.nav-logo-text small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition);
}

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

.nav-cta-wrap {
  display: flex;
  align-items: center;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  z-index: 103;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: block;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-cta-wrap {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 360px);
    height: 100vh;
    background: rgba(13, 11, 8, 0.98);
    backdrop-filter: blur(16px);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.8rem;
    transition: right 0.35s ease;
    z-index: 101;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    font-size: 1.1rem;
    padding: 0.6rem 0;
  }
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  height: 46px; width: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nav-logo-text small {
  display: block;
  font-size: 0.62rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}
.nav-cta::after { display: none !important; }

/* ── HAMBURGER ─────────────────────── */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 80px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform var(--transition);
    padding: 1rem 0;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 1rem 5vw; font-size: 0.85rem; }
  .nav-cta-wrap { display: none; }
}

/* ── DIVIDER ───────────────────────── */
.divider {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.divider-line {
  width: 40px; height: 1px; background: var(--gold);
}
.divider span {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

/* ── BUTTONS ───────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover { background: var(--gold-pale); }
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--bg); }

/* ── SECTION WRAPPER ───────────────── */
section { padding: 100px 5vw; }
.container { max-width: 1200px; margin: 0 auto; }

/* ── SECTION HEADER ────────────────── */
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header.center .divider { justify-content: center; }
.section-header p {
  margin-top: 1.2rem;
  max-width: 560px;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.8;
}
.section-header.center p { margin: 1.2rem auto 0; }

/* ── FOOTER ────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 70px 5vw 30px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo-text { font-size: 1.5rem; }
.footer-brand p {
  margin-top: 1.2rem;
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--text-dim);
  font-size: 0.88rem;
}
.footer-contact-item a { color: var(--text-dim); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-icon {
  width: 16px; min-width: 16px;
  opacity: 0.6; margin-top: 3px;
}
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--text-dim); font-size: 0.78rem; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── REVEAL ANIMATION ──────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }

/* ── FORM STYLES ───────────────────── */
.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200,169,110,0.06);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem;
  border: 1px solid var(--gold);
  background: rgba(200,169,110,0.05);
}
.form-success .check {
  font-size: 2.5rem; margin-bottom: 1rem;
}
.form-success p { color: var(--text-dim); margin-top: 0.5rem; }
