/* ========== RESET & ROOT ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0A0A0F;
  --bg2: #111118;
  --bg3: #16161F;
  --surface: #1C1C26;
  --border: rgba(255,255,255,0.07);
  --accent: #FF6B35;
  --accent2: #FFB703;
  --text: #F0EEE8;
  --text-muted: #8A8897;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.1; }
h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
em { font-style: normal; color: var(--accent); }
p { line-height: 1.7; color: var(--text-muted); }

/* ========== NAVBAR ========== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

#navbar.scrolled {
  padding: 0.9rem 5%;
  background: rgba(10,10,15,0.97);
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.6rem;
  color: var(--text); text-decoration: none; letter-spacing: -0.5px;
}
.logo span { color: var(--accent); }

.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent) !important; color: var(--white) !important;
  padding: 0.55rem 1.4rem; border-radius: 50px;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 5px;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--text); display: block;
  transition: all 0.3s;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-block; background: var(--accent); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,53,0.5); }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block; color: var(--text-muted); padding: 0.85rem 2rem;
  border-radius: 50px; text-decoration: none; font-weight: 500;
  border: 1px solid var(--border); transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ========== SECTION COMMON ========== */
section { padding: 7rem 5%; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header.light h2 { color: var(--text); }
.section-tag {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem;
  display: block;
}
.section-sub { margin-top: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ========== HERO ========== */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 5%; padding-top: 5rem;
  position: relative; overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.15; animation: float 8s ease-in-out infinite;
}
.b1 { width: 600px; height: 600px; background: var(--accent); top: -200px; right: -100px; animation-delay: 0s; }
.b2 { width: 400px; height: 400px; background: #7B2D8B; bottom: 100px; right: 200px; animation-delay: 3s; }
.b3 { width: 300px; height: 300px; background: var(--accent2); top: 200px; right: 400px; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-content {
  position: relative; z-index: 1; max-width: 700px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,107,53,0.12); border: 1px solid rgba(255,107,53,0.3);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; color: var(--accent);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease 0.1s both;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-content > p {
  font-size: 1.1rem; max-width: 480px; margin-bottom: 2.5rem;
  animation: fadeUp 0.9s ease 0.3s both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.4s both;
}

.hero-stats {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 2.5rem;
  margin-top: 5rem;
  animation: fadeUp 0.9s ease 0.5s both;
}

.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--text); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: -4px; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 5%; z-index: 1;
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px;
}
.scroll-line {
  width: 60px; height: 1px; background: linear-gradient(to right, var(--text-muted), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ========== BRANDS ========== */
#markalar { background: var(--bg2); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.2rem;
}

.brand-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
  display: flex; align-items: center; gap: 1.2rem;
  cursor: pointer; transition: all 0.3s ease;
  position: relative; overflow: hidden;
}

.brand-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--card-color, var(--accent));
  opacity: 0; transition: opacity 0.3s;
}

.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-color, var(--accent));
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.brand-card:hover::before { opacity: 0.06; }

.brand-icon { font-size: 2.2rem; position: relative; z-index: 1; flex-shrink: 0; }
.brand-info { flex: 1; position: relative; z-index: 1; }
.brand-info h3 { color: var(--text); margin-bottom: 0.4rem; font-size: 1.1rem; }
.brand-info p { font-size: 0.85rem; line-height: 1.5; }
.brand-tags { display: flex; gap: 0.4rem; margin-top: 0.8rem; }
.brand-tags span {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.5px;
  background: rgba(255,255,255,0.06); padding: 0.25rem 0.6rem;
  border-radius: 50px; color: var(--text-muted);
}
.brand-arrow {
  position: relative; z-index: 1;
  font-size: 1.2rem; color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
}
.brand-card:hover .brand-arrow { transform: translateX(4px); color: var(--text); }

/* ========== BRANCHES ========== */
#subeler { background: var(--bg3); }

.branches-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}

.map-placeholder {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); aspect-ratio: 4/3;
  position: relative; overflow: hidden;
  background-image:
    radial-gradient(circle at 42% 35%, rgba(255,107,53,0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 55%, rgba(123,45,139,0.08) 0%, transparent 50%);
  display: flex; align-items: center; justify-content: center;
}

.map-pulse {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,107,53,0.3); animation: mapPulse 3s ease-in-out infinite;
}
.p1 { width: 200px; height: 200px; top: calc(35% - 100px); left: calc(42% - 100px); animation-delay: 0s; }
.p2 { width: 160px; height: 160px; top: calc(55% - 80px); left: calc(60% - 80px); animation-delay: 1s; }
.p3 { width: 180px; height: 180px; top: calc(25% - 90px); left: calc(70% - 90px); animation-delay: 2s; }

@keyframes mapPulse { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 0.7; transform: scale(1.05); } }

