/* =========================================================
   VIP ANKARA — Premium Transfer Service — Design System
   ========================================================= */

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

:root{
  --bg:            #0c0c0b;
  --bg-alt:        #131311;
  --surface:       #1b1a17;
  --surface-2:     #242220;
  --line:          rgba(226,212,186,0.12);
  --line-strong:   rgba(226,212,186,0.24);
  --text:          #f4efe4;
  --text-muted:    #b6ac9a;
  --text-faint:    #756e60;
  --gold:          #b5a477;
  --gold-bright:   #f0cf2b;
  --cream:         #e2d4ba;
  --ink:           #211f1c;
  --gold-soft:     rgba(181,164,119,0.14);
  --radius-sm:     6px;
  --radius:        16px;
  --radius-lg:     30px;
  --pill:          999px;
  --ease:          cubic-bezier(.22,1,.36,1);
  --container:     1240px;
  --font-display:  'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:     'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.7;
  font-weight:300;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--font-display); font-weight:500; line-height:1.12; margin:0; color:var(--text); }
h1 em, h2 em, h3 em{ font-style:italic; color:var(--gold); }
p{ margin:0; }

.container{ max-width:var(--container); margin:0 auto; padding:0 32px; }
@media (max-width:640px){ .container{ padding:0 20px; } }

.section{ padding:120px 0; position:relative; }
@media (max-width:900px){ .section{ padding:76px 0; } }
.section-tight{ padding:64px 0; }
.center{ text-align:center; }

/* -------- grain overlay -------- */
.grain{
  position:fixed; inset:0; z-index:2; pointer-events:none; opacity:.045; mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* -------- kicker -------- */
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12px; letter-spacing:.26em; text-transform:uppercase;
  color:var(--gold-bright); font-weight:600; margin-bottom:20px;
}
.kicker::before{ content:''; width:28px; height:1px; background:var(--gold-bright); }
.eyebrow-center{ justify-content:center; }
.eyebrow-center::before{ margin-right:0; }

/* -------- buttons -------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 34px; border-radius:var(--pill); border:1px solid transparent;
  font-size:13px; letter-spacing:.09em; text-transform:uppercase; font-weight:600;
  transition:transform .45s var(--ease), background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
  white-space:nowrap;
}
.btn-primary{ background:linear-gradient(135deg, var(--gold-bright), var(--gold)); color:var(--ink); box-shadow:0 10px 30px -10px rgba(240,207,43,.45); }
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 16px 38px -8px rgba(240,207,43,.55); }
.btn-outline{ border-color:var(--line-strong); color:var(--text); background:transparent; }
.btn-outline:hover{ border-color:var(--gold); color:var(--gold-bright); transform:translateY(-3px); }
.btn-ghost{ color:var(--text-muted); padding:16px 8px; }
.btn-ghost:hover{ color:var(--gold-bright); }
.btn-sm{ padding:12px 24px; font-size:11.5px; }
.btn-block{ width:100%; }
.btn-whatsapp{ background:#25D366; color:#0a2b13; box-shadow:0 10px 26px -10px rgba(37,211,102,.55); }
.btn-whatsapp:hover{ transform:translateY(-3px); }

/* =========================================================
   NAV
   ========================================================= */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:26px 0; transition:padding .4s var(--ease), background .4s var(--ease), border-color .4s ease;
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  padding:14px 0; background:rgba(12,12,11,0.85); backdrop-filter:blur(14px) saturate(140%);
  border-bottom-color:var(--line);
}
.nav::before{
  content:''; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background:linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 100%);
  opacity:1; transition:opacity .4s ease;
}
.nav.scrolled::before{ opacity:0; }
.nav .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; }

.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo{ height:48px; width:auto; display:block; flex-shrink:0; object-fit:contain; object-position:left center; }
.nav.scrolled .brand-logo{ height:38px; }

.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-links a{
  font-size:13px; letter-spacing:.06em; color:var(--text-muted); font-weight:500;
  transition:color .3s ease; position:relative; padding:4px 0;
}
.nav-links a::after{
  content:''; position:absolute; left:0; right:0; bottom:-2px; height:1px;
  background:var(--gold-bright); transform:scaleX(0); transform-origin:left; transition:transform .35s var(--ease);
}
.nav-links a:hover, .nav-links a.active{ color:var(--text); }
.nav-links a:hover::after, .nav-links a.active::after{ transform:scaleX(1); }

