/* ==========================================================================
   1. DEĞİŞKENLER VE SAHAF TEMASI RENK PALETİ
   ========================================================================== */
:root {
  --bg-cream: #FDFBF7;         /* Parşömen / Açık Krem */
  --bg-card: #F4EFE6;          /* Antik Kağıt Tonu */
  --text-dark: #2C221E;        /* Koyu Deri / Espresso */
  --text-muted: #65534C;       /* Yumuşak Kahve */
  --accent-burgundy: #7A2021;  /* Klasik Cilt Bordo */
  --accent-gold: #C59B27;      /* Antik Yaldız Altın */
  --whatsapp-green: #25D366;
  --whatsapp-hover: #20bd5a;
  --border-color: #E2D9CC;
  --shadow-sm: 0 2px 8px rgba(44, 34, 30, 0.06);
  --shadow-md: 0 8px 24px rgba(44, 34, 30, 0.12);
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ==========================================================================
   2. HEADER & NAVBAR STİLLERİ
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-burgundy);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--accent-gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent-burgundy);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Masaüstü Menü */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

.nav-link i {
  color: var(--accent-burgundy);
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-link .dropdown-arrow {
  font-size: 0.7rem;
  margin-left: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-burgundy);
}

.nav-link:hover i,
.nav-link.active i {
  color: var(--accent-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Masaüstü Dropdown */
.dropdown-wrapper {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 210px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.dropdown-wrapper:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 6px;
  transition: var(--transition);
}

.dropdown-item i {
  color: var(--accent-burgundy);
  width: 16px;
}

.dropdown-item:hover {
  background-color: var(--bg-card);
  color: var(--accent-burgundy);
  padding-left: 1.1rem;
}

/* WhatsApp CTA Butonu */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--whatsapp-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn i {
  font-size: 1.1rem;
}

.whatsapp-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

/* Hamburger Butonu */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--accent-burgundy);
  cursor: pointer;
  padding: 0.25rem;
}

/* ==========================================================================
   3. MOBİL RESPONSIVE & DRAWER MENÜ
   ========================================================================== */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(44, 34, 30, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -300px;
  width: 290px;
  height: 100vh;
  background-color: var(--bg-cream);
  z-index: 1100;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.mobile-drawer.active {
  left: 0;
}

.drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-card);
}

.drawer-logo-icon {
  width: 36px;
  height: 36px;
  font-size: 1rem;
}

.drawer-logo-title {
  font-size: 1.05rem;
}

.drawer-logo-subtitle {
  font-size: 0.65rem;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--accent-burgundy);
  cursor: pointer;
}

.drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-item {
  border-bottom: 1px dashed var(--border-color);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  font-weight: 600;
  color: var(--text-dark);
}

.mobile-nav-link .link-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-nav-link i {
  color: var(--accent-burgundy);
  width: 20px;
}

/* Mobil Accordion Dropdown */
.mobile-dropdown-btn {
  cursor: pointer;
}

.mobile-dropdown-btn .chevron {
  transition: transform 0.3s ease;
  font-size: 0.8rem;
}

