/* ============================================
   TOAŞ - Trüf Mantarı Landing Page
   Renk Paleti: Toprak Tonları
   Font: Lora + Raleway
============================================ */

:root {
  --primary: #2D5016;
  --primary-light: #3A6B1E;
  --secondary: #8B6914;
  --secondary-light: #A67D1A;
  --accent: #4A7C23;
  --bg-cream: #F5F0E8;
  --bg-white: #FAF7F2;
  --bg-dark: #1A1A1A;
  --text-dark: #1E1E1E;
  --text-body: #3D3D3D;
  --text-muted: #6B6B6B;
  --text-light: #F5F0E8;
  --card-bg: #FFFFFF;
  --card-border: #E8E0D4;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

/* ============================================
   NAV
============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
  transition: color var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  cursor: pointer;
}

.navbar.scrolled .nav-links a {
  color: var(--text-body);
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-instagram {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-instagram svg {
  width: 18px;
  height: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1448375240586-882707db888b?w=1920&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.55) 0%,
    rgba(45, 80, 22, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: #D4A843;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  animation: float 2.5s ease-in-out infinite;
}

.hero-scroll svg {
  width: 24px;
  height: 24px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ============================================
   SECTION BASE
============================================ */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-white);
}

.section-dark {
  background: var(--bg-dark);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-dark .section-label {
  color: var(--secondary-light);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.section-dark .section-header p {
  color: rgba(245, 240, 232, 0.7);
}

/* ============================================
   FADE-IN ANIMATION
============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   TRUF NEDIR (WHAT IS TRUFFLE)
============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(45, 80, 22, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.about-text h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(74, 124, 35, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 24px;
}

.about-highlight p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
}

/* ============================================
   TURKIYE AVANTAJI (ADVANTAGE CARDS)
============================================ */
.advantage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.advantage-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.advantage-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon svg {
  width: 64px;
  height: 64px;
  color: var(--accent);
}

.advantage-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   PIYASA DEGERI (MARKET VALUE)
============================================ */
.market-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.stat-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(212, 168, 67, 0.3);
}

.stat-number {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #D4A843;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.7);
}

.market-note {
  text-align: center;
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.6);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

/* ============================================
   EKIM & BAKIM (TIMELINE)
============================================ */
.timeline {
  display: flex;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--card-border);
}

.timeline-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.timeline-number {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  background: var(--card-bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}

.timeline-step:hover .timeline-number {
  background: var(--accent);
}

.timeline-number svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  transition: color var(--transition);
}

.timeline-step:hover .timeline-number svg {
  color: #fff;
}

.timeline-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.timeline-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   NEDEN TOAS
============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-text h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.why-text p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.8;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.why-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-icon svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.why-feature h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   BİLGİ REHBERİ (INFO CARDS)
============================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.info-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.info-number {
  position: absolute;
  top: 36px;
  right: 36px;
  font-family: 'Lora', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(74, 124, 35, 0.1);
  line-height: 1;
}

.info-body {
  width: 100%;
}

.info-body h3 {
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 20px;
  padding-right: 60px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 16px;
}

.info-body h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.info-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}

.info-body p:last-child {
  margin-bottom: 0;
}

.info-body ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-body ul li {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.info-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 28px 24px;
  }
}

/* ============================================
   BASARI HIKAYELERI (TESTIMONIALS)
============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-quote {
  flex: 1;
}

.testimonial-quote svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-quote p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(74, 124, 35, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.testimonial-info h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================
   FEATURED STORY
============================================ */
.featured-story {
  margin-top: 40px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 36px 40px;
}

.featured-story-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.featured-story-header svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  min-width: 28px;
}

.featured-story-header h3 {
  font-size: 1.25rem;
  color: var(--primary);
}

.featured-story-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.featured-story-meta span {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

.featured-story-quote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.9;
  font-style: italic;
  margin: 0;
  padding: 20px 24px;
  background: rgba(74, 124, 35, 0.04);
  border-radius: var(--radius-sm);
}

@media (max-width: 640px) {
  .featured-story {
    padding: 24px;
  }

  .featured-story-quote {
    padding: 16px;
  }
}

/* ============================================
   KAZANC HESAPLAMA
============================================ */
#kazanc .section-header {
  max-width: none;
}

.calc-desc {
  margin: 0 auto;
}

