/* ============================================
   Armağan Süs - Ana CSS
   Tema: Lüks Parti & Organizasyon
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --purple:       #7C3AED;
  --purple-light: #A78BFA;
  --purple-dark:  #4C1D95;
  --pink:         #EC4899;
  --pink-light:   #F9A8D4;
  --gold:         #D4A843;
  --gold-light:   #F5D78A;
  --gold-dark:    #A07830;
  --white:        #FFFFFF;
  --cream:        #FDF8F4;
  --gray-100:     #F3F0F7;
  --gray-200:     #E9E4F0;
  --gray-600:     #6B5B7B;
  --gray-800:     #2D1B4E;
  --text:         #1A0B2E;
  --shadow-sm:    0 2px 8px rgba(124,58,237,0.12);
  --shadow-md:    0 8px 32px rgba(124,58,237,0.18);
  --shadow-lg:    0 20px 60px rgba(124,58,237,0.22);
  --radius:       16px;
  --radius-sm:    8px;
  --radius-lg:    24px;
  --gradient:     linear-gradient(135deg, #7C3AED 0%, #EC4899 50%, #D4A843 100%);
  --gradient-soft:linear-gradient(135deg, #A78BFA20 0%, #F9A8D420 50%, #F5D78A20 100%);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 3px; }

/* ============================================
   HEADER & NAV
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0 1.5rem;
}

.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.nav-logo .logo-sub {
  font-size: 0.65rem;
  color: var(--gray-600);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--purple);
  background: var(--gray-100);
}

.header.scrolled .nav-links a { color: var(--gray-800); }
.header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
.header:not(.scrolled) .nav-links a:hover { background: rgba(255,255,255,0.15); color: white; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-nav-wa {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: white !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

.btn-nav-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
  background: #20bf5b !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: transparent;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.header.scrolled .hamburger span { background: var(--gray-800); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: white;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu a:hover {
  background: var(--gray-100);
  color: var(--purple);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2D1B4E 0%, #4C1D95 40%, #7C3AED 70%, #EC4899 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  animation: float1 8s ease-in-out infinite;
}

.hero-bg-pattern::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(236,72,153,0.25) 0%, transparent 70%);
  bottom: -50px; left: -50px;
  border-radius: 50%;
  animation: float2 10s ease-in-out infinite;
}

.confetti-piece {
  position: absolute;
  width: 8px; height: 8px;
  opacity: 0;
  animation: confettiFall linear infinite;
}

@keyframes float1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}
@keyframes float2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -20px) scale(0.95); }
}
@keyframes confettiFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,168,67,0.2);
  border: 1px solid rgba(212,168,67,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s 0.2s ease both;
}

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.hero-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.hero-card.featured {
  grid-column: 1 / -1;
  background: rgba(212,168,67,0.15);
  border-color: rgba(212,168,67,0.4);
}

.hero-card .card-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.hero-card .card-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: white;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.hero-card .card-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 30px rgba(124,58,237,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.5);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37,211,102,0.5);
  background: #20bf5b;
}

.btn-phone {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-phone:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-outline:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  box-shadow: 0 8px 25px rgba(212,168,67,0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212,168,67,0.5);
}

.btn-sm {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
  padding: 6rem 1.5rem;
}

.section-alt {
  background: var(--cream);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gradient-soft);
  border: 1px solid var(--gray-200);
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
}

.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.06);
}

.service-img-placeholder {
  font-size: 5rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2));
}

.service-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
}

.service-body {
  padding: 1.5rem;
}

.service-tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-features {
  margin-bottom: 1.25rem;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.service-features li::before {
  content: '✓';
  color: var(--purple);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.package-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
}

.package-card.featured {
  border-color: var(--purple);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.package-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
}

.package-card.featured:hover {
  transform: translateY(-6px) scale(1.03);
}

.package-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gradient);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.package-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 0.25rem;
  font-family: var(--font-display);
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-600);
}

.package-note {
  font-size: 0.78rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.package-items {
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 1.25rem;
}

.package-items li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.package-items li:last-child { border-bottom: none; }

.package-items li .check {
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-filter {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: white;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 15px rgba(124,58,237,0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-light);
}

.product-img {
  height: 200px;
  overflow: hidden;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-img-placeholder {
  font-size: 4rem;
  opacity: 0.6;
}

.product-body {
  padding: 1.1rem;
}

.product-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
  line-height: 1.3;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--purple);
  font-family: var(--font-display);
  flex-shrink: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  grid-auto-rows: 260px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--gradient);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:nth-child(3n+1) { grid-row: span 2; }
.gallery-item:nth-child(5n+2) { grid-column: span 2; }

.gallery-placeholder {
  font-size: 4rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,11,78,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-text {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--purple-light);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  line-height: 1;
}

.stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.author-info {
  font-size: 0.78rem;
  color: var(--gray-600);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--gradient-soft);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-value a {
  color: var(--purple);
  transition: var(--transition);
}
.contact-value a:hover { color: var(--purple-dark); }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  height: 380px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-placeholder {
  text-align: center;
  color: var(--gray-600);
}

.map-placeholder .map-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* ============================================
   WHATSAPP FLOATING
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.wa-float-btn {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

.wa-float-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: waPulse 2s ease-in-out infinite;
}

.wa-tooltip {
  background: white;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes waPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-800);
  color: rgba(255,255,255,0.8);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.footer-brand .tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--purple-light);
  padding-left: 4px;
}

.footer-wa {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-wa:hover {
  background: rgba(37,211,102,0.2);
  transform: translateY(-2px);
}

.footer-wa .wa-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.footer-wa .wa-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.footer-wa .wa-number {
  font-size: 1rem;
  font-weight: 700;
  color: #4ade80;
  display: block;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-desc { max-width: 100%; margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 4rem 1.25rem; }
  .gallery-item:nth-child(3n+1) { grid-row: span 1; }
  .gallery-item:nth-child(5n+2) { grid-column: span 1; }
  .gallery-grid { grid-auto-rows: 200px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .package-card.featured { transform: none; }
  .hero-cards { grid-template-columns: 1fr 1fr; }
  .wa-float { bottom: 1.25rem; right: 1.25rem; }
  .wa-float-btn { width: 54px; height: 54px; font-size: 1.5rem; }

  /* Ürün grid 768'de tek kolon → overflow olmasın */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* btn-sm taşma önle */
  .btn-sm { font-size: 0.8rem; padding: 0.5rem 0.9rem; white-space: nowrap; }
}

