/* Yaşamtaş Prefabrik - Logo renk paleti: siyah, altın, zümrüt yeşil */
:root {
  --black: #0A0A0A;
  --green-dark: #013220;
  --green-mid: #1B5E3A;
  --green-light: #2d8a5e;
  --green-bright: #50C878;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #B8960C;
  --gold-gradient: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  --green-gradient: linear-gradient(135deg, var(--green-bright), var(--green-mid), var(--green-dark));
  --bg-body: linear-gradient(180deg, #0A0A0A 0%, #0d1a12 35%, #0A0A0A 100%);
  --bg-section: #0f1812;
  --bg-section-alt: #0a0f0c;
  --bg-mint: #0f1812;
  --bg-cream: #0A0A0A;
  --bg-card: rgba(20, 28, 22, 0.92);
  --bg-card-solid: #141c16;
  --bg-white: #1a2420;
  --bg-gray-section: linear-gradient(160deg, #0d1610 0%, #0f1f16 50%, #0a120e 100%);
  --text-dark: #e8e4d8;
  --text-muted: #a8b0a4;
  --text-on-dark: #f0ece0;
  --text-gold: var(--gold-light);
  --accent: var(--gold-dark);
  --accent-dark: var(--green-dark);
  --accent-bright: var(--green-bright);
  --header-bg: var(--black);
  --header-top-bg: var(--green-dark);
  --border: rgba(212, 175, 55, 0.25);
  --border-light: rgba(212, 175, 55, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.08);
  --container: 1248px;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-title: 'Gabarito', 'Montserrat', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--black);
  background-image: var(--bg-body);
  background-attachment: fixed;
  min-height: 100vh;
}

main {
  position: relative;
}

main::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
    linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
    linear-gradient(30deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold)),
    linear-gradient(150deg, var(--gold) 12%, transparent 12.5%, transparent 87%, var(--gold) 87.5%, var(--gold));
  background-size: 80px 140px;
}

main > * { position: relative; z-index: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ===== HEADER (logo: siyah zemin + altın/yeşil) ===== */
.site-header {
  background: var(--header-bg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 2px solid var(--gold-dark);
}

.secondary-header {
  background: var(--black);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 13px;
  padding: 8px 0;
}
.secondary-header .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-links a {
  min-height: 40px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.45);
  font-size: 13px;
  font-weight: 600;
  transition: .3s;
  white-space: nowrap;
}
.social-links__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
}
.social-links__icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.social-links__icon--instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.social-links__icon--facebook {
  background: #1877f2;
  color: #fff;
}
.social-links a:hover { background: var(--gold); color: var(--green-dark); }
.social-links a:hover .social-links__icon--instagram,
.social-links a:hover .social-links__icon--facebook {
  background: rgba(1, 50, 32, 0.15);
  color: var(--green-dark);
}
.contact-info { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: var(--text-on-dark); font-size: 13px; }
.contact-info a { color: var(--gold-light); }
.contact-info a:hover { color: #fff; }
.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #25D366;
  color: #fff !important;
  font-weight: 600;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: .3s;
}
.header-whatsapp:hover {
  background: #1ebe57;
  color: #fff !important;
  transform: translateY(-1px);
}
.header-whatsapp svg { flex-shrink: 0; }
.contact-info__sep { color: rgba(212, 175, 55, 0.5); }

.main-header {
  padding: 16px 0 12px;
  text-align: center;
  position: relative;
  background: var(--black);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}
.logo {
  display: inline-block;
  line-height: 0;
}
.logo img {
  height: 88px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.mobile-icons {
  display: none; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); gap: 12px;
}
.mobile-icons button {
  background: none; border: none; font-size: 22px; cursor: pointer; color: var(--gold); padding: 4px;
}