.mobile-dropdown-btn.open .chevron {
  transform: rotate(180deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--bg-card);
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.mobile-submenu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.drawer-footer .whatsapp-btn {
  width: 100%;
  justify-content: center;
}
/* ==========================================================================
   HERO / KARŞILAMA SECTION STİLLERİ
   ========================================================================== */
.hero-section {
  padding: 4rem 1.5rem;
  background: radial-gradient(circle at 10% 20%, rgba(197, 155, 39, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(122, 32, 33, 0.05) 0%, transparent 40%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

/* Sol İçerik */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--accent-burgundy);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero-title .highlight {
  color: var(--accent-burgundy);
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(197, 155, 39, 0.25);
  z-index: -1;
  border-radius: 4px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-description strong {
  color: var(--text-dark);
}

/* CTA Buton Grubu */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.primary-btn {
  background-color: var(--whatsapp-green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.primary-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.secondary-btn {
  background-color: var(--accent-burgundy);
  color: #fff;
  box-shadow: 0 4px 14px rgba(122, 32, 33, 0.25);
}

.secondary-btn:hover {
  background-color: #63191a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(122, 32, 33, 0.35);
}

/* Güven Özellikleri */
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border-color);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-item i {
  font-size: 1.4rem;
  color: var(--accent-gold);
}

.feature-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.feature-item small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sağ Taraf Görsel */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.visual-card {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.visual-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-card);
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Yüzen Rozetler */
.floating-badge {
  position: absolute;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-burgundy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: floatAnim 4s ease-in-out infinite;
}

.top-badge {
  top: -15px;
  left: -20px;
}

.bottom-badge {
  bottom: -15px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive / Mobil Uyum */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .floating-badge {
    position: static;
    margin-bottom: 0.5rem;
  }

  .visual-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-img {
    height: 350px;
  }
}

/* ==========================================================================
   HİZMETLERİMİZ SECTION STİLLERİ
   ========================================================================== */
.services-section {
  padding: 5rem 1.5rem;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-color);
}

.services-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--accent-burgundy);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Service Card Base */
.service-card {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

/* Card Image & Tag */
.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.08);
}

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(44, 34, 30, 0.85);
  backdrop-filter: blur(4px);
  color: var(--bg-cream);
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(226, 217, 204, 0.3);
}

.gold-tag {
  background-color: var(--accent-burgundy);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Card Body */
.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.card-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.card-list {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card-list li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-list li i {
  color: var(--accent-gold);
  font-size: 0.75rem;
}

/* WhatsApp Button inside Card */
.card-wa-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--whatsapp-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: var(--transition);
  text-align: center;
}

.card-wa-btn i {
  font-size: 1.05rem;
}

.card-wa-btn:hover {
  background-color: var(--whatsapp-hover);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.gold-btn {
  background-color: var(--accent-burgundy);
  color: var(--accent-gold);
}

.gold-btn:hover {
  background-color: #5d1819;
  box-shadow: 0 4px 12px rgba(122, 32, 33, 0.3);
}

/* Öne Çıkarılmış Toptan Alım Kartı */
.highlight-card {
  background-color: var(--bg-card);
  border: 2px solid var(--accent-gold);
}

/* Responsive Düzenlemeler */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}
/* ==========================================================================
   HAKKIMIZDA & LOKASYON SECTION STİLLERİ
   ========================================================================== */
.about-section {
  padding: 5rem 1.5rem;
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* About Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.about-paragraph {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-paragraph strong {
  color: var(--text-dark);
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--border-color);
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-burgundy);
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Right Visual */
.about-visual-box {
  position: relative;
}

.about-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  border: 4px solid var(--bg-cream);
  box-shadow: var(--shadow-md);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.about-experience-badge i {
  font-size: 1.8rem;
  color: var(--accent-gold);
}

.about-experience-badge strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.about-experience-badge small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Process Section (Süreç) */
.process-wrapper {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.process-main-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.process-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-icon {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: var(--bg-card);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-burgundy);
  margin-bottom: 1.25rem;
}

.step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--accent-burgundy);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* SEO Region Cloud */
.seo-regions-box {
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
}

.regions-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.regions-header i {
  color: var(--accent-burgundy);
  font-size: 1.3rem;
}

.regions-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-dark);
}

.seo-regions-box > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.region-tag {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.region-tag i {
  color: var(--accent-burgundy);
  font-size: 0.75rem;
}

.region-tag:hover {
  background-color: var(--accent-burgundy);
  color: #fff;
  border-color: var(--accent-burgundy);
}

.region-tag:hover i {
  color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-experience-badge {
    position: static;
    margin-top: 1rem;
  }
}
/* ==========================================================================
   İLETİŞİM SECTION STİLLERİ
   ========================================================================== */
.contact-section {
  padding: 5rem 1.5rem;
  background-color: var(--bg-cream);
  border-bottom: 1px solid var(--border-color);
}

.contact-container {
  max-width: 1280px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem auto;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.contact-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Sol Kartlar */
.contact-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-card:not(.static):hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.contact-card.highlight {
  border-color: #25d366;
  background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact-icon.whatsapp {
  background-color: #25d366;
  color: #fff;
}

.contact-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}

.contact-icon.location {
  background-color: var(--accent-burgundy);
  color: #fff;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info small {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-info strong {
  font-size: 1.25rem;
  color: var(--text-dark);
  font-family: var(--font-heading);
  margin: 0.15rem 0;
}

.card-action {
  font-size: 0.85rem;
  color: var(--accent-burgundy);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Sağ Hızlı Form */
.quick-form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.quick-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quick-form-card h3 i {
  color: var(--accent-burgundy);
}

.quick-form-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: var(--bg-cream);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-burgundy);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.btn-whatsapp-send {
  margin-top: 0.5rem;
  background-color: #25d366;
  color: #fff;
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: var(--transition);
}

.btn-whatsapp-send:hover {
  background-color: #1eb857;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
/* ==========================================================================
   FOOTER SECTION STİLLERİ
   ========================================================================== */
.site-footer {
  background-color: var(--text-dark);
  color: #d1c7bd;
  padding: 4rem 1.5rem 1.5rem 1.5rem;
  border-top: 3px solid var(--accent-gold);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* Brand Column */
.footer-logo-icon {
  background: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

.footer-logo-title {
  color: #fff;
}

.footer-logo-subtitle {
  color: var(--accent-gold);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 1.25rem 0;
  color: #a89c91;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
  background-color: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* Footer Links General */
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links,
.footer-regions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a {
  font-size: 0.88rem;
  color: #a89c91;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links li a i {
  font-size: 0.65rem;
  color: var(--accent-gold);
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-regions li {
  font-size: 0.85rem;
  color: #a89c91;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-regions li i {
  color: var(--accent-burgundy);
  font-size: 0.75rem;
}

/* Footer Bottom Bar & Agency Credit */
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #8c7f73;
}

.agency-credit {
  font-size: 0.8rem;
  color: #8c7f73;
}

.agency-credit a {
  color: var(--accent-gold);
  font-weight: 600;
  text-decoration: underline;
  transition: var(--transition);
}

.agency-credit a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Breakpoint */
@media (max-width: 992px) {
  .desktop-menu,
  .desktop-cta {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }
}