/* ================================================
   REFORM KAĞIT v2 — Ana CSS
   Modern Kurumsal & Endüstriyel
   ================================================ */

:root {
  --primary:       #0a2540;
  --primary-mid:   #103560;
  --primary-light: #1a4a7a;
  --accent:        #e07b1a;
  --accent-dark:   #c4650e;
  --accent-light:  #f0952e;
  --white:         #ffffff;
  --off-white:     #f7f8fa;
  --light:         #eef1f5;
  --border:        #dde2ea;
  --text:          #1c2b3a;
  --text-mid:      #3d5166;
  --text-light:    #6b7f96;
  --shadow-sm:     0 2px 12px rgba(10,37,64,.07);
  --shadow:        0 6px 28px rgba(10,37,64,.11);
  --shadow-lg:     0 16px 56px rgba(10,37,64,.17);
  --radius:        3px;
  --radius-lg:     8px;
  --tr:            all .28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

.container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  font-size: 12.5px;
  letter-spacing: .3px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 20px; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar a, .topbar span { display: flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--accent-light); }
.topbar i { color: var(--accent); font-size: 11px; }
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  padding: 3px 10px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--tr);
}
.lang-btn:hover, .lang-btn.active { background: var(--accent); border-color: var(--accent); color: white; }

/* ── HEADER ── */
.header {
  background: var(--white);
  position: sticky; top: 0; z-index: 900;
  border-bottom: 3px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: var(--tr);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }

.logo { display: flex; align-items: center; gap: 13px; }
.logo-mark {
  width: 50px; height: 50px;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px;
  flex-shrink: 0;
}
.logo-name { line-height: 1; }
.logo-name strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.logo-name span {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── NAV ── */
.nav { display: flex; align-items: center; gap: 2px; }
.nav > a, .nav-drop > a {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--text-mid);
  padding: 8px 13px;
  border-radius: var(--radius);
  transition: var(--tr);
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.nav > a:hover, .nav-drop > a:hover,
.nav > a.active, .nav-drop > a.active { color: var(--accent); background: rgba(224,123,26,.07); }
.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  min-width: 210px;
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: var(--tr); z-index: 50;
}
.nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-drop-menu a {
  display: block; padding: 10px 18px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--light);
  transition: var(--tr);
}
.nav-drop-menu a:last-child { border: none; }
.nav-drop-menu a:hover { color: var(--accent); padding-left: 24px; background: var(--off-white); }

.header-cta {
  display: flex; align-items: center; gap: 10px; margin-left: 12px;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--tr); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: var(--tr); white-space: nowrap;
}
.btn-sm { padding: 7px 16px; font-size: 12px; }
.btn-lg { padding: 14px 36px; font-size: 14px; }
.btn-primary { background: var(--accent); color: white; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,123,26,.35); }
.btn-dark { background: var(--primary); color: white; border-color: var(--primary); }
.btn-dark:hover { background: var(--primary-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,.45); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: white; }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-outline-dark:hover { background: var(--light); border-color: var(--primary); }

/* ── HERO SLIDER ── */
.hero { position: relative; overflow: hidden; min-height: 620px; }
.hero-slides { position: relative; height: 620px; }
.hero-slide {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, var(--primary) 0%, var(--primary-mid) 55%, #1d5a96 100%);
  display: flex; align-items: center;
  opacity: 0; transition: opacity .8s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .18;
}
.hero-slide::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 660px;
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,123,26,.2);
  border: 1px solid rgba(224,123,26,.4);
  color: var(--accent-light);
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px;
  margin-bottom: 22px;
}
.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 22px;
}
.hero-title span { color: var(--accent-light); }
.hero-subtitle {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 38px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-indicators {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.35);
  border-radius: 50%; cursor: pointer;
  transition: var(--tr);
  border: none;
}
.hero-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
.hero-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 20px; z-index: 10; pointer-events: none;
}
.hero-arrow {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: white; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: auto;
  transition: var(--tr); backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--accent); border-color: var(--accent); }

/* ── SECTION COMMONS ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--primary); color: white; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head.left { text-align: left; }
.eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.12;
  letter-spacing: -.3px;
  margin-bottom: 14px;
}
.section-dark .section-title { color: white; }
.section-desc { font-size: 16.5px; color: var(--text-light); max-width: 580px; margin: 0 auto; font-weight: 300; line-height: 1.8; }
.section-dark .section-desc { color: rgba(255,255,255,.65); }
.rule { width: 48px; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-light)); margin: 16px auto 0; border-radius: 2px; }
.section-head.left .rule { margin: 16px 0 0; }

/* ── STATS BAR ── */
.stats-bar { background: var(--accent); padding: 0; }
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 44px; font-weight: 800;
  color: white; line-height: 1;
}
.stat-lbl {
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
}