.nav-cta{ display:flex; align-items:center; gap:18px; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px; }
.nav-toggle span{ width:22px; height:1.5px; background:var(--text); transition:transform .3s ease, opacity .3s ease; }

.mobile-menu{
  position:fixed; inset:0; z-index:99; background:rgba(10,10,9,.98); backdrop-filter:blur(10px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:28px;
  opacity:0; visibility:hidden; transform:translateY(-12px); transition:opacity .4s var(--ease), transform .4s var(--ease), visibility 0s .4s;
}
.mobile-menu.open{ opacity:1; visibility:visible; transform:translateY(0); transition:opacity .4s var(--ease), transform .4s var(--ease); }
.mobile-menu a{ font-family:var(--font-display); font-size:26px; color:var(--text); }
.mobile-menu a:hover{ color:var(--gold-bright); }
.mm-foot{ display:flex; gap:22px; margin-top:20px; }
.mm-foot a{ font-size:13px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-muted); }

@media (max-width:900px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative; min-height:100svh; display:flex; align-items:center; justify-content:center;
  padding:160px 0 100px; overflow:hidden; text-align:center;
  background:
    radial-gradient(60% 55% at 50% 8%, rgba(181,164,119,.16) 0%, rgba(181,164,119,0) 70%),
    linear-gradient(180deg, #0c0c0b 0%, #0c0c0b 100%);
}
.hero-lines{
  position:absolute; inset:0; z-index:0; opacity:.5; pointer-events:none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(60% 60% at 50% 30%, #000 0%, transparent 75%);
}
.hero-content{ position:relative; z-index:1; max-width:820px; margin:0 auto; }
.hero-mark{ height:88px; width:auto; margin:0 auto 32px; opacity:.95; }
.hero-kicker{
  display:inline-flex; align-items:center; gap:12px; font-size:12.5px; letter-spacing:.32em;
  text-transform:uppercase; color:var(--gold-bright); margin-bottom:26px; font-weight:600;
}
.hero-kicker::before, .hero-kicker::after{ content:''; width:30px; height:1px; background:var(--gold-bright); }
.hero h1{ font-size:clamp(38px,6vw,72px); margin-bottom:26px; letter-spacing:-.01em; }
.hero p.lead{ font-size:clamp(16px,1.6vw,19px); color:var(--text-muted); max-width:620px; margin:0 auto 44px; font-weight:300; }
.hero-actions{ display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; }
.hero-scroll-hint{
  position:absolute; bottom:34px; left:50%; transform:translateX(-50%); z-index:1;
  display:flex; flex-direction:column; align-items:center; gap:10px; color:var(--text-faint);
  font-size:11px; letter-spacing:.2em; text-transform:uppercase;
}
.hero-scroll-hint .line{ width:1px; height:38px; background:linear-gradient(var(--gold), transparent); }

/* -------- page hero (inner pages) -------- */
.page-hero{
  position:relative; padding:180px 0 90px; text-align:center; overflow:hidden;
  background:radial-gradient(55% 60% at 50% 0%, rgba(181,164,119,.14) 0%, rgba(181,164,119,0) 72%);
  border-bottom:1px solid var(--line);
}
.page-hero .kicker{ justify-content:center; }
.page-hero .kicker::before{ display:none; }
.page-hero h1{ font-size:clamp(32px,5vw,54px); max-width:820px; margin:0 auto 18px; }
.page-hero p{ color:var(--text-muted); max-width:600px; margin:0 auto; font-size:16px; }
.breadcrumb{ font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-faint); margin-bottom:18px; }
.breadcrumb a{ color:var(--text-faint); }
.breadcrumb a:hover{ color:var(--gold-bright); }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee{ border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--bg-alt); overflow:hidden; padding:20px 0; }
.marquee-track{ display:flex; width:max-content; animation:scroll-x 32s linear infinite; }
.marquee-track span{ display:flex; align-items:center; padding-right:0; font-family:var(--font-display); font-style:italic; font-size:19px; color:var(--text-faint); white-space:nowrap; }
.marquee-track span i{ color:var(--gold); font-style:normal; margin:0 22px; }
@keyframes scroll-x{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* =========================================================
   CARDS / GRIDS
   ========================================================= */
.service-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media (max-width:900px){ .service-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .service-grid{ grid-template-columns:1fr; } }

.service-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:38px 30px; transition:transform .45s var(--ease), border-color .35s ease, background .35s ease;
}
.service-card:hover{ transform:translateY(-6px); border-color:var(--line-strong); background:var(--surface-2); }
.service-icon{
  width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--gold-soft); color:var(--gold-bright); margin-bottom:22px;
}
.service-icon svg{ width:24px; height:24px; }
.service-card h3{ font-size:22px; margin-bottom:12px; }
.service-card p{ color:var(--text-muted); font-size:14.5px; }

