/* ============================================================
   DEĞIŞKENLER
   ============================================================ */
:root {
  --espresso: #1a0a00;
  --roast:    #3d1c00;
  --caramel:  #c07d3a;
  --gold:     #d4a752;
  --cream:    #f5ede0;
  --milk:     #faf6f1;
  --white:    #ffffff;
  --text:     #2a1500;
  --muted:    #7a6050;
  --border:   rgba(0,0,0,.08);
  --shadow:   0 4px 24px rgba(26,10,0,.11);
  --shadow-lg:0 8px 40px rgba(26,10,0,.18);
  --sb-width: 272px;
  --topbar-h: 58px;
  --radius:   12px;
  --tr:       all .22s cubic-bezier(.4,0,.2,1);
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
}

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

/* ============================================================
   LAYOUT
   ============================================================ */
.layout  { display: flex; min-height: 100vh; }
.wrapper { flex: 1; margin-left: var(--sb-width); padding-top: var(--topbar-h); display: flex; flex-direction: column; min-height: 100vh; }
.content { flex: 1; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
  position: fixed; top: 0; left: 0;
  width: var(--sb-width); height: 100vh;
  background: var(--espresso);
  display: flex; flex-direction: column;
  z-index: 200; overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.sb-head {
  padding: 16px 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.sb-logo {
  display: flex; align-items: center; gap: 10px;
  color: inherit;
}
.sb-cup {
  width: 40px; height: 40px;
  background: var(--caramel); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.sb-name {
  display: block; font-family: var(--serif);
  font-size: .88rem; color: var(--gold); line-height: 1.25;
}
.sb-sub {
  display: block; font-size: .62rem;
  color: rgba(255,255,255,.3); margin-top: 2px;
}
.sb-tel {
  margin-top: 9px; font-size: .76rem;
  color: rgba(255,255,255,.5);
}
.sb-tel a { color: var(--caramel); font-weight: 600; }
.sb-tel a:hover { color: var(--gold); }

.sb-scroll { flex: 1; overflow-y: auto; padding: 8px 0 16px; }
.sb-scroll::-webkit-scrollbar { width: 3px; }
.sb-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 3px; }

.sb-nav { display: flex; flex-direction: column; }
.nl {
  padding: 10px 14px 3px;
  font-size: .6rem; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.25);
  font-weight: 600;
}
.nav-item {
  display: flex; align-items: center; gap: 9px;
  padding: 7px 14px; font-size: .82rem;
  color: rgba(255,255,255,.6);
  border-left: 3px solid transparent;
  transition: var(--tr);
}
.nav-item:hover { color: var(--cream); background: rgba(255,255,255,.05); border-left-color: var(--caramel); }
.nav-item.active { color: var(--gold); background: rgba(192,125,58,.1); border-left-color: var(--caramel); font-weight: 500; }
.nav-ico { width: 16px; text-align: center; font-size: .8rem; flex-shrink: 0; }

.sb-foot {
  padding: 10px 12px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.wa-btn {
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 9px 12px; border-radius: 9px;
  font-weight: 700; font-size: .79rem;
  transition: var(--tr);
}
.wa-btn:hover { background: #1da855; }

.overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 150;
  backdrop-filter: blur(3px);
}
.overlay.show { display: block; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: fixed; top: 0; left: var(--sb-width); right: 0;
  height: var(--topbar-h);
  background: var(--espresso);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.topbar-left { display: flex; align-items: center; gap: 10px; }
.ham-btn {
  display: none; flex-direction: column; gap: 5px;
  padding: 7px; border-radius: 7px;
}
.ham-btn span { display: block; width: 21px; height: 2px; background: var(--cream); border-radius: 2px; transition: var(--tr); }
.topbar-logo {
  display: none; align-items: center; gap: 7px;
  font-family: var(--serif); font-size: .88rem; color: var(--gold);
}
.topbar-tel {
  display: flex; align-items: center; gap: 7px;
  background: var(--caramel); color: var(--white);
  padding: 7px 14px; border-radius: 28px;
  font-weight: 600; font-size: .83rem; transition: var(--tr);
  white-space: nowrap; flex-shrink: 0;
}
.topbar-tel:hover { background: var(--gold); }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.bc-sep { color: rgba(255,255,255,.2); font-size: .75rem; }
.bc-link { font-size: .74rem; color: var(--gold); }
.bc-link:hover { color: var(--caramel); }
.bc-cur { font-size: .74rem; color: rgba(255,255,255,.4); }

/* ============================================================
   BUTONLAR
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: 9px;
  font-weight: 600; font-size: .87rem;
  border: 2px solid transparent;
  transition: var(--tr); cursor: pointer; font-family: inherit;
}
.btn-primary { background: var(--caramel); color: var(--white); border-color: var(--caramel); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--cream); border-color: rgba(255,255,255,.3); }
.btn-outline:hover { background: rgba(255,255,255,.07); border-color: var(--cream); }
.btn-dark { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.btn-dark:hover { background: var(--roast); transform: translateY(-1px); }
.btn-wa { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-wa:hover { background: #1da855; }
.btn-sm { padding: 7px 14px; font-size: .79rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--espresso) 0%, var(--roast) 55%, #5a2e0c 100%);
  padding: 56px 40px 48px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .12; pointer-events: none;
}
.hero-inner { position: relative; max-width: 720px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(212,167,82,.14);
  border: 1px solid rgba(212,167,82,.28);
  color: var(--gold); padding: 5px 13px; border-radius: 20px;
  font-size: .75rem; font-weight: 600; letter-spacing: .07em;
  margin-bottom: 14px; text-transform: uppercase;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.7rem);
  color: var(--white); line-height: 1.15; margin-bottom: 13px;
}
.hero h1 span { color: var(--gold); }
.hero-desc {
  color: rgba(255,255,255,.72); margin-bottom: 26px;
  font-size: .97rem; line-height: 1.72; max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.stat-item {
  padding: 16px 14px; text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block; font-family: var(--serif);
  font-size: 1.5rem; color: var(--caramel); line-height: 1;
}
.stat-label { font-size: .71rem; color: var(--muted); margin-top: 4px; }

/* ============================================================
   SECTION
   ============================================================ */
.section { padding: 48px 40px; }
.section-alt { background: var(--white); border-top: 1px solid var(--border); }
.section-sm { padding: 30px 40px; }
.section-title {
  font-family: var(--serif); font-size: 1.9rem;
  color: var(--espresso); margin-bottom: 7px; line-height: 1.2;
}
.section-sub {
  color: var(--muted); font-size: .95rem;
  margin-bottom: 28px; max-width: 560px; line-height: 1.65;
}
.divider {
  width: 46px; height: 3px; background: var(--caramel);
  border-radius: 3px; margin: 10px 0 26px;
}

/* ============================================================
   PHOTO + TEXT
   ============================================================ */
.photo-text {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: center;
}
.photo-text.reverse { direction: rtl; }
.photo-text.reverse > * { direction: ltr; }
.photo-text img {
  border-radius: var(--radius); width: 100%;
  height: 310px; object-fit: cover; box-shadow: var(--shadow-lg);
}
.pt-content h2 {
  font-family: var(--serif); font-size: 1.6rem;
  color: var(--espresso); margin-bottom: 10px;
}
.pt-content p { color: var(--muted); font-size: .91rem; line-height: 1.75; margin-bottom: 10px; }

/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.check-item { display: flex; align-items: flex-start; gap: 9px; }
.check-ico { color: var(--caramel); font-size: .88rem; margin-top: 2px; flex-shrink: 0; }
.check-title { font-weight: 600; color: var(--espresso); display: block; margin-bottom: 1px; font-size: .87rem; }
.check-desc { font-size: .82rem; color: var(--muted); }

/* ============================================================
   RICH TEXT
   ============================================================ */
.rich-text { max-width: 800px; }
.rich-text h2 { font-family: var(--serif); font-size: 1.4rem; color: var(--espresso); margin: 26px 0 9px; }
.rich-text h2:first-child { margin-top: 0; }
.rich-text h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--roast); margin: 18px 0 7px; }
.rich-text p { font-size: .93rem; color: var(--muted); line-height: 1.78; margin-bottom: 12px; }
.rich-text ul { margin-bottom: 12px; }
.rich-text ul li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: .9rem; color: var(--muted); margin-bottom: 6px; line-height: 1.55;
}
.rich-text ul li::before { content: "✔"; color: var(--caramel); font-size: .82rem; margin-top: 2px; flex-shrink: 0; }

