/* =========================================================
   POLAT SU TESİSATI — style.css
   Tasarım dili: mühendislik şeması / boru hattı estetiği
   ========================================================= */

:root{
  --navy: #0B2540;
  --navy-2: #123456;
  --steel: #1E5C82;
  --steel-light: #4C86A8;
  --copper: #B5652D;
  --copper-light: #D68A4C;
  --ice: #EAF2F6;
  --paper: #F6F9FB;
  --ink: #13232F;
  --slate: #56697A;
  --line: #D9E3E9;
  --success: #2E7D53;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "Roboto Mono", monospace;

  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 10px 30px rgba(11,37,64,0.12);
  --shadow-sm: 0 4px 14px rgba(11,37,64,0.08);
  --container: 1180px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--navy);
}
p{ margin: 0 0 1em; color: var(--slate); }
.container{ max-width: var(--container); margin:0 auto; padding: 0 24px; }
section{ padding: 88px 0; }
.section-tight{ padding: 56px 0; }

/* Görünürlük yardımcıları */
.visually-hidden{
  position:absolute!important; width:1px;height:1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap;
}
:focus-visible{ outline: 3px solid var(--copper); outline-offset: 3px; }

/* ---------- Eyebrow / etiket ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--copper); font-weight: 700; margin-bottom: 14px;
}
.eyebrow::before{
  content:""; width: 22px; height: 2px; background: var(--copper);
  display:inline-block;
}

/* ---------- Üst bilgi çubuğu ---------- */
.topbar{
  background: var(--navy);
  color: var(--ice);
  font-family: var(--font-mono);
  font-size: 13px;
}
.topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:8px; padding-bottom:8px; gap: 16px; flex-wrap: wrap;
}
.topbar-item{ display:flex; align-items:center; gap:8px; color: var(--ice); opacity:.9; }
.topbar-item strong{ color: var(--copper-light); font-weight:700; }
.topbar a:hover{ color: var(--copper-light); }
.topbar-regions{ opacity:.75; }

/* ---------- Header / Navigasyon ---------- */
.site-header{
  position: sticky; top:0; z-index: 500;
  background: rgba(246,249,251,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  padding-top: 14px; padding-bottom:14px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ width:46px; height:46px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.15; }
.brand-name{
  font-family: var(--font-display); font-weight:800; font-size: 22px;
  color: var(--navy); letter-spacing:.3px;
}
.brand-tag{
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--copper);
}