/* ── PRODUCT CARDS ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--tr);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img .ph { font-size: 56px; color: rgba(255,255,255,.18); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 2px;
}
.product-body { padding: 22px; }
.product-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.product-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--primary); margin-bottom: 8px; line-height: 1.3;
}
.product-body p { font-size: 13.5px; color: var(--text-light); margin-bottom: 14px; }
.product-specs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 16px; }
.spec-tag {
  background: var(--light); border: 1px solid var(--border);
  font-size: 11.5px; padding: 3px 8px;
  border-radius: 2px; color: var(--text-mid); font-weight: 500;
}
.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  color: var(--primary); transition: var(--tr);
}
.product-link:hover { color: var(--accent); gap: 10px; }

/* ── WHY US FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-bottom: 3px solid transparent;
  border-radius: var(--radius-lg);
  padding: 36px 26px; text-align: center;
  transition: var(--tr);
}
.feature-card:hover { border-bottom-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 26px; color: white;
  transition: var(--tr);
}
.feature-card:hover .feature-icon { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }
.feature-card h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.feature-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(110deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,.015) 12px, rgba(255,255,255,.015) 24px);
}
.cta-band .container { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: white; line-height: 1.15; }
.cta-band h2 span { color: var(--accent-light); }
.cta-band p { color: rgba(255,255,255,.65); margin-top: 8px; font-size: 15px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(110deg, var(--primary) 0%, var(--primary-mid) 60%, #1d5a96 100%);
  padding: 72px 0; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,.02) 20px, rgba(255,255,255,.02) 40px);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 5vw, 54px); font-weight: 800;
  color: white; line-height: 1.1; letter-spacing: -.5px;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--accent-light); }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); font-size: 13.5px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb i { font-size: 9px; }

/* ── NEWS CARDS ── */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.news-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--tr);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.news-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  overflow: hidden;
}
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-img img { transform: scale(1.04); }
.news-body { padding: 24px; }
.news-date { font-size: 12px; color: var(--text-light); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.news-body h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 10px; line-height: 1.4; }
.news-body p { font-size: 13.5px; color: var(--text-light); margin-bottom: 16px; }

/* ── FAQ ── */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  margin-bottom: 10px; overflow: hidden; transition: var(--tr);
}
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--primary);
  background: var(--white); transition: var(--tr); gap: 12px;
}
.faq-item.open .faq-q { color: var(--accent); }
.faq-q i { font-size: 13px; color: var(--accent); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 14.5px; color: var(--text-light); line-height: 1.8;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }

/* ── REFERENCE LOGOS ── */
.refs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
.ref-card {
  background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 16px;
  display: flex; align-items: center; justify-content: center;
  min-height: 90px; transition: var(--tr);
}
.ref-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.ref-card img { max-height: 40px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: var(--tr); }
.ref-card:hover img { filter: none; opacity: 1; }
.ref-card span { font-weight: 700; color: var(--text-light); font-size: 14px; text-align: center; }

/* ── CATALOG ── */
.catalog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.catalog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--tr);
}
.catalog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.catalog-cover {
  aspect-ratio: 3/4; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.catalog-cover img { width: 100%; height: 100%; object-fit: cover; }
.catalog-cover .ph { font-size: 64px; color: rgba(255,255,255,.2); }
.catalog-body { padding: 20px; }
.catalog-body h3 { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.catalog-body p { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }

/* ── FACILITY ── */
.facility-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.facility-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--tr);
}
.facility-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.facility-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.facility-img img { width: 100%; height: 100%; object-fit: cover; }
.facility-img .ph { font-size: 64px; color: rgba(255,255,255,.15); }
.facility-body { padding: 24px; }
.facility-body h3 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.facility-body p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.facility-meta { display: flex; flex-wrap: wrap; gap: 12px; }
.facility-meta span {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-mid); font-weight: 500;
}
.facility-meta i { color: var(--accent); }

/* ── ABOUT SPLIT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--accent); color: white;
  padding: 22px 26px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge-num { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; line-height: 1; }
.about-badge-lbl { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; opacity: .88; }
.about-list { margin: 24px 0; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--light); font-size: 14.5px; }
.about-list li:last-child { border: none; }
.about-list i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 50px; height: 50px; background: var(--primary); border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary); margin-bottom: 4px; font-weight: 700; }
.contact-item span, .contact-item a { color: var(--text-light); font-size: 14.5px; }
.contact-item a:hover { color: var(--accent); }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label.form-label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 6px;
}
.form-control {
  width: 100%; padding: 11px 15px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-family: 'Outfit', sans-serif; font-size: 14.5px;
  color: var(--text); background: var(--white);
  outline: none; transition: var(--tr);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(10,37,64,.07); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-help { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ── ALERTS ── */
.alert { padding: 13px 18px; border-radius: var(--radius); margin-bottom: 18px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── FOOTER ── */
.footer-top { background: var(--primary); color: rgba(255,255,255,.75); padding: 72px 0 56px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 52px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary-light), var(--accent)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; }
.footer-logo strong { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: white; letter-spacing: 1px; }
.footer-logo span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-light); display: block; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 20px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  padding: 4px 10px; border-radius: 2px;
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.footer-col h4 {
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: white;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13.5px; color: rgba(255,255,255,.55);
  transition: var(--tr); display: flex; align-items: center; gap: 7px;
}
.footer-col ul li a:hover { color: var(--accent-light); padding-left: 4px; }
.footer-col ul li a i { color: var(--accent); font-size: 11px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 13px; }
.footer-contact-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; font-size: 13px; }
.footer-contact-item a, .footer-contact-item span { font-size: 13.5px; color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-bottom {
  background: #050f1c; padding: 16px 0;
  font-size: 13px; color: rgba(255,255,255,.35);
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }

/* ── WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 800; transition: var(--tr);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }

/* ── MISC ── */
.tag { display: inline-block; background: var(--light); border: 1px solid var(--border); color: var(--text-mid); font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 2px; letter-spacing: .5px; }
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 0; bottom: -18px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 12px 20px 20px; border-top: 2px solid var(--accent); box-shadow: var(--shadow-lg); gap: 2px; }
  .nav.open { display: flex; }
  .nav-drop-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--off-white); margin: 4px 0; border-radius: var(--radius); }
  .header-inner { position: relative; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-slides, .hero { min-height: auto; }
  .hero-slides { height: 500px; }
  .hero-arrows { display: none; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
}
@media (max-width: 480px) {
  .hero-slides { height: 420px; }
  .hero-title { font-size: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
}