@media (max-width: 480px) {
  .hero-content { padding-top: 6rem; }
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats { gap: 1.25rem; }
  .section-title { font-size: 1.6rem; }
  .section { padding: 3rem 1rem; }

  /* Ürün grid: 2 kolon, daraltılmış */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  /* Ürün görseli daha kısa */
  .product-img { height: 130px; }
  .product-img-placeholder { font-size: 2.6rem; }

  /* Ürün body sıkıştır */
  .product-body { padding: 0.7rem; }
  .product-name { font-size: 0.85rem; }
  .product-desc { font-size: 0.74rem; margin-bottom: 0.5rem; -webkit-line-clamp: 2; }

  /* Fiyat + buton alt alta */
  .product-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }
  .product-price { font-size: 0.95rem; }
  .product-footer .btn { width: 100%; justify-content: center; font-size: 0.75rem; padding: 0.45rem 0.4rem; }

  /* Galeri 2 kolon, kısa */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }

  /* Hero kartlar küçült */
  .hero-card { padding: 0.85rem; }
  .hero-card .card-emoji { font-size: 1.8rem; }
  .hero-card .card-title { font-size: 0.82rem; }
  .hero-card .card-sub { font-size: 0.68rem; }

  /* Paket kartlar padding */
  .package-card { padding: 1.25rem; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.d-flex { display: flex; }
.gap-1 { gap: 1rem; }
.justify-center { justify-content: center; }