.icon-list{ display:grid; gap:14px; }
.icon-list li{ display:flex; align-items:flex-start; gap:14px; color:var(--text-muted); font-size:15px; }
.icon-list li svg{ flex-shrink:0; margin-top:3px; color:var(--gold-bright); width:18px; height:18px; }

/* -------- stats band -------- */
.stats-band{
  display:grid; grid-template-columns:repeat(4,1fr); gap:32px; text-align:center;
  padding:56px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
@media (max-width:800px){ .stats-band{ grid-template-columns:1fr 1fr; gap:36px 20px; } }
.stat-item b{ display:block; font-family:var(--font-display); font-size:clamp(26px,3vw,38px); color:var(--gold-bright); margin-bottom:8px; font-weight:500; }
.stat-item span{ font-size:12.5px; letter-spacing:.06em; color:var(--text-muted); text-transform:uppercase; }

/* -------- about split -------- */
.about-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
@media (max-width:900px){ .about-grid{ grid-template-columns:1fr; gap:40px; } }
.about-media{ position:relative; border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--line); background:var(--surface); aspect-ratio:4/5; display:flex; align-items:center; justify-content:center; }
.about-media img{ width:62%; opacity:.92; }
.about-media::before{ content:''; position:absolute; inset:0; background:radial-gradient(80% 70% at 50% 30%, rgba(181,164,119,.18), transparent 70%); }
.about-copy p{ color:var(--text-muted); margin-bottom:18px; font-size:15.5px; }
.about-copy p:last-of-type{ margin-bottom:0; }
.value-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:36px; }
@media (max-width:520px){ .value-grid{ grid-template-columns:1fr; } }
.value-item b{ display:block; color:var(--text); font-size:15px; margin-bottom:6px; font-family:var(--font-display); font-size:19px; }
.value-item span{ color:var(--text-muted); font-size:14px; }

/* -------- CTA band -------- */
.cta-band{
  border:1px solid var(--line-strong); border-radius:var(--radius-lg); padding:64px 50px; text-align:center;
  background:radial-gradient(70% 100% at 50% 0%, rgba(181,164,119,.14), transparent 70%), var(--surface);
  display:flex; flex-direction:column; align-items:center; gap:26px;
}
.cta-band h2{ font-size:clamp(26px,3.4vw,38px); max-width:640px; }
.cta-actions{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
@media (max-width:640px){ .cta-band{ padding:48px 26px; } }

/* =========================================================
   PLACES (Gezilecek Yerler)
   ========================================================= */
.place-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media (max-width:900px){ .place-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .place-grid{ grid-template-columns:1fr; } }

.place-card{
  position:relative; border:1px solid var(--line); border-radius:var(--radius); padding:34px 28px 30px;
  background:var(--surface); transition:transform .45s var(--ease), border-color .35s ease;
}
.place-card:hover{ transform:translateY(-6px); border-color:var(--gold); }
.place-num{ font-family:var(--font-display); font-style:italic; font-size:15px; color:var(--gold-bright); margin-bottom:16px; display:block; }
.place-card h3{ font-size:23px; margin-bottom:10px; }
.place-card p{ color:var(--text-muted); font-size:14.5px; margin-bottom:14px; }
.place-tag{ display:inline-flex; align-items:center; gap:6px; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-faint); border-top:1px solid var(--line); padding-top:14px; margin-top:auto; width:100%; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list{ max-width:840px; margin:0 auto; display:flex; flex-direction:column; gap:14px; }
.faq-item{ border:1px solid var(--line); border-radius:var(--radius); background:var(--surface); overflow:hidden; }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:26px 30px; background:none; border:none; color:var(--text); text-align:left;
  font-family:var(--font-display); font-size:19px;
}
.faq-q .plus{ flex-shrink:0; width:26px; height:26px; border-radius:50%; border:1px solid var(--line-strong); position:relative; transition:transform .4s var(--ease), border-color .3s ease; }
.faq-q .plus::before, .faq-q .plus::after{ content:''; position:absolute; background:var(--gold-bright); top:50%; left:50%; transform:translate(-50%,-50%); }
.faq-q .plus::before{ width:10px; height:1.4px; }
.faq-q .plus::after{ width:1.4px; height:10px; transition:opacity .3s ease; }
.faq-item.open .faq-q .plus{ transform:rotate(90deg); border-color:var(--gold); }
.faq-item.open .faq-q .plus::after{ opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .45s var(--ease); }
.faq-a-inner{ padding:0 30px 28px; color:var(--text-muted); font-size:15px; max-width:680px; }
.faq-item.open .faq-a{ max-height:400px; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:56px; align-items:flex-start; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; gap:44px; } }