/* ============================================================
   MARKA KARTLARI
   ============================================================ */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px,1fr)); gap: 14px; }
.brand-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: var(--tr); display: block;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.brand-card:hover { border-color: var(--caramel); box-shadow: var(--shadow); transform: translateY(-3px); }
.brand-card-img { height: 140px; width: 100%; object-fit: cover; }
.brand-card-body { padding: 12px 14px 14px; }
.brand-card-name { font-family: var(--serif); font-size: .97rem; color: var(--espresso); margin-bottom: 2px; }
.brand-card-sub { font-size: .71rem; color: var(--muted); margin-bottom: 8px; }
.brand-card-arrow { font-size: .74rem; color: var(--caramel); font-weight: 600; }

/* ============================================================
   İLÇE GRIDI
   ============================================================ */
.district-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(135px,1fr)); gap: 8px; }
.district-card {
  display: flex; align-items: center; gap: 7px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 9px; padding: 9px 11px;
  font-size: .82rem; color: var(--text);
  transition: var(--tr); font-weight: 500;
}
.district-card:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); transform: scale(1.02); }

/* ============================================================
   HİZMET KARTLARI
   ============================================================ */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(235px,1fr)); gap: 14px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 0 0 18px; border: 1px solid var(--border);
  transition: var(--tr); overflow: hidden;
}
.service-card:hover { border-color: var(--caramel); box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card-img { width: 100%; height: 145px; object-fit: cover; }
.service-card-body { padding: 14px 16px 0; }
.service-card-icon { font-size: 1.5rem; margin-bottom: 8px; }
.service-card-name { font-weight: 700; font-size: .91rem; color: var(--espresso); margin-bottom: 5px; }
.service-card-desc { font-size: .8rem; color: var(--muted); line-height: 1.55; }

/* ============================================================
   BLOG KARTLARI
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 18px; }
.blog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: var(--tr);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--caramel); }
.blog-card-img { height: 185px; object-fit: cover; width: 100%; }
.blog-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: .71rem; color: var(--muted); margin-bottom: 5px; }
.blog-title { font-family: var(--serif); font-size: 1rem; color: var(--espresso); margin-bottom: 7px; line-height: 1.3; }
.blog-excerpt { font-size: .79rem; color: var(--muted); line-height: 1.5; flex: 1; }
.blog-read { display: inline-flex; align-items: center; gap: 4px; margin-top: 10px; font-size: .76rem; color: var(--caramel); font-weight: 600; }

/* Blog Detay */
.blog-detail { display: grid; grid-template-columns: 1fr 280px; gap: 30px; align-items: start; }
.blog-sidebar-box { background: var(--white); border-radius: var(--radius); padding: 18px; border: 1px solid var(--border); margin-bottom: 14px; }
.blog-sidebar-box h4 { font-family: var(--serif); margin-bottom: 12px; color: var(--espresso); }
.blog-related-item { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 12px; }
.blog-related-item img { width: 56px; height: 44px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.blog-related-item span { font-size: .79rem; color: var(--espresso); line-height: 1.3; font-weight: 500; }
.blog-cta-box { background: var(--espresso); border-radius: var(--radius); padding: 18px; text-align: center; }
.blog-cta-box p { font-family: var(--serif); color: var(--gold); margin-bottom: 10px; }

/* ============================================================
   BİLGİ KARTLARI (iletişim)
   ============================================================ */
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 13px; margin-bottom: 28px; }
.info-card { background: var(--white); border-radius: var(--radius); padding: 16px; border: 1px solid var(--border); display: flex; align-items: flex-start; gap: 12px; }
.info-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--espresso), var(--roast));
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; font-size: .95rem; flex-shrink: 0; color: var(--gold);
}
.info-label { font-size: .7rem; color: var(--muted); }
.info-value { font-weight: 600; font-size: .85rem; color: var(--text); line-height: 1.35; }