.nav-actions{ display:flex; align-items:center; gap:10px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-body); font-weight:700; font-size: 14.5px;
  padding: 12px 20px; border-radius: 999px; border:2px solid transparent;
  cursor:pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-copper{ background: var(--copper); color: #fff; box-shadow: var(--shadow-sm); }
.btn-copper:hover{ background: var(--copper-light); }
.btn-outline{ background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover{ background: var(--navy); color: #fff; }
.btn-outline.btn-white{ border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-outline.btn-white:hover{ background: #fff; color: var(--navy); }
.btn-ghost{ background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--copper); color: var(--copper); }
.btn-block{ width:100%; }
.btn-sm{ padding: 9px 16px; font-size: 13px; }

/* Hamburger */
.hamburger{
  width: 48px; height:48px; border-radius: 12px;
  border:1px solid var(--line); background:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.hamburger span{
  position:relative; width:22px; height:2px; background: var(--navy);
  display:block; transition: all .25s ease;
}
.hamburger span::before, .hamburger span::after{
  content:""; position:absolute; left:0; width:22px; height:2px; background: var(--navy);
  transition: all .25s ease;
}
.hamburger span::before{ top:-7px; }
.hamburger span::after{ top:7px; }
.hamburger[aria-expanded="true"] span{ background: transparent; }
.hamburger[aria-expanded="true"] span::before{ transform: rotate(45deg) translate(5px,5px); }
.hamburger[aria-expanded="true"] span::after{ transform: rotate(-45deg) translate(5px,-5px); }

/* Sağ üst açılır menü */
.mega-menu{
  position: fixed; top:0; right:0; height:100%;
  width: min(380px, 92vw);
  background: var(--navy);
  color: var(--ice);
  z-index: 900;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  display:flex; flex-direction:column;
  box-shadow: -20px 0 50px rgba(0,0,0,0.25);
}
.mega-menu.open{ transform: translateX(0); }
.mega-menu-head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mega-menu-head .brand-name{ color: var(--ice); }
.menu-close{
  width:40px; height:40px; border-radius: 10px; border:1px solid rgba(255,255,255,0.25);
  background:transparent; color:var(--ice); cursor:pointer; font-size:20px; line-height:1;
}
.mega-menu nav{ padding: 18px 10px; overflow-y:auto; }
.mega-menu nav a{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 14px; font-family: var(--font-display); font-size: 22px;
  font-weight:700; color: var(--ice); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mega-menu nav a small{
  font-family: var(--font-mono); font-size: 11px; color: var(--copper-light);
  font-weight: 400; letter-spacing: 1px;
}
.mega-menu nav a:hover{ color: var(--copper-light); padding-left: 20px; }
.mega-menu-foot{
  margin-top:auto; padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-mono); font-size: 13px;
}
.mega-menu-foot a{ display:block; margin-top:10px; color: var(--copper-light); }
.menu-overlay{
  position: fixed; inset:0; background: rgba(11,37,64,0.55);
  z-index: 850; opacity:0; pointer-events:none; transition: opacity .3s ease;
}
.menu-overlay.open{ opacity:1; pointer-events:auto; }

/* ---------- HERO ---------- */
.hero{
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--ice);
  overflow:hidden;
}
.hero .container{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items:center;
  padding-top: 76px; padding-bottom: 76px;
}
.hero-eyebrow{
  font-family: var(--font-mono); font-size:13px; letter-spacing:2px;
  text-transform:uppercase; color: var(--copper-light); font-weight:700;
  display:flex; align-items:center; gap:10px; margin-bottom:18px;
}
.hero-eyebrow::before{ content:"●"; color: var(--success); font-size:10px; }
.hero h1{
  color:#fff; font-size: clamp(38px, 5vw, 62px); margin-bottom: 20px;
}
.hero h1 span{ color: var(--copper-light); }
.hero p.lead{
  color: rgba(234,242,246,0.85); font-size: 18px; max-width: 46ch; margin-bottom: 30px;
}
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 34px; }
.hero-stats{ display:flex; gap:28px; flex-wrap:wrap; }
.hero-stat b{
  display:block; font-family: var(--font-display); font-size: 30px; color:#fff;
}
.hero-stat span{
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing:1px;
  text-transform:uppercase; color: rgba(234,242,246,0.65);
}
.hero-art{ position:relative; }
.hero-art img{
  width:100%; border-radius: var(--radius-lg);
  aspect-ratio: 16/10; object-fit: cover;
}
.hero-badge{
  position:absolute; bottom: 18px; left: 18px;
  background: var(--copper); color:#fff;
  padding: 14px 18px; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 12px; box-shadow: var(--shadow);
  max-width: 240px; line-height: 1.5;
}

/* Pipe divider (imza öge) */
.pipe-divider{
  height: 34px; width:100%;
  background-repeat: repeat-x;
  background-size: 68px 34px;
  background-image: linear-gradient(var(--line) 2px, transparent 2px),
    radial-gradient(circle at 34px 17px, var(--copper) 4px, transparent 4.5px);
  background-position: center;
  opacity: .9;
}
.pipe-divider.on-dark{
  background-image: linear-gradient(rgba(255,255,255,.18) 2px, transparent 2px),
    radial-gradient(circle at 34px 17px, var(--copper-light) 4px, transparent 4.5px);
}

/* ---------- Section headings ---------- */
.section-head{ max-width: 680px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 40px); }
.section-head p{ font-size: 16.5px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Hizmet kartları ---------- */
.services-grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.service-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow); }
.service-media{ position:relative; aspect-ratio: 16/10; overflow:hidden; background: var(--navy); }
.service-media img{ width:100%; height:100%; object-fit:cover; }
.service-num{
  position:absolute; top:12px; left:12px;
  font-family: var(--font-mono); font-size:11px; letter-spacing:1px;
  background: rgba(11,37,64,0.75); color: var(--copper-light);
  padding: 5px 10px; border-radius: 999px;
}
.service-body{ padding: 22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.service-body h3{ font-size: 23px; }
.service-body p{ font-size: 14.8px; margin-bottom: 6px; }
.service-foot{
  margin-top:auto; display:flex; align-items:center; justify-content:space-between;
  padding-top: 10px; border-top: 1px dashed var(--line);
}
.info-btn{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--ice); color: var(--steel); border:1px solid var(--line);
  border-radius: 999px; padding: 8px 14px; font-size: 13.5px; font-weight:700;
  cursor:pointer; font-family: var(--font-body);
}
.info-btn:hover{ background: var(--steel); color:#fff; border-color: var(--steel); }
.info-btn .ico{
  width:20px; height:20px; border-radius:50%; background: var(--steel);
  color:#fff; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:800;
}
.info-btn:hover .ico{ background:#fff; color: var(--steel); }
.service-call{ font-family: var(--font-mono); font-size: 12.5px; color: var(--copper); font-weight:700; }

/* ---------- Modal ---------- */
.modal-overlay{
  position: fixed; inset:0; background: rgba(11,37,64,0.62);
  display:flex; align-items:center; justify-content:center; padding: 24px;
  z-index: 1000; opacity:0; pointer-events:none; transition: opacity .25s ease;
}
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal{
  background:#fff; border-radius: var(--radius-lg); max-width: 620px; width:100%;
  max-height: 84vh; overflow-y:auto; box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  transform: translateY(18px) scale(.98); transition: transform .25s ease;
}
.modal-overlay.open .modal{ transform: translateY(0) scale(1); }
.modal-head{
  display:flex; align-items:flex-start; justify-content:space-between; gap: 16px;
  padding: 26px 26px 0;
}
.modal-head h3{ font-size: 27px; margin-bottom:4px; }
.modal-head .eyebrow{ margin-bottom:0; }
.modal-close{
  width:36px; height:36px; border-radius:50%; border:1px solid var(--line);
  background: var(--ice); cursor:pointer; font-size:18px; flex-shrink:0;
}
.modal-body{ padding: 18px 26px 28px; }
.modal-body p{ font-size: 15px; }
.modal-body ul{ margin: 14px 0; display:flex; flex-direction:column; gap:10px; }
.modal-body ul li{
  display:flex; gap:10px; align-items:flex-start; font-size: 14.5px; color: var(--ink);
}
.modal-body ul li::before{ content:"✓"; color: var(--success); font-weight:800; }
.modal-actions{ display:flex; gap:12px; margin-top: 20px; flex-wrap:wrap; }

/* ---------- Bölgeler ---------- */
.regions{
  background: var(--navy); color: var(--ice); position:relative;
}
.regions .section-head h2{ color:#fff; }
.regions .section-head p{ color: rgba(234,242,246,0.75); }
.region-grid{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.region-chip{
  background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); padding: 16px 16px;
  display:flex; flex-direction:column; gap: 4px;
  transition: background .2s ease, border-color .2s ease;
}
.region-chip:hover{ background: rgba(181,101,45,0.16); border-color: var(--copper); }
.region-chip .rc-num{ font-family: var(--font-mono); font-size: 11px; color: var(--copper-light); }
.region-chip .rc-name{ font-family: var(--font-display); font-size: 20px; font-weight:700; color:#fff; }

/* ---------- Neden biz / özellikler ---------- */
.features{ display:grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 26px; }
.feature{ padding: 8px 4px; }
.feature .f-num{
  font-family: var(--font-mono); color: var(--copper); font-size:13px; letter-spacing:1px;
  margin-bottom:10px; display:block;
}
.feature h3{ font-size:21px; }
.feature p{ font-size: 14.8px; }

/* ---------- İletişim / form ---------- */
.contact-wrap{
  display:grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items:flex-start;
}
.contact-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.form-row{ margin-bottom:16px; display:flex; flex-direction:column; gap:6px; }
.form-row label{ font-size:13px; font-weight:700; color: var(--navy); }
.form-row input, .form-row select, .form-row textarea{
  border:1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  font-family: var(--font-body); font-size: 15px; background: var(--paper); color: var(--ink);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline: 2px solid var(--steel); background:#fff;
}
.form-two{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
.form-note{ font-size:12.5px; color: var(--slate); margin-top: 10px; }
.form-success, .form-error{
  display:none; padding: 12px 14px; border-radius: 10px; font-size: 14px; margin-bottom: 14px;
}
.form-success{ background:#E7F4EC; color: var(--success); border:1px solid #BFE3CC; }
.form-error{ background:#FBEAEA; color:#B23A3A; border:1px solid #F1C6C6; }
.form-success.show, .form-error.show{ display:block; }

.contact-info{ display:flex; flex-direction:column; gap: 20px; }
.info-block{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 24px; display:flex; gap:16px; align-items:flex-start;
}
.info-block .ico{
  width:44px; height:44px; border-radius: 12px; background: var(--ice); color: var(--steel);
  display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0;
}
.info-block h4{ font-size:16.5px; margin-bottom:4px; }
.info-block p{ font-size: 14.5px; margin:0; }
.map-frame{
  border:0; width:100%; height: 320px; border-radius: var(--radius-lg);
  border:1px solid var(--line);
}

/* ---------- Blog / Galeri ortak ---------- */
.page-hero{
  background: var(--navy); color: var(--ice); padding: 64px 0 54px;
  position:relative;
}
.page-hero h1{ color:#fff; font-size: clamp(34px,4.6vw,52px); margin-bottom:12px; }
.page-hero p{ color: rgba(234,242,246,0.8); max-width:60ch; font-size:16.5px; }
.breadcrumb{
  font-family: var(--font-mono); font-size:12.5px; color: var(--copper-light);
  margin-bottom: 16px; letter-spacing:.5px;
}
.breadcrumb a{ color: rgba(234,242,246,0.7); }
.breadcrumb a:hover{ color:#fff; }

.blog-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 26px; }
.blog-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column;
}
.blog-card .bc-head{
  padding: 20px 22px 0; display:flex; align-items:center; justify-content:space-between;
}
.blog-tag{
  font-family: var(--font-mono); font-size:11px; letter-spacing:1px; text-transform:uppercase;
  color: var(--copper); background: #FBEFE6; padding: 5px 10px; border-radius:999px;
}
.blog-card h3{ padding: 12px 22px 0; font-size: 22px; }
.blog-excerpt{ padding: 6px 22px 0; font-size:14.5px; }
.blog-card .bc-body{ padding: 6px 22px 22px; font-size:14.3px; }
.blog-card .bc-body p{ margin-bottom: 10px; }
.blog-toggle{
  margin: 6px 22px 22px; align-self:flex-start;
}
.bc-more{ display:none; }
.bc-more.open{ display:block; }

/* ---------- Galeri Video Grid ---------- */
.gallery-grid{
  display:grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px;
}
.gallery-item{
  border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line);
  cursor: pointer; position:relative; background: var(--navy);
  aspect-ratio: 16/10;
}
.gallery-item video{
  width:100%; height:100%; object-fit:cover; display:block;
}
.gallery-item .play-btn{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background: rgba(11,37,64,0.35); transition: background .25s ease;
  pointer-events: none;
}
.gallery-item:hover .play-btn{ background: rgba(11,37,64,0.15); }
.play-icon{
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--copper);
  display:flex; align-items:center; justify-content:center;
  font-size: 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform .2s ease;
}
.gallery-item:hover .play-icon{ transform: scale(1.08); }
.gallery-cap{
  position:absolute; left:0; right:0; bottom:0; padding: 14px 16px;
  background: linear-gradient(0deg, rgba(11,37,64,0.92), transparent);
  color:#fff;
}
.gallery-cap h4{
  color:#fff; font-size: 18px; margin-bottom: 4px;
}
.gallery-cap p{
  color: rgba(234,242,246,0.8); font-size: 13px; margin:0;
}

/* Lightbox Video */
.lightbox{
  position:fixed; inset:0; background: rgba(11,37,64,0.95); z-index:1100;
  display:flex; align-items:center; justify-content:center; padding: 30px;
  opacity:0; pointer-events:none; transition: opacity .25s ease;
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox video{
  max-width: min(960px, 92vw); max-height: 84vh; border-radius: var(--radius);
  width:100%; background:#000;
}
.lightbox-close{
  position:absolute; top: 24px; right: 30px; width:44px; height:44px; border-radius:50%;
  background: rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.3); color:#fff;
  font-size:20px; cursor:pointer; z-index: 10;
}

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy-2); color: rgba(234,242,246,0.82); padding-top: 60px; }
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px;
}
.footer-grid h4{ color:#fff; font-size:17px; margin-bottom:14px; }
.footer-grid p, .footer-grid a{ font-size: 14px; color: rgba(234,242,246,0.75); }
.footer-grid ul li{ margin-bottom:9px; }
.footer-grid a:hover{ color: var(--copper-light); }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-brand img{ width:38px; }
.footer-brand span{ font-family: var(--font-display); font-size:21px; font-weight:800; color:#fff; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0 26px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size: 12.5px; font-family: var(--font-mono); color: rgba(234,242,246,0.55);
}

/* ---------- Gizlilik Sayfası ---------- */
.privacy-content{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.privacy-content h2{
  font-size: 26px; margin-top: 36px; margin-bottom: 14px;
  border-bottom: 2px solid var(--line); padding-bottom: 10px;
}
.privacy-content h2:first-child{ margin-top: 0; }
.privacy-content p, .privacy-content li{
  font-size: 15px; color: var(--slate); line-height: 1.7;
}
.privacy-content ul{ list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.privacy-content ul li{ margin-bottom: 8px; }
.privacy-content strong{ color: var(--navy); }

/* ---------- Yüzen butonlar ---------- */
.float-actions{
  position: fixed; right: 20px; bottom: 20px; z-index: 700;
  display:flex; flex-direction:column; gap: 12px;
}
.fab{
  width: 58px; height:58px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:#fff; font-size: 26px; box-shadow: 0 10px 24px rgba(11,37,64,0.35);
  border: none; cursor:pointer;
}
.fab-whatsapp{ background:#25D366; }
.fab-call{ background: var(--copper); }
.fab:hover{ filter: brightness(1.08); }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-art{ order:-1; }
  .hero-badge{ position: relative; bottom: auto; left: auto; margin-top: -30px; margin-left: 12px; max-width: none; }
  .contact-wrap{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}
@media (max-width: 640px){
  section{ padding: 60px 0; }
  .topbar-regions{ display:none; }
  .form-two{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .hero-stats{ gap:20px; }
  .hero-badge{ font-size: 11px; padding: 10px 14px; }
  .privacy-content{ padding: 24px; }
  .gallery-grid{ grid-template-columns: 1fr; }
}