/* Yüceer Orman Ürünleri - Custom Styles */

:root {
  --forest: #1a472a;
  --forest-light: #2d6a4f;
  --wood: #6b4423;
  --wood-light: #8b5a2b;
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --charcoal: #1c1917;
  --gold: #c4a35a;
  --topbar-height: 2.25rem;
  --navbar-height: 6rem;
  --site-header-height: calc(var(--topbar-height) + var(--navbar-height));
}

@media (max-width: 639px) {
  :root {
    --topbar-height: 3.75rem;
    --navbar-height: 5rem;
    --site-header-height: calc(var(--topbar-height) + var(--navbar-height));
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.font-display {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.02em;
}

/* Hero overlay gradient */
.hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(26, 71, 42, 0.88) 0%,
    rgba(26, 71, 42, 0.65) 50%,
    rgba(107, 68, 35, 0.55) 100%
  );
}

/* Subtle wood texture pattern */
.wood-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236b4423' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Navigation */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #57534e;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.nav-link__icon {
  display: inline-flex;
  color: #78716c;
  transition: color 0.25s ease;
}

.nav-link__icon svg {
  width: 1rem;
  height: 1rem;
}

.nav-link:hover {
  color: var(--forest);
  background: rgba(26, 71, 42, 0.07);
}

.nav-link:hover .nav-link__icon {
  color: var(--forest);
}

.nav-link--active {
  color: var(--forest);
  font-weight: 600;
  background: rgba(26, 71, 42, 0.1);
  box-shadow: inset 0 0 0 1px rgba(196, 163, 90, 0.4);
}

.nav-link--active .nav-link__icon {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.35rem;
  padding: 0.6rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  box-shadow: 0 4px 16px rgba(26, 71, 42, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.nav-cta__icon {
  display: inline-flex;
}

.nav-cta__icon svg {
  width: 1rem;
  height: 1rem;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(26, 71, 42, 0.35);
  background: linear-gradient(135deg, var(--forest-light) 0%, var(--forest) 100%);
}

.navbar-inner {
  transition: height 0.3s ease;
}

#site-header.scrolled .navbar-inner {
  height: 4.25rem;
}

@media (min-width: 640px) {
  #site-header.scrolled .navbar-inner {
    height: 5rem;
  }
}

#site-header.scrolled .site-logo {
  height: 3.25rem;
  max-width: 240px;
}

@media (min-width: 640px) {
  #site-header.scrolled .site-logo {
    height: 3.75rem;
    max-width: 260px;
  }
}

/* Mobile nav items */
.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-nav-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  flex-shrink: 0;
}

.mobile-nav-item__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.mobile-nav-item__label {
  flex: 1;
}

.mobile-nav-item__arrow {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, color 0.2s ease;
}

.mobile-nav-item__arrow svg {
  width: 1.1rem;
  height: 1.1rem;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(196, 163, 90, 0.35);
}

.mobile-nav-item:hover .mobile-nav-item__arrow {
  color: var(--gold);
  transform: translateX(3px);
}

.mobile-nav-item--active {
  background: rgba(196, 163, 90, 0.15);
  border-color: rgba(196, 163, 90, 0.45);
  color: #ffffff;
  font-weight: 600;
}

.mobile-nav-item--active .mobile-nav-item__icon {
  background: rgba(196, 163, 90, 0.22);
}

.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 0.65rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
  background: #ffffff;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu__cta svg {
  width: 1.1rem;
  height: 1.1rem;
}

.mobile-menu__cta:hover {
  background: var(--gold);
  color: #ffffff;
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.925rem;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-menu__phone svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--gold);
}

.mobile-menu__phone:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(196, 163, 90, 0.5);
}

/* Card hover effects */
.product-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(26, 71, 42, 0.15);
}

.product-card img {
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Stat counter animation */
.stat-number {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section divider */
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--wood-light));
}