/* Form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.form-box { background: var(--white); border-radius: var(--radius); padding: 26px; border: 1px solid var(--border); }
.form-box h3 { font-family: var(--serif); font-size: 1.18rem; color: var(--espresso); margin-bottom: 18px; }
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: .79rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid rgba(0,0,0,.1); border-radius: 8px;
  font-family: inherit; font-size: .87rem; color: var(--text);
  background: var(--milk); transition: var(--tr); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--caramel); background: var(--white);
  box-shadow: 0 0 0 3px rgba(192,125,58,.1);
}
.form-textarea { resize: vertical; min-height: 105px; }
.form-submit {
  width: 100%; padding: 11px; background: var(--caramel); color: var(--white);
  border-radius: 9px; font-weight: 700; font-size: .9rem;
  border: none; cursor: pointer; font-family: inherit; transition: var(--tr);
}
.form-submit:hover { background: var(--espresso); }
.form-success {
  background: #e8f5e9; border: 1px solid #c8e6c9;
  border-radius: 9px; padding: 13px; margin-bottom: 14px;
  color: #2e7d32; font-size: .87rem;
}
.map-col { display: flex; flex-direction: column; gap: 14px; }
.map-embed { border-radius: var(--radius); overflow: hidden; flex: 1; min-height: 220px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 220px; border: none; display: block; }

/* ============================================================
   HAKKIMIZDA
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.about-grid img { border-radius: var(--radius); width: 100%; height: 310px; object-fit: cover; box-shadow: var(--shadow-lg); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 750px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 17px; cursor: pointer;
  font-weight: 600; font-size: .88rem; color: var(--espresso);
  user-select: none;
}
.faq-arrow { color: var(--caramel); font-size: .78rem; transition: transform .22s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none; padding: 0 17px 14px;
  font-size: .86rem; color: var(--muted); line-height: 1.65;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--espresso), var(--roast));
  padding: 48px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .08; pointer-events: none;
}
.cta-banner h2 { font-family: var(--serif); font-size: 1.75rem; color: var(--white); margin-bottom: 9px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 22px; position: relative; }
.cta-banner-btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; position: relative; }

/* ============================================================
   POLİTİKA SAYFASI
   ============================================================ */