.calc-desc p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.calc-desc p:last-child {
  margin-bottom: 0;
}

.calc-table {
  margin: 40px auto 0;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 36px 40px;
}

.calc-table h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--primary);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--card-border);
}

.calc-row:last-child {
  border-bottom: none;
}

.calc-row-label {
  font-size: 0.95rem;
  color: var(--text-body);
}

.calc-row-value {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-align: right;
}

.calc-row-note {
  justify-content: center;
  padding-top: 20px;
}

.calc-row-note span {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 640px) {
  .calc-table {
    padding: 24px;
  }

  .calc-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .calc-row-value {
    text-align: left;
  }
}

.calc-testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.calc-testimonial {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px;
}

.calc-testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
}

.calc-testimonial-header h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.calc-testimonial-header span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.calc-testimonial p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 12px;
}

.calc-testimonial p:last-child {
  margin-bottom: 0;
}

.calc-model {
  margin-top: 48px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.calc-model .section-label {
  display: block;
  margin-bottom: 12px;
}

.calc-model h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--primary);
}

.calc-model > p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}

.calc-model-disclaimer {
  margin-top: 28px;
  padding: 24px;
  background: rgba(139, 105, 20, 0.05);
  border-radius: var(--radius-sm);
}

.calc-model-disclaimer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.calc-model-disclaimer p:last-child {
  margin-bottom: 0;
}

.calc-model-disclaimer ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 8px;
  display: flex;
  gap: 16px;
}

.calc-model-disclaimer ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.calc-model-disclaimer ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--secondary);
}

@media (max-width: 900px) {
  .calc-testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .calc-testimonial {
    padding: 24px;
  }

  .calc-model {
    padding: 24px;
  }

  .calc-model-disclaimer ul {
    flex-direction: column;
    gap: 4px;
  }
}

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

.calc-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.calc-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.calc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--card-border);
}

.calc-item:last-child {
  border-bottom: none;
}

.calc-item-label {
  font-size: 0.95rem;
  color: var(--text-body);
}

.calc-item-value {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.calc-disclaimer {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(139, 105, 20, 0.06);
  border-left: 3px solid var(--secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.calc-disclaimer p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   FIYAT LISTESI (PRICING)
============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
  content: 'En Populer';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-amount-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pricing-amount {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pricing-name {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-count {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Lora', serif;
  margin-bottom: 4px;
}

.pricing-count small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Lora', serif;
  margin: 12px 0;
}

.pricing-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-shipping {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 8px;
}

.pricing-shipping.paid {
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-old-price {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-discount {
  display: inline-block;
  background: #d32f2f;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  margin-top: 6px;
}

/* ============================================
   GÜVENLİ ALIŞVERİŞ (SECURITY)
============================================ */
.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.security-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}

.security-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.security-icon {
  width: 48px;
  height: 48px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.security-icon svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.security-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--primary);
}

.security-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 8px;
}

.security-card p:last-child {
  margin-bottom: 0;
}

.security-card ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.security-card ul li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}

.security-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 640px) {
  .security-grid {
    grid-template-columns: 1fr;
  }

  .security-card {
    padding: 24px;
  }
}

/* ============================================
   SSS (FAQ)
============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item.active {
  border-color: var(--accent);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: all var(--transition);
  gap: 16px;
}

.faq-question:hover {
  background: rgba(74, 124, 35, 0.03);
}

.faq-question h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(74, 124, 35, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  transition: color var(--transition);
}

.faq-item.active .faq-icon svg {
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
}

.faq-answer-inner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   MEDYADA BIZ
============================================ */
.media-content {
  max-width: 100%;
  margin: 0 auto;
}

.media-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.media-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.media-card p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
}

.media-reasons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.media-reason {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.media-reason-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-reason-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.media-reasons-title {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.media-cta {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(74, 124, 35, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.8;
}

.media-reason h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.media-reason p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   RİSK ŞEFFAFLIĞI
============================================ */
.section-risk {
  padding: 40px 0;
  background: var(--bg-white);
}

.risk-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 20px 32px;
}

.risk-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.risk-icon svg {
  width: 36px;
  height: 36px;
  color: var(--secondary);
}

.risk-content {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 6px;
}

.risk-block h3 {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-right: 8px;
}

.risk-block p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.risk-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 16px;
}

.risk-block ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: 12px;
  position: relative;
}

