/* ===========================
   TIMURAGAOGLU UN - Main CSS
   =========================== */

:root {
  --primary: #7a5c1e;
  --primary-dark: #5a4015;
  --primary-light: #c49a3c;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --cream: #faf6ee;
  --cream-dark: #f0e8d5;
  --text: #1e1e1e;
  --text-light: #555;
  --text-muted: #888;
  --white: #ffffff;
  --dark: #12100e;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ---- TOPBAR ---- */
.topbar {
  background: var(--primary-dark);
  color: #e8d5a3;
  font-size: 13px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar .container { gap: 16px; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }

.lang-switch {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3px;
}
.lang-switch a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(232,213,163,0.7);
  padding: 3px 10px;
  border-radius: 16px;
  line-height: 1.4;
}
.lang-switch a.active {
  background: var(--gold);
  color: #fff;
}
.lang-switch a:hover:not(.active) { color: var(--gold-light); }
.topbar a, .topbar span {
  color: #e8d5a3;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}
.topbar a:hover { color: var(--gold-light); }

/* ---- HEADER / NAV ---- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e8dcc8;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 4px;
  filter: brightness(0) invert(1); /* koyu logoyu koyu footer'da beyaz göster */
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 2px;
  font-weight: 600;
}

.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}

.main-nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: calc(100% - 32px);
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--primary);
}

.btn-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.btn-header:hover {
  background: linear-gradient(135deg, var(--gold), var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(122,92,30,0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122,92,30,0.35);
}

.btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: white;
  color: var(--primary);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #b8870e);
  color: white;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.4);
}

/* ---- SECTION STYLES ---- */
section { padding: 90px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ---- HERO ---- */
.hero {
  min-height: 85vh;
  background: linear-gradient(135deg, rgba(18,16,14,0.75) 0%, rgba(90,64,21,0.6) 100%),
              url('../images/banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.2);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 140px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--primary-dark);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ---- ABOUT SECTION ---- */
.about-section { background: var(--cream); }

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

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 1;
}

.about-badge span { font-size: 13px; opacity: 0.85; }

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content > p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.af-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.af-icon {
  width: 42px;
  height: 42px;
  background: var(--cream-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.af-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.af-item p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- PRODUCTS ---- */
.products-section { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #f0e8d5;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  height: 200px;
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.product-icon-wrap {
  width: 96px;
  height: 96px;
  background: var(--white);
  border: 1px solid #ece0c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(122,92,30,0.12), inset 0 0 0 6px var(--cream);
  transition: var(--transition);
}

.product-icon-wrap svg {
  width: 48px;
  height: 48px;
}

.product-card:hover .product-icon-wrap {
  color: var(--gold);
  transform: translateY(-3px) rotate(-3deg);
  box-shadow: 0 16px 36px rgba(122,92,30,0.2), inset 0 0 0 6px var(--cream);
}

.product-detail-icon {
  width: 130px;
  height: 130px;
  background: var(--white);
  border: 1px solid #ece0c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 14px 36px rgba(122,92,30,0.15), inset 0 0 0 8px var(--cream);
}

.product-detail-icon svg {
  width: 64px;
  height: 64px;
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(122,92,30,0.05));
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.product-body {
  padding: 24px;
}

.product-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
}

.product-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.product-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.spec-badge {
  background: var(--cream);
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--cream-dark);
}

/* ---- WHY US ---- */
.why-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2d1f08 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.15) 0%, transparent 70%);
  pointer-events: none;
}

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

.why-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-content > p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  font-size: 16px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 20px;
  flex-shrink: 0;
}

.why-item h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-item p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.why-image-wrap {
  position: relative;
}

.why-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid rgba(212,160,23,0.2);
}

.why-image-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(18,16,14,0.85);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid rgba(212,160,23,0.2);
  display: flex;
  gap: 20px;
  align-items: center;
}

.overlay-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), #b8870e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.overlay-text strong {
  display: block;
  color: white;
  font-size: 15px;
  margin-bottom: 4px;
}

.overlay-text span {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

/* ---- VALUES ---- */
.values-section { background: var(--cream); }

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

.value-card {
  background: white;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #f0e8d5;
  transition: var(--transition);
}

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

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
  color: var(--primary);
  border: 1px solid #e0d0b0;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* ---- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 44px);
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #2d1f08 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/banner.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 50px);
  color: white;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 13px;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb strong { color: var(--gold-light); }

/* ---- ABOUT PAGE ---- */
.about-story {
  background: var(--white);
}

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

.story-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.story-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--dark);
  margin-bottom: 20px;
}

.story-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 16px;
}

.mission-vision {
  background: var(--cream);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}

.mv-card .mv-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 16px;
}

.mv-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ---- CONTACT ---- */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--dark);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 16px;
}

.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.ci-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.ci-item h4 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  font-size: 14px;
}

.ci-item p, .ci-item a {
  color: var(--text-light);
  font-size: 15px;
}

.ci-item a:hover { color: var(--primary); }

/* ---- CONTACT FORM ---- */
.contact-form-wrap {
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--dark);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0d0b0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-submit { width: 100%; justify-content: center; font-size: 16px; }

.form-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 16px;
  display: none;
  font-weight: 500;
}

.form-error {
  background: #fdecea;
  border: 1px solid #f5b7b1;
  color: #c0392b;
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 16px;
  display: none;
  font-weight: 500;
}

/* ---- MAP ---- */
.map-section { padding: 0; }
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}

/* ---- FOOTER ---- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); }

.footer-top { padding: 70px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--gold-light);
}

.footer-logo i { font-size: 28px; }

.footer-logo span {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: white;
  display: block;
  font-size: 18px;
}

.footer-logo small {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}

.footer-brand > p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badges span {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
}

.footer-col h4 {
  color: white;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul a i { font-size: 10px; color: var(--gold); }

.footer-col ul a:hover { color: var(--gold-light); }

.footer-contact .fc-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact .fc-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 14px;
}

.footer-contact .fc-item p,
.footer-contact .fc-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.footer-contact .fc-item a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ---- SCROLL TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ---- 404 ---- */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.not-found-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.not-found-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--dark);
  margin-bottom: 16px;
}

.not-found-content p {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 17px;
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid, .why-grid, .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .topbar-right { display: none; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    transition: var(--transition);
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .main-nav a {
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--cream-dark);
    border-radius: 0;
    width: 100%;
  }

  .main-nav a::after { display: none; }

  .btn-header { display: none; }

  .hamburger { display: flex; z-index: 1001; }

  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { min-height: 70vh; }
  .hero-scroll { display: none; }

  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

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

  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 28px 16px; }
  .stat-number { font-size: 32px; }
}