.main-nav-wrap {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background: var(--green-dark);
}
.main-nav .container { position: relative; }
.main-nav__list {
  display: flex; justify-content: center; align-items: stretch; flex-wrap: wrap;
}
.main-nav__item { position: relative; }
.main-nav__link {
  display: block; padding: 16px 14px; font-size: 12px; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase; color: var(--text-on-dark);
  transition: color .3s; position: relative;
}
.main-nav__link:hover,
.main-nav__link.active { color: var(--gold-light); }
.main-nav__link.active::after,
.main-nav__link:hover::after {
  content: ''; position: absolute; bottom: 0; left: 14px; right: 14px;
  height: 3px; background: var(--gold-gradient);
}
.main-nav__item--dropdown:hover .main-nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav__dropdown {
  position: absolute; top: 100%; left: 0; min-width: 260px; background: var(--black);
  border-top: 3px solid var(--gold); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .3s; z-index: 100;
}
.main-nav__dropdown a {
  display: block; padding: 12px 20px; font-size: 13px; text-transform: none;
  letter-spacing: 0; border-bottom: 1px solid rgba(255,255,255,0.06); color: var(--text-on-dark);
}
.main-nav__dropdown a:hover { background: var(--green-mid); color: var(--gold-light); padding-left: 24px; }

.nav-search-btn {
  background: none; border: none; cursor: pointer; padding: 16px 14px; font-size: 16px; color: var(--gold);
}
.nav-search-btn:hover { color: var(--gold-light); }

.search-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.85); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: .3s;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay form {
  width: 90%; max-width: 600px; display: flex; background: #fff; border-radius: 4px; overflow: hidden;
}
.search-overlay input {
  flex: 1; border: none; padding: 16px 20px; font-size: 16px; outline: none;
}
.search-overlay button {
  background: var(--accent-dark); color: var(--gold); border: none; padding: 0 24px; cursor: pointer; font-size: 18px;
}
.search-overlay__close {
  position: absolute; top: 24px; right: 24px; background: none; border: none;
  color: #fff; font-size: 32px; cursor: pointer;
}

.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: var(--black); z-index: 1500; overflow-y: auto; transition: right .3s;
  box-shadow: -4px 0 24px rgba(0,0,0,.4); border-left: 2px solid var(--gold);
}
.mobile-nav.open { right: 0; }
.mobile-nav__header {
  padding: 16px 20px; border-bottom: 1px solid rgba(212,175,55,.3);
  display: flex; justify-content: space-between; align-items: center; color: var(--gold);
}
.mobile-nav__close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gold); }
.mobile-nav__list a {
  display: block; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 13px; font-weight: 600; text-transform: uppercase; color: var(--text-on-dark);
}
.mobile-nav__list a:hover, .mobile-nav__list a.active { color: var(--gold-light); background: var(--green-dark); }
.mobile-nav__sub a { padding-left: 36px; text-transform: none; font-weight: 400; font-size: 14px; }
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1400;
  opacity: 0; visibility: hidden; transition: .3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ===== SLIDER ===== */
.hero-slider {
  background: var(--black);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.hero-slider.section-mint {
  padding: 0;
  border-top: none;
}
.hero-slider.section-mint::before {
  display: none;
}
.flexslider { position: relative; overflow: hidden; background: var(--black); width: 100%; }
.flexslider .slides { position: relative; margin: 0; padding: 0; list-style: none; }
.flexslider .slide {
  display: none;
  width: 100%;
  height: clamp(360px, 42vw, 680px);
  overflow: hidden;
  line-height: 0;
}
.flexslider .slide.active { display: block; }
.flexslider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.flex-control-nav {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}
.flex-control-nav li { list-style: none; }
.flex-control-nav button {
  width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--gold);
  background: rgba(1, 50, 32, 0.6); cursor: pointer; padding: 0;
}
.flex-control-nav button.flex-active { background: var(--gold); }
.flex-direction-nav { list-style: none; }
.flex-direction-nav button {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: var(--green-dark); color: var(--gold); border: 1px solid var(--gold);
  width: 40px; height: 40px; cursor: pointer; font-size: 18px; opacity: .9; transition: .3s;
}
.flex-direction-nav .flex-prev { left: 10px; }
.flex-direction-nav .flex-next { right: 10px; }
.flex-direction-nav button:hover { opacity: 1; }