.risk-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--secondary);
}

@media (max-width: 640px) {
  .risk-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
  }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--bg-dark);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  max-width: 360px;
}

.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
  transition: color var(--transition);
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--secondary-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}

.footer-social a:hover {
  background: var(--accent);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: rgba(245, 240, 232, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
}

.footer-disclaimer {
  max-width: 500px;
  text-align: right;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid,
  .why-grid,
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

  .advantage-cards,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .market-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .timeline {
    flex-direction: column;
    gap: 32px;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 43px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-step {
    display: flex;
    gap: 20px;
    text-align: left;
    padding: 0;
  }

  .timeline-number {
    width: 64px;
    height: 64px;
    min-width: 64px;
    margin: 0;
  }

  .timeline-number svg {
    width: 24px;
    height: 24px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-disclaimer {
    text-align: center;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f5f0e8;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 105;
    padding: 80px 24px 40px;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    overscroll-behavior: contain;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.2rem;
    color: var(--text-dark) !important;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hamburger.active span {
    background: var(--text-dark);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .stat-card {
    padding: 28px 16px;
  }

  .testimonial-card {
    padding: 24px;
  }
}

/* ============================================
   INSTAGRAM REELS CAROUSEL
============================================ */
.reels-section {
  overflow: hidden;
}

.reels-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 560px;
  perspective: 1200px;
}

.reels-track {
  position: relative;
  width: 320px;
  height: 520px;
}


.reel-card {
  position: absolute;
  width: 320px;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-dark);
  box-shadow: var(--shadow-lg);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.08);
}

.reel-card iframe {
  position: absolute;
  top: -68px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 460px);
  border: none;
  pointer-events: none;
}

.reel-card.active {
  transform: translateX(0) scale(1);
  opacity: 1;
  z-index: 5;
  border-color: var(--accent);
}

.reel-card.active iframe {
  pointer-events: auto;
}

.reel-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  z-index: 3;
  pointer-events: none;
  border-radius: 0 0 18px 18px;
}

.reel-card.prev {
  transform: translateX(-280px) scale(0.82) rotateY(8deg);
  opacity: 0.5;
  z-index: 3;
  filter: brightness(0.6);
}

.reel-card.prev-far {
  transform: translateX(-500px) scale(0.68) rotateY(12deg);
  opacity: 0.25;
  z-index: 1;
  filter: brightness(0.4);
}

.reel-card.next {
  transform: translateX(280px) scale(0.82) rotateY(-8deg);
  opacity: 0.5;
  z-index: 3;
  filter: brightness(0.6);
}

.reel-card.next-far {
  transform: translateX(500px) scale(0.68) rotateY(-12deg);
  opacity: 0.25;
  z-index: 1;
  filter: brightness(0.4);
}

.reel-card.hidden {
  transform: translateX(0) scale(0.5);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.reel-ig-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  pointer-events: auto;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
}

.reel-ig-badge svg {
  width: 12px;
  height: 12px;
}

.reels-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.reels-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--card-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.reels-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
}

.reels-arrows {
  display: none;
}

.reel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
  backdrop-filter: blur(8px);
}

.reel-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.reel-arrow:hover svg {
  color: #fff;
}

.reel-arrow svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.reel-arrow-prev {
  left: calc(50% - 500px);
}

.reel-arrow-next {
  right: calc(50% - 500px);
}

@media (max-width: 900px) {
  .reel-card.prev-far,
  .reel-card.next-far {
    display: none;
  }

  .reel-card.prev {
    transform: translateX(-160px) scale(0.8) rotateY(8deg);
  }

  .reel-card.next {
    transform: translateX(160px) scale(0.8) rotateY(-8deg);
  }

  .reel-arrow-prev {
    left: 12px;
  }

  .reel-arrow-next {
    right: 12px;
  }
}

@media (max-width: 640px) {
  .reels-carousel {
    height: 440px;
  }

  .reels-track {
    width: 240px;
    height: 400px;
  }

  .reel-card {
    width: 240px;
    height: 400px;
  }

  .reel-card iframe {
    top: -58px;
    height: calc(100% + 400px);
  }

  .reel-card.prev {
    transform: translateX(-130px) scale(0.78);
    opacity: 0.35;
  }

  .reel-card.next {
    transform: translateX(130px) scale(0.78);
    opacity: 0.35;
  }

  .reel-card.prev-far,
  .reel-card.next-far {
    display: none;
  }

  .reel-arrow {
    width: 38px;
    height: 38px;
  }

  .reel-arrow-prev {
    left: 8px;
  }

  .reel-arrow-next {
    right: 8px;
  }
}