.map-dot {
  position: absolute; font-size: 0.7rem; font-weight: 600; color: var(--accent);
  display: flex; align-items: center; gap: 0.4rem;
}
.map-dot::before {
  content: ''; width: 10px; height: 10px; background: var(--accent);
  border-radius: 50%; box-shadow: 0 0 10px var(--accent); flex-shrink: 0;
}

.branches-list { display: flex; flex-direction: column; gap: 1rem; }

.branch-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.3rem 1.5rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
  cursor: pointer; transition: all 0.3s;
}
.branch-item:hover, .branch-item.active {
  border-color: var(--accent); background: rgba(255,107,53,0.05);
}
.branch-num {
  font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800;
  color: var(--border); transition: color 0.3s; flex-shrink: 0; line-height: 1;
}
.branch-item.active .branch-num, .branch-item:hover .branch-num { color: var(--accent); }
.branch-details { flex: 1; }
.branch-details h4 { color: var(--text); font-size: 1rem; margin-bottom: 0.3rem; }
.branch-details p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.branch-hours { font-size: 0.78rem; color: var(--text-muted); }
.branch-brands {
  display: inline-block; margin-top: 0.4rem; font-size: 0.72rem; font-weight: 600;
  background: rgba(255,107,53,0.12); color: var(--accent);
  padding: 0.2rem 0.6rem; border-radius: 50px;
}

/* ========== ABOUT ========== */
#hakkimizda { background: var(--bg); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-visual { display: flex; flex-direction: column; gap: 2rem; }

.about-img-wrap {
  position: relative; aspect-ratio: 1; max-width: 420px;
}

.about-img-inner {
  width: 100%; height: 100%;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.about-badge-float {
  position: absolute; top: -15px; right: -15px; z-index: 2;
  background: var(--accent); border-radius: var(--radius-sm); padding: 0.8rem 1.2rem;
  display: flex; flex-direction: column;
}
.about-badge-float span { font-size: 0.7rem; color: rgba(255,255,255,0.7); }
.about-badge-float strong { font-family: 'Syne', sans-serif; font-size: 0.9rem; color: var(--white); }

.kitchen-visual { position: relative; width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.kv-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,107,53,0.2);
  animation: spin 15s linear infinite;
}
.r1 { width: 180px; height: 180px; }
.r2 { width: 130px; height: 130px; animation-direction: reverse; animation-duration: 10s; }
.r3 { width: 80px; height: 80px; border-color: rgba(255,107,53,0.4); }
.kv-icon { font-size: 3rem; z-index: 1; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.about-numbers { display: flex; gap: 1.5rem; }
.about-num-item {
  flex: 1; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.2rem; text-align: center;
}
.about-num-item strong { font-family: 'Syne', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--accent); display: block; }
.about-num-item span { font-size: 0.78rem; color: var(--text-muted); }

.about-text .section-tag { text-align: left; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text > p { margin-bottom: 1rem; }

.about-features { display: flex; flex-direction: column; gap: 1.2rem; margin: 2rem 0; }
.feat { display: flex; gap: 1rem; align-items: flex-start; }
.feat-icon { font-size: 1.5rem; flex-shrink: 0; }
.feat strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 0.2rem; }
.feat p { font-size: 0.85rem; margin: 0; }

/* ========== CONTACT ========== */
#iletisim { background: var(--bg2); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.ci-item { display: flex; gap: 1rem; }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.ci-item strong { display: block; color: var(--text); margin-bottom: 0.2rem; font-weight: 600; }
.ci-item p { font-size: 0.9rem; }

.social-links { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.social-btn {
  font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
  border: 1px solid var(--border); padding: 0.4rem 1rem;
  border-radius: 50px; text-decoration: none; transition: all 0.2s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.85rem 1rem;
  color: var(--text); font-family: inherit; font-size: 0.9rem;
  transition: border-color 0.2s; outline: none; resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--surface); }

.form-success {
  display: none; background: rgba(6,214,160,0.1); border: 1px solid rgba(6,214,160,0.3);
  color: #06D6A0; padding: 1rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500;
}
.form-success.show { display: block; }

/* ========== FOOTER ========== */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
}
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand .logo { font-size: 1.8rem; }
.footer-brand p { margin-top: 1rem; font-size: 0.88rem; max-width: 260px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.fl-col { display: flex; flex-direction: column; gap: 0.7rem; }
.fl-col strong { font-family: 'Syne', sans-serif; font-size: 0.85rem; color: var(--text); letter-spacing: 0.5px; }
.fl-col a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.fl-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 420px; margin: 0 auto; }
  .branches-container { grid-template-columns: 1fr; }
  .map-placeholder { max-height: 300px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: 60px; background: var(--bg); padding: 2rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.6rem; }
  .brands-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 5rem 4%; }
  #navbar { padding: 1rem 4%; }
  .about-numbers { flex-direction: column; }
}