.policy-box {
  background: var(--white); border-radius: var(--radius);
  padding: 30px; border: 1px solid var(--border); max-width: 820px;
}
.policy-box h2 { font-family: var(--serif); font-size: 1.2rem; color: var(--espresso); margin: 20px 0 8px; }
.policy-box h2:first-child { margin-top: 0; }
.policy-box p { font-size: .87rem; color: var(--muted); line-height: 1.72; margin-bottom: 8px; }
.policy-box ul { padding-left: 18px; margin-bottom: 8px; }
.policy-box ul li { font-size: .87rem; color: var(--muted); margin-bottom: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--espresso); color: rgba(255,255,255,.5); padding: 36px 40px 18px; }
.ft-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; margin-bottom: 26px; }
.ft-logo { font-family: var(--serif); font-size: 1.05rem; color: var(--gold); margin-bottom: 8px; }
.ft-brand p { font-size: .78rem; line-height: 1.6; margin-bottom: 11px; }
.ft-adr { font-size: .74rem; display: flex; gap: 5px; align-items: flex-start; }
.ft-col h4 { color: var(--cream); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 11px; }
.ft-col ul li { margin-bottom: 5px; }
.ft-col ul li a { font-size: .77rem; color: rgba(255,255,255,.45); transition: var(--tr); }
.ft-col ul li a:hover { color: var(--gold); }
.ft-hours { font-size: .75rem; color: rgba(255,255,255,.35); }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 14px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 6px; font-size: .71rem;
}
.ft-bottom a { color: var(--gold); }

/* ============================================================
   FLOAT BUTONLAR
   ============================================================ */
.wa-float {
  position: fixed; bottom: 20px; right: 20px;
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  padding: 9px 16px; border-radius: 28px;
  font-weight: 700; font-size: .82rem; z-index: 89;
  box-shadow: 0 4px 16px rgba(37,211,102,.4); transition: var(--tr);
}
.wa-float:hover { background: #1da855; transform: scale(1.04); }
.btt-btn {
  position: fixed; bottom: 74px; right: 20px;
  width: 40px; height: 40px; background: var(--caramel); color: var(--white);
  border-radius: 50%; display: none; align-items: center; justify-content: center;
  font-size: .95rem; z-index: 88; box-shadow: var(--shadow); transition: var(--tr);
}
.btt-btn:hover { background: var(--espresso); transform: translateY(-2px); }
.btt-btn.show { display: flex; }

/* ============================================================
   ANİMASYON
   ============================================================ */
.fade-in { animation: fadeUp .3s ease both; }
@keyframes fadeUp { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ============================================================
   RESPONSİVE
   ============================================================ */
@media (max-width: 960px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .wrapper { margin-left: 0; }
  .topbar { left: 0; }
  .ham-btn { display: flex; }
  .topbar-logo { display: flex; }
  .breadcrumb { display: none; }
  .about-grid, .contact-grid, .photo-text { grid-template-columns: 1fr; }
  .photo-text.reverse { direction: ltr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .blog-detail { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section, .cta-banner, .footer { padding: 28px 16px; }
  .hero { padding: 34px 16px 28px; }
  .section-sm { padding: 20px 16px; }
  .ft-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2,1fr); }
  .district-grid { grid-template-columns: repeat(2,1fr); }
  .form-box, .policy-box { padding: 18px 14px; }
  .blog-detail { grid-template-columns: 1fr; }
}