/* ============================================
   HEADER SİPARİŞ BUTONU
============================================ */
.nav-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.nav-order-btn:hover {
  background: var(--primary);
  transform: translateY(-1px);
}

.nav-order-btn svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SAYFA İÇİ CTA BUTON
============================================ */
.cta-siparis {
  display: flex;
  justify-content: center;
  padding: 12px 0 0;
}

.cta-siparis-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(74, 124, 35, 0.3);
}

.cta-siparis-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74, 124, 35, 0.4);
}

.cta-siparis-btn svg {
  width: 20px;
  height: 20px;
}

.hero .cta-siparis {
  padding: 24px 0 0;
}

.hero .cta-siparis-btn {
  padding: 18px 48px;
  font-size: 1.15rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero .cta-siparis-btn:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.4);
}

/* ============================================
   SİPARİŞ MODAL
============================================ */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}

.order-modal-overlay.active {
  display: flex;
}

.order-modal {
  position: relative;
  width: 100%;
  max-width: 680px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: modalSlideIn 0.35s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.order-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.order-modal-close:hover {
  background: rgba(0,0,0,0.1);
}

.order-modal-close svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

.order-section {
  margin-bottom: 28px;
}

.order-section:last-of-type {
  margin-bottom: 32px;
}

.order-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.order-section-title svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

/* PAKET KARTLARI */
.order-packages {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.order-package {
  cursor: pointer;
  position: relative;
}

.order-package input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.order-package-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 10px;
  border: 2px solid var(--card-border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  background: var(--bg-white);
  height: 100%;
  min-height: 160px;
}

.order-package input[type="radio"]:checked ~ .order-package-inner {
  border-color: var(--accent);
  background: rgba(74, 124, 35, 0.06);
  box-shadow: 0 0 0 1px var(--accent);
}

.order-package:hover .order-package-inner {
  border-color: var(--accent);
}

.order-package.featured .order-package-inner {
  border-color: var(--accent);
  position: relative;
}

.order-package.featured .order-package-inner::before {
  content: 'Popüler';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.order-package-count {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.order-package-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.order-package-price {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.order-package-shipping {
  font-size: 0.7rem;
  font-weight: 500;
}

.order-package-shipping.free {
  color: var(--accent);
}

.order-package-shipping.paid {
  color: var(--text-muted);
}

/* FORM ALANLARI */
.order-field {
  margin-bottom: 16px;
}

.order-field:last-child {
  margin-bottom: 0;
}

.order-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.order-input,
.order-select,
.order-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  font-family: 'Raleway', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color var(--transition);
  outline: none;
}

.order-input:focus,
.order-select:focus,
.order-textarea:focus {
  border-color: var(--accent);
}

.order-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.order-select:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.order-textarea {
  resize: vertical;
  min-height: 80px;
}

.order-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* GÖNDER BUTONU */
.order-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.order-submit:hover {
  background: var(--primary-light);
}

.order-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.order-submit svg {
  width: 20px;
  height: 20px;
}

/* BAŞARI MESAJI */
.order-success {
  text-align: center;
  padding: 40px 20px;
}

.order-success svg {
  width: 64px;
  height: 64px;
  color: var(--accent);
  margin-bottom: 20px;
}

.order-success h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.order-success p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* MODAL RESPONSIVE */
@media (max-width: 768px) {
  .order-packages {
    grid-template-columns: repeat(2, 1fr);
  }

  .order-packages .order-package:last-child {
    grid-column: span 2;
  }

  .order-modal {
    padding: 28px 20px;
  }

  .order-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .order-modal-overlay {
    padding: 16px 12px;
  }

  .order-packages {
    grid-template-columns: 1fr;
  }

  .order-packages .order-package:last-child {
    grid-column: span 1;
  }

  .order-package-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 14px 16px;
  }
}

/* ============================================
   PREFERS REDUCED MOTION
============================================ */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