.contact-card{ border:1px solid var(--line); border-radius:var(--radius); background:var(--surface); padding:38px; }
.contact-card h3{ font-size:22px; margin-bottom:24px; }
.contact-row{ display:flex; align-items:flex-start; gap:16px; padding:16px 0; border-top:1px solid var(--line); }
.contact-row:first-of-type{ border-top:none; padding-top:0; }
.contact-row svg{ flex-shrink:0; width:20px; height:20px; color:var(--gold-bright); margin-top:2px; }
.contact-row b{ display:block; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-faint); margin-bottom:4px; font-weight:600; }
.contact-row a, .contact-row span{ font-size:15.5px; color:var(--text); }
.contact-row a:hover{ color:var(--gold-bright); }
.contact-quick{ display:flex; gap:12px; margin-top:28px; flex-wrap:wrap; }

.map-wrap{ border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); margin-top:24px; filter:grayscale(.4) invert(.92) contrast(.9); }
.map-wrap iframe{ width:100%; height:230px; border:0; display:block; }

.form-card{ border:1px solid var(--line); border-radius:var(--radius); background:var(--surface); padding:42px; }
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
@media (max-width:560px){ .form-grid{ grid-template-columns:1fr; } }
.form-field{ display:flex; flex-direction:column; gap:8px; }
.form-field.full{ grid-column:1 / -1; }
.form-field label{ font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--text-faint); }
.form-field input, .form-field select, .form-field textarea{
  background:var(--bg-alt); border:1px solid var(--line-strong); border-radius:var(--radius-sm);
  padding:14px 16px; color:var(--text); font-family:inherit; font-size:14.5px; transition:border-color .3s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ outline:none; border-color:var(--gold); }
.form-field textarea{ resize:vertical; min-height:110px; }
.form-note{ font-size:12.5px; color:var(--text-faint); margin-top:6px; }
.form-actions{ margin-top:28px; display:flex; align-items:center; gap:18px; flex-wrap:wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ border-top:1px solid var(--line); padding:70px 0 30px; background:var(--bg-alt); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:50px; padding-bottom:46px; }
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; gap:36px; } }
.footer-brand .brand-logo{ height:42px; margin-bottom:18px; }
.footer-brand p{ color:var(--text-muted); font-size:14px; max-width:320px; }
.footer-social{ display:flex; gap:12px; margin-top:22px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center; color:var(--text-muted);
  transition:border-color .3s ease, color .3s ease;
}
.footer-social a:hover{ color:var(--gold-bright); border-color:var(--gold); }
.footer-col h5{ font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-bright); margin-bottom:20px; font-weight:600; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a, .footer-col span{ color:var(--text-muted); font-size:14.5px; }
.footer-col a:hover{ color:var(--text); }
.footer-bottom{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; padding-top:26px; border-top:1px solid var(--line); font-size:13px; color:var(--text-faint); }
.legal-links{ display:flex; gap:20px; }
.legal-links a:hover{ color:var(--text-muted); }

/* -------- floating whatsapp -------- */
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:90; width:58px; height:58px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 12px 30px -8px rgba(37,211,102,.6);
  transition:transform .35s var(--ease);
}
.wa-float:hover{ transform:scale(1.08); }
.wa-float svg{ width:28px; height:28px; }

/* -------- reveal on scroll -------- */
[data-reveal]{ opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible{ opacity:1; transform:translateY(0); }
[data-reveal-delay="1"]{ transition-delay:.12s; }
[data-reveal-delay="2"]{ transition-delay:.24s; }
[data-reveal-delay="3"]{ transition-delay:.36s; }

/* -------- misc -------- */
.divider-badge{ display:flex; align-items:center; justify-content:center; gap:16px; margin:0 auto 20px; }
.divider-badge .line{ width:40px; height:1px; background:var(--line-strong); }
.divider-badge svg{ width:16px; height:16px; color:var(--gold-bright); }