/* Button styles */
.btn-primary {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -5px rgba(26, 71, 42, 0.4);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

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

/* Hero CTA — koyu arka planda net görünür */
.hero-actions .btn-primary {
  background: #ffffff;
  color: var(--forest);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-actions .btn-primary:hover {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-actions .btn-outline {
  border: 2px solid #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-actions .btn-outline:hover {
  background: #ffffff;
  color: var(--forest);
}

/* Image reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  height: 100dvh;
  padding: 1.25rem 1.5rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
}

.mobile-menu__nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.mobile-menu__footer {
  flex-shrink: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu__phone {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

body.menu-open .whatsapp-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Map container */
.map-container iframe {
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%);
}

/* Partner logos */
.partner-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 71, 42, 0.08);
}

.partner-badge img {
  max-height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.partner-badge--dark {
  background: var(--forest);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Gallery lightbox */
.gallery-item {
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px -8px rgba(26, 71, 42, 0.25);
}

.lightbox {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.faq-trigger {
  transition: color 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-icon {
  transition: transform 0.25s ease;
}

.footer-logo-wrap {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 10px 14px;
  display: inline-block;
}

.site-logo {
  height: 4.25rem;
  width: auto;
  max-width: min(280px, 58vw);
  object-fit: contain;
  display: block;
  transition: height 0.3s ease, max-width 0.3s ease;
}

@media (min-width: 640px) {
  .site-logo {
    height: 5rem;
    max-width: 320px;
  }
}

.mobile-logo-wrap {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 8px 12px;
  display: inline-flex;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.mobile-logo-wrap .site-logo {
  height: 3.25rem;
  max-width: 220px;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  z-index: 90;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    right: calc(1rem + env(safe-area-inset-right, 0px));
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

.hero-bg-image {
  object-position: center 40%;
}

/* Scroll indicator */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.scroll-indicator {
  animation: bounce 2s infinite;
}

/* Page header */
.page-header {
  position: relative;
  isolation: isolate;
  background-image: url('../resimler/sayfa-baslik-arkaplan-kereste-tesisi.png');
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  padding-top: var(--site-header-height);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 71, 42, 0.88) 0%,
    rgba(26, 71, 42, 0.78) 45%,
    rgba(107, 68, 35, 0.72) 100%
  );
  z-index: 0;
}

.page-header__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 11rem;
  padding: 2.25rem 0 2.75rem;
  gap: 0.6rem;
}

.page-header__badge {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-indent: 0.16em;
  margin: 0;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(196, 163, 90, 0.25);
}

.page-header__title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

.page-header__subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  line-height: 1.6;
  max-width: 36rem;
  margin: 0;
}

.page-header__line {
  width: 4rem;
  height: 3px;
  margin: 0.35rem 0 0;
  border-radius: 9999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

@media (min-width: 768px) {
  .page-header__inner {
    min-height: 13rem;
    padding: 2.75rem 0 3.25rem;
    gap: 0.7rem;
  }
}

/* Quote form */
#teklif-formu {
  scroll-margin-top: calc(var(--site-header-height) + 1rem);
}

.quote-section__badge {
  display: inline-block;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  background: rgba(26, 71, 42, 0.08);
  border: 1px solid rgba(26, 71, 42, 0.15);
}

.quote-form {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 40px rgba(26, 71, 42, 0.08);
}

@media (min-width: 640px) {
  .quote-form {
    padding: 2rem 2.25rem;
  }
}

.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 640px) {
  .quote-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.quote-field--full {
  grid-column: 1 / -1;
}

.quote-field span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
}

.quote-field input,
.quote-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fafaf9;
  font-size: 0.95rem;
  color: #44403c;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-field input:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26, 71, 42, 0.12);
  background: #ffffff;
}

.quote-field textarea {
  resize: vertical;
  min-height: 5.5rem;
}

.quote-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  margin-top: 1.35rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 9999px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quote-form__submit svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.quote-form__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.quote-form__head {
  margin-bottom: 1.35rem;
}

.quote-form__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.35rem;
}

.quote-form__subtitle {
  color: #78716c;
  font-size: 0.95rem;
  line-height: 1.55;
}

.quote-form__note {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: #a8a29e;
  text-align: center;
  line-height: 1.5;
}

/* Quote page */
.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.quote-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #44403c;
  font-size: 0.975rem;
  line-height: 1.5;
}

.quote-benefits__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: rgba(26, 71, 42, 0.1);
  color: var(--forest);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.quote-benefits__icon svg {
  width: 0.85rem;
  height: 0.85rem;
}

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