/* ===== CONTENT BOXES (8 categories) ===== */
.section-mint {
  background: var(--bg-section);
  padding: 20px 0 40px;
  position: relative;
  border-top: 1px solid rgba(80, 200, 120, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.section-mint::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(80, 200, 120, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.content-boxes {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
  position: relative; z-index: 1;
}
.content-box {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border-radius: 15px; box-shadow: var(--shadow-card);
  padding: 24px 20px; transition: transform .3s, box-shadow .3s, border-color .3s;
  border: 1px solid var(--border-light);
}
.content-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(27, 94, 58, 0.15);
}
.content-box a { display: flex; align-items: center; gap: 14px; }
.content-box__icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green-gradient);
  color: var(--gold-light); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; box-shadow: 0 2px 12px rgba(80, 200, 120, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.content-box__icon svg { display: block; }
.content-box__title {
  font-family: var(--font-title); font-size: 18px; line-height: 1.3;
  color: var(--gold-light); font-weight: 700;
}
.content-box:hover .content-box__title { color: var(--green-bright); }

/* ===== BANNER ===== */
.section-banner {
  min-height: 624px; background-size: cover; background-position: center;
  background-attachment: fixed;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.6);
  border-top: 2px solid rgba(212, 175, 55, 0.2);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

/* ===== SHOWCASE (video + proje görseli) ===== */
.section-showcase {
  background: var(--bg-section);
  padding: 56px 0 64px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.showcase-title {
  font-family: var(--font-title);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.showcase-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 32px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.showcase-video-wrap,
.showcase-photo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.showcase-video {
  display: block;
  width: 100%;
  max-height: 520px;
  background: #000;
  object-fit: cover;
}
.showcase-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.showcase-photo figcaption {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--gold-light);
  text-align: center;
  border-top: 1px solid var(--border-light);
  background: rgba(10, 10, 10, 0.35);
}

/* ===== PRICE SECTION ===== */
.section-price {
  background: var(--bg-gray-section);
  padding: 40px 0 60px;
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.section-price::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(80, 200, 120, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.price-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 40px;
  max-width: var(--container); margin: 0 auto; padding: 0 20px; align-items: start;
  position: relative; z-index: 1;
}
.price-title {
  font-family: var(--font-serif); font-size: 50px; font-weight: 700; text-align: center;
  background: var(--gold-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 20px; line-height: 1.1;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
}
.price-subtitle { font-size: 20px; color: var(--green-bright); margin-bottom: 16px; font-weight: 600; }
.price-text { font-size: 16px; color: var(--text-muted); line-height: 1.8; }
.price-iframe-wrap {
  background: var(--bg-card-solid);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.price-iframe-wrap iframe { width: 100%; border: none; min-height: 1200px; display: block; }
.price-iframe-wrap--mobile { display: none; }

/* ===== ABOUT + GALLERY ===== */
.section-about {
  padding: 40px 0 60px;
  background: var(--bg-section-alt);
  border-top: 1px solid rgba(80, 200, 120, 0.1);
}
.about-text { text-align: center; max-width: 900px; margin: 0 auto 30px; padding: 0 20px; }
.about-text p { margin-bottom: 16px; font-size: 16px; line-height: 1.8; color: var(--text-muted); }
.gallery-heading {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 8px;
}
.gallery-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 28px;
  padding: 0 20px;
}

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  max-width: var(--container); margin: 0 auto; padding: 0 15px;
}
.gallery-item {
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.15);
  transition: border-color .3s, box-shadow .3s;
  border-radius: 4px;
}
.gallery-item:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
}
.gallery-item img {
  width: 100%; height: 295px; object-fit: cover; transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== PRODUCT MODELS (Çelik evler vb.) ===== */
.product-models-section {
  background: var(--bg-section-alt);
  padding: 48px 0 60px;
  border-top: 1px solid rgba(80, 200, 120, 0.1);
}
.product-models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 15px;
}
.product-model-card {
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.15);
  border-radius: 4px;
  background: var(--bg-card);
  transition: border-color .3s, box-shadow .3s;
}
.product-model-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.2);
}
.product-model-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.product-model-card:hover img { transform: scale(1.05); }
.product-model-card figcaption {
  padding: 14px 12px;
  text-align: center;
  font-family: var(--font-title);
  font-size: 15px;
  color: var(--gold-light);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

/* ===== LOCATION MAP ===== */
.location-section {
  background: var(--bg-section);
  padding: 48px 0 56px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.location-section--home {
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.location-section h2 {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 10px;
}
.location-address {
  text-align: center;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.location-map-wrap {
  max-width: var(--container);
  margin: 0 auto;
  border: 2px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #000;
}
.location-map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}
.location-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 18px auto 0;
  padding: 12px 20px;
  background: var(--green-gradient);
  color: var(--gold-light);
  font-weight: 700;
  border-radius: 4px;
  transition: .3s;
  text-decoration: none;
  width: fit-content;
}
.location-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.location-map-link:hover {
  background: var(--gold-gradient);
  color: var(--green-dark);
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-title-bar {
  background: var(--green-gradient); padding: 50px 0; text-align: center;
  border-bottom: 3px solid var(--gold);
}
.page-title-bar h1 {
  font-family: var(--font-serif); font-size: clamp(28px, 5vw, 42px);
  color: var(--gold-light); font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.page-content { max-width: 900px; margin: 0 auto; padding: 40px 20px 60px; color: var(--text-dark); }
.page-content h2 { font-family: var(--font-title); color: var(--gold-light); font-size: 24px; margin: 28px 0 12px; }
.page-content h3 { color: var(--green-bright); font-size: 18px; margin: 20px 0 10px; }
.page-content a { color: var(--gold); text-decoration: underline; }
.page-content a:hover { color: var(--green-bright); }
.page-content p { margin-bottom: 16px; line-height: 1.8; color: var(--text-muted); }
.page-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; color: var(--text-muted); }
.page-content ul li { margin-bottom: 8px; }

/* ===== FORMS ===== */
.form-section {
  background: var(--bg-section);
  padding: 40px 0 60px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.form-card {
  max-width: 800px; margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  padding: 36px;
  border-radius: 12px; box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-top: 4px solid var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; color: var(--gold-light); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1px solid rgba(212, 175, 55, 0.2); border-radius: 4px;
  background: rgba(10, 10, 10, 0.5); color: var(--text-dark); transition: border-color .3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}
.form-group select option { background: var(--green-dark); color: var(--text-dark); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group--full { grid-column: 1 / -1; }
.btn-submit {
  background: var(--green-gradient); color: var(--gold-light); border: none;
  padding: 14px 32px; font-weight: 700; font-size: 14px; letter-spacing: .5px;
  text-transform: uppercase; cursor: pointer; border-radius: 4px; transition: .3s; width: 100%;
  box-shadow: 0 4px 14px rgba(1, 50, 32, 0.3);
}
.btn-submit:hover { background: var(--gold-gradient); color: var(--green-dark); }
.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: .3s;
  text-decoration: none;
  width: 100%;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-1px);
}
.form-success {
  display: none; margin-top: 16px; padding: 14px;
  background: rgba(80, 200, 120, 0.12);
  border: 1px solid var(--accent-bright); color: var(--green-bright);
  text-align: center; border-radius: 4px;
}
.form-success.show { display: block; }
.form-error { color: #c0392b; font-size: 13px; margin-top: 4px; display: none; }
.form-error.show { display: block; }

/* ===== PRICE CALC ===== */
.calc-form { padding: 20px; }
.calc-price-box {
  background: var(--green-gradient); color: var(--gold-light); text-align: center;
  padding: 24px; border-radius: 8px; margin: 20px 0; font-size: 32px; font-weight: 700;
  border: 2px solid var(--gold); box-shadow: 0 4px 16px rgba(1, 50, 32, 0.25);
}
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ===== BLOG ===== */
.blog-list {
  max-width: var(--container); margin: 0 auto; padding: 40px 20px 60px;
  background: var(--bg-section-alt);
}
.blog-item {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px;
  padding: 30px 0; border-bottom: 1px solid var(--border-light);
}
.blog-item__date { font-size: 14px; color: var(--gold); font-weight: 600; }
.blog-item__title { font-family: var(--font-title); font-size: 22px; color: var(--gold-light); margin: 8px 0; }
.blog-item__title a:hover { color: var(--green-bright); }
.blog-item__excerpt { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.blog-item__meta { font-size: 13px; color: var(--text-muted); opacity: 0.7; margin-top: 8px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black); color: #bbb;
  border-top: 3px solid var(--gold);
}
.footer-copyright { padding: 24px 0; text-align: center; font-size: 14px; }
.footer-copyright a { color: var(--gold-light); }
.footer-social { display: flex; justify-content: center; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.footer-social a {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  transition: .3s;
}
.footer-social a:hover { background: var(--gold); color: var(--accent-dark); }
.footer-social a:hover .social-links__icon--instagram,
.footer-social a:hover .social-links__icon--facebook {
  background: rgba(1, 50, 32, 0.15);
  color: var(--accent-dark);
}

.go-top {
  position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px;
  background: var(--gold-gradient); color: var(--green-dark); border: none; border-radius: 50%;
  cursor: pointer; font-size: 18px; opacity: 0; visibility: hidden; transition: .3s; z-index: 900;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.go-top.visible { opacity: 1; visibility: visible; }

/* ===== FLOAT CONTACT (Chaty style) ===== */
.float-contact {
  position: fixed; bottom: 24px; left: 24px; z-index: 900;
  display: flex; flex-direction: column; gap: 10px;
}
.float-contact a {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 22px; box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform .3s;
}
.float-contact a:hover { transform: scale(1.1); }
.float-contact .float-phone { background: var(--green-mid); border: 2px solid var(--gold); }
.float-contact .float-whatsapp { background: #25D366; border: 2px solid var(--gold-light); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: .3s; padding: 20px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 20px; right: 20px; background: none; border: none;
  color: #fff; font-size: 36px; cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .content-boxes { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .price-iframe-wrap--desktop { display: none; }
  .price-iframe-wrap--mobile { display: block; }
  .price-iframe-wrap--mobile iframe { min-height: 1700px; }
  .flexslider .slide { height: clamp(280px, 48vw, 520px); }
}

@media (max-width: 768px) {
  .flexslider .slide { height: clamp(240px, 58vw, 400px); }
  .flex-control-nav { bottom: 10px; }
  .flex-control-nav button { width: 10px; height: 10px; }
  .main-nav { display: none; }
  .mobile-icons { display: flex; }
  .content-boxes { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 220px; }
  .product-models-grid { grid-template-columns: 1fr; }
  .product-model-card img { height: 220px; }
  .form-row, .calc-grid { grid-template-columns: 1fr; }
  .form-actions { grid-template-columns: 1fr; }
  .blog-item { grid-template-columns: 1fr; }
  .section-banner { min-height: 300px; background-attachment: scroll; }
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-video { max-height: none; }
  .location-map-wrap iframe { height: 300px; }
  .flex-direction-nav { display: none; }
  .secondary-header .container { justify-content: center; text-align: center; }
  .price-title { font-size: 36px; }
}

@media (max-width: 480px) {
  .logo img { height: 64px; }
  .content-box__title { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
