/* =============================================
   ANTALYA SPOTÇULAR — Ana Stil Dosyası
   Font: Nunito (Google Fonts)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  --primary:      #E85D04;
  --primary-dark: #C94D00;
  --primary-light:#FFF0E8;
  --secondary:    #1A1A2E;
  --accent:       #FFB703;
  --bg:           #FAFAF8;
  --white:        #FFFFFF;
  --card:         #FFFFFF;
  --text:         #1C1C1C;
  --text-mid:     #4A4A4A;
  --text-light:   #888;
  --border:       #EAEAEA;
  --shadow:       0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(232,93,4,0.18);
  --radius:       14px;
  --radius-sm:    8px;
  --transition:   0.22s ease;
}

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

html { scroll-behavior: smooth; }

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

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232,93,4,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,0.4);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1ebe58;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
}
.btn-secondary:hover {
  background: #2d2d4e;
  color: #fff;
  transform: translateY(-2px);
}

/* ─── HEADER / NAV ─── */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-top {
  background: var(--secondary);
  color: #fff;
  font-size: 0.83rem;
  padding: 7px 0;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.header-top a { color: #ddd; }
.header-top a:hover { color: var(--accent); }
.header-top .ht-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-top .ht-right { display: flex; gap: 20px; flex-wrap: wrap; }

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--text);
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}
.logo-text span { color: var(--primary); }
.logo-sub {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: -4px;
}

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  font-weight: 700;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  transition: all var(--transition);
}
nav a:hover, nav a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-phone {
  margin-left: 10px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 50px;
  padding: 9px 18px !important;
}
.nav-phone:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

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

/* ─── HERO ─── */
#hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #2A2A4A 60%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
}

#hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,93,4,0.2) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,183,3,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(232,93,4,0.2);
  border: 1px solid rgba(232,93,4,0.4);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}
#hero h1 span { color: var(--accent); }

.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 34px;
  max-width: 520px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.stat-item {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 22px;
  min-width: 100px;
}
.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── SECTION TITLES ─── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-title span { color: var(--primary); }
.section-desc {
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ─── CATEGORIES ─── */
#kategoriler { padding: 80px 0; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 18px;
}

.cat-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--text);
  display: block;
}
.cat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  color: var(--text);
}
.cat-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.cat-name {
  font-weight: 800;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}
.cat-count {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ─── HOW IT WORKS ─── */
#nasil-calisir {
  background: var(--secondary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#nasil-calisir::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 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.03'%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") repeat;
  pointer-events: none;
}

#nasil-calisir .section-title { color: #fff; }
#nasil-calisir .section-tag { background: rgba(232,93,4,0.2); color: var(--accent); }
#nasil-calisir .section-desc { color: rgba(255,255,255,0.6); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: all var(--transition);
}
.step-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(232,93,4,0.4);
  transform: translateY(-4px);
}

.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
}
.step-num::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px dashed rgba(232,93,4,0.4);
}

.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step-title { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.step-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ─── WHY US ─── */
#neden-biz { padding: 80px 0; background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 30px 24px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.why-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.why-text {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── DISTRICTS / HIZMET BÖLGELERI ─── */
#hizmet-bolgeleri { padding: 70px 0; background: var(--primary-light); }

.districts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.district-tag {
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: default;
}
.district-tag:hover {
  background: var(--primary);
  color: #fff;
}

/* ─── FAQ ─── */
#sss { padding: 80px 0; }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--primary); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--primary-light); }
.faq-item.open .faq-question { background: var(--primary-light); color: var(--primary); }

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--white);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ─── CONTACT / İLETİŞİM ─── */
#iletisim { padding: 80px 0; background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: border-color var(--transition);
}
.contact-info-item:hover { border-color: var(--primary); }
.contact-info-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.contact-info-value { font-weight: 800; font-size: 1rem; color: var(--text); }
.contact-info-value a { color: var(--text); }
.contact-info-value a:hover { color: var(--primary); }

.contact-cta-buttons { display: flex; flex-direction: column; gap: 12px; }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  height: 380px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ─── ABOUT ─── */
#hakkimizda { padding: 80px 0; background: var(--bg); }

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

.about-img-wrap {
  position: relative;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--primary-light), #fce4d0);
  border-radius: var(--radius);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border: 2px dashed rgba(232,93,4,0.2);
}
.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(232,93,4,0.35);
}
.about-badge-num { font-size: 1.8rem; display: block; line-height: 1; }
.about-badge-text { font-size: 0.72rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.05em; }

.about-text h2 { font-size: clamp(1.6rem, 3.5vw, 2rem); font-weight: 900; margin-bottom: 18px; line-height: 1.25; }
.about-text h2 span { color: var(--primary); }
.about-text p { color: var(--text-mid); margin-bottom: 18px; line-height: 1.8; font-size: 0.97rem; }

.about-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
}
.about-features li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ─── FLOATING WHATSAPP ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: all var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe58;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ─── FOOTER ─── */
#footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand .logo-text span { color: var(--accent); }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.6); max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.footer-col h4 {
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(232,93,4,0.5);
  display: inline-block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--accent); }

/* ─── DYNAMIC PAGES ─── */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #2a2a4a 100%);
  padding: 60px 0;
  margin-bottom: 0;
}
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 10px; }
.page-breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.page-breadcrumb a { color: var(--accent); }

.page-body { padding: 60px 0 80px; }
.page-content { max-width: 800px; }
.page-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--text); margin: 32px 0 14px; }
.page-content h3 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin: 24px 0 10px; }
.page-content p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; }
.page-content ul { margin: 12px 0 16px 22px; }
.page-content ul li { color: var(--text-mid); margin-bottom: 8px; line-height: 1.7; }
.page-content strong { color: var(--text); font-weight: 700; }

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
  }
  nav.open { display: flex; }
  nav a { padding: 12px 16px; border-radius: var(--radius-sm); width: 100%; }
  .nav-phone { border-radius: var(--radius-sm); text-align: center; }
  .header-main { position: relative; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
}

@media (max-width: 600px) {
  .header-top .ht-right { display: none; }
  .hero-stats { gap: 12px; }
  .stat-item { padding: 10px 14px; min-width: 80px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }
}