.quote-stats__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(26, 71, 42, 0.06);
}

.quote-stats__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.quote-stats__label {
  font-size: 0.85rem;
  color: #78716c;
}

.quote-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .quote-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .quote-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quote-step {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(26, 71, 42, 0.05);
}

.quote-step__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.quote-step__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.quote-step__text {
  font-size: 0.9rem;
  color: #78716c;
  line-height: 1.55;
}

.quote-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
}

.quote-side__block {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 1.15rem;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(26, 71, 42, 0.06);
}

.quote-side__block--contact {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-light) 100%);
  color: #ffffff;
  border: none;
}

.quote-side__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.quote-side__block--contact .quote-side__title {
  color: #ffffff;
}

.quote-side__text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #78716c;
  margin-bottom: 1rem;
}

.quote-side__block--contact .quote-side__text {
  color: rgba(255, 255, 255, 0.78);
}

.quote-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quote-products li {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--forest);
  background: rgba(26, 71, 42, 0.08);
  border: 1px solid rgba(26, 71, 42, 0.12);
  border-radius: 9999px;
  padding: 0.35rem 0.75rem;
}

.quote-side__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  transition: opacity 0.2s ease;
}

.quote-side__link span {
  display: inline-flex;
  width: 1.25rem;
  height: 1.25rem;
}

.quote-side__link span svg {
  width: 100%;
  height: 100%;
}

.quote-side__link:hover {
  opacity: 0.85;
}

.quote-side__more {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.quote-side__more:hover {
  text-decoration: underline;
}

/* Footer */
.footer-heading {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.15rem;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.footer-heading__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  background: rgba(196, 163, 90, 0.12);
  color: var(--gold);
  flex-shrink: 0;
}

.footer-heading__icon svg {
  width: 1rem;
  height: 1rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.footer-links li {
  position: relative;
  padding-left: 0.85rem;
}

.footer-links li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(196, 163, 90, 0.55);
}

.footer-location {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.footer-location__icon {
  display: inline-flex;
  color: var(--gold);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-location__icon svg {
  width: 1rem;
  height: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
  margin-bottom: 0.75rem;
  font-size: 0.925rem;
  line-height: 1.45;
}

.footer-contact-item--phone {
  font-size: 1.05rem;
  font-weight: 600;
}

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

.footer-contact-item__icon {
  display: inline-flex;
  color: var(--gold);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-contact-item__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-contact-item--email span:last-child {
  word-break: break-word;
}

.hero-top-padding {
  padding-top: var(--site-header-height);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background: var(--forest);
  color: white;
}

/* Üst bar — iletişim + dil */
.site-topbar {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
}

.site-topbar__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  padding: 0.4rem 0;
}

.topbar-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  min-width: 0;
  width: 100%;
}

.topbar-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s ease;
  max-width: 100%;
}

.topbar-contact__link:hover {
  color: var(--gold);
}

.topbar-contact__email {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 11rem;
}

.topbar-contact__phone span {
  white-space: nowrap;
}

.topbar-contact__icon {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.topbar-contact__sep {
  color: rgba(255, 255, 255, 0.25);
  user-select: none;
}

.lang-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex-shrink: 0;
  width: 100%;
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.lang-flag:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.lang-flag--active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(196, 163, 90, 0.45);
}

.lang-flag__icon {
  width: 1.15rem;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .site-topbar__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0;
    height: var(--topbar-height);
  }

  .topbar-contact {
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: auto;
  }

  .topbar-contact__email {
    max-width: none;
  }

  .lang-flags {
    justify-content: flex-end;
    width: auto;
  }
}

@media (max-width: 639px) {
  .lang-flag span {
    display: none;
  }

  .lang-flag {
    padding: 0.25rem 0.4rem;
  }

  .topbar-contact__email {
    display: none;
  }

  .topbar-contact__phone span {
    font-size: 0.7rem;
  }
}

#site-header.scrolled #navbar {
  box-shadow: 0 8px 30px -12px rgba(26, 71, 42, 0.18);
  background: rgba(255, 255, 255, 0.98);
}
