/* main.css — Sevilay Ankay Akademi Ana Sayfa Özel Stilleri */

:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE7DA;
  --card: #C9B99A;
  --card-light: #DDD0BC;
  --forest: #2D4A3E;
  --forest-deep: #2D4A3E;
  --sage: #4A7A65;
  --sage-light: #C5D9CF;
  --rose: #C9B99A;
  --rose-light: #E0D5C5;
  --gold: #A8873A;
  --gold-soft: #C9AC6A;
  --gold-dark: #7A611A;
  --ink: #1C1C1C;
  --ink-soft: #1C1C1C;
  --line: rgba(168, 135, 58, 0.2);
}

@font-face {
  font-family: 'Poppins';
  src: local('Arial');
  font-style: normal;
  font-weight: 400 600;
  size-adjust: 104%;
  font-display: swap;
}
@font-face {
  font-family: 'Corinthia';
  src: local('Brush Script MT'), local('cursive');
  size-adjust: 78%;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: local('Helvetica Neue'), local('Arial');
  size-adjust: 100%;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  padding-top: 132px;
}
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.eyebrow { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem; color: var(--gold); font-weight: 600; }
.sig { font-family: 'Corinthia', cursive; font-weight: 400; }

/* NAV */
header.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(246, 242, 233, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo .logo-img { height: 100px; width: auto; display: block; }
nav.links { display: flex; gap: 30px; align-items: center; }
nav.links a { font-size: 0.84rem; text-decoration: none; color: var(--ink-soft); position: relative; padding-bottom: 3px; transition: color .25s; }
nav.links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
nav.links a:hover { color: var(--forest-deep); }
nav.links a:hover::after { width: 100%; }

.nav-cta { font-size: 0.79rem; font-weight: 600; padding: 9px 18px; border-radius: 20px; background: var(--forest-deep); color: var(--bg); text-decoration: none; transition: background .25s; }
.nav-cta:hover { background: var(--rose); }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.98;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(245, 240, 238, 0.55) 0%, rgba(245, 240, 238, 0.28) 55%, rgba(245, 240, 238, 0.02) 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 12px; display: block; }
.hero-sig-wrap { margin-bottom: 10px; }
.hero-sig-h1 {
  font-family: 'Corinthia', cursive;
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: 0.95;
  color: var(--forest-deep);
  font-weight: 700;
}
.sig-underline {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  margin-top: 4px;
}
.hero-role {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 620px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-primary {
  display: inline-block;
  padding: 12px 28px;
  background: var(--forest-deep);
  color: var(--bg);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background .25s, transform .2s;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.scroll-ind {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  opacity: 0.6;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-ind .line {
  width: 1px;
  height: 24px;
  background: var(--ink-soft);
}

/* SECTIONS COMMON */
section { padding: 90px 0; }
.section-head { max-width: 680px; margin-bottom: 50px; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.25; margin-top: 6px; color: var(--forest-deep); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
.about-photo-wrap { position: relative; }
.about-photo {
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.15);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: var(--forest-deep);
  color: var(--bg);
  border-radius: 50%;
  width: 105px;
  height: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 5;
}
.about-badge strong { font-family: 'Poppins', sans-serif; font-size: 1.5rem; color: var(--gold-soft); line-height: 1; }
.about-badge span { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.05em; margin-top: 3px; }
.about-name-sig { font-family: 'Corinthia', cursive; font-size: 3.2rem; color: var(--forest-deep); line-height: 1.1; margin-top: 4px; display: block; }
.about-text p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.75; margin-bottom: 20px; }

/* ACCORDION */
.about-accordion { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
}
.acc-num { font-family: 'Poppins', sans-serif; color: var(--gold-dark); font-size: 0.85rem; font-weight: 700; }
.acc-label { flex: 1; font-size: 0.95rem; font-weight: 600; color: var(--forest-deep); }
.acc-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform .25s;
}
.acc-trigger[aria-expanded="true"] .acc-icon { transform: rotate(45deg); background: var(--forest-deep); color: var(--bg); }
.acc-body { display: none; padding: 0 20px 20px 52px; }
.acc-body.open { display: block; animation: fadeUp 0.3s ease; }
.acc-body p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 12px; line-height: 1.7; }
.qsm-highlight {
  background: var(--card-light);
  border-left: 4px solid var(--gold);
  padding: 18px;
  border-radius: 4px;
  margin-top: 16px;
}
.qsm-highlight h3 { color: var(--forest-deep); font-size: 0.98rem; margin-bottom: 8px; }

/* BLOG */
.blog { background: var(--bg-alt); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); }
.blog-card .bc-top { padding: 22px 20px 14px; }
.blog-card .bc-num { font-family: 'Poppins', sans-serif; font-size: 0.75rem; color: var(--gold-dark); font-weight: 700; }
.blog-card h3 { font-size: 1.05rem; line-height: 1.4; margin: 8px 0 10px; color: var(--forest-deep); }
.blog-card .bc-excerpt { font-size: 0.88rem; color: var(--ink-soft); opacity: 0.85; }
.blog-card .bc-foot {
  margin-top: auto;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--forest-deep);
}
.bc-foot .plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SERVICES */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.svc-card {
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.svc-num { font-family: 'Poppins', sans-serif; color: var(--gold-dark); font-size: 0.8rem; font-weight: 700; }
.svc-card h3 { font-size: 0.98rem; font-weight: 600; line-height: 1.4; color: var(--forest-deep); margin: 10px 0 16px; flex: 1; }
.svc-links { display: flex; gap: 14px; margin-top: auto; }
.svc-link { font-size: 0.78rem; font-weight: 600; color: var(--gold-dark); border-bottom: 1px solid transparent; }
.svc-link:hover { border-color: var(--gold-dark); }

/* STATS */
.stats { background: var(--forest-deep); color: var(--bg); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; margin-bottom: 40px; }
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.stat-label { font-size: 0.9rem; color: rgba(246, 242, 233, 0.85); }
.stats-sig { text-align: center; font-family: 'Corinthia', cursive; font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--gold-soft); margin-bottom: 12px; }
.stats-quote { max-width: 680px; margin: 0 auto; text-align: center; font-family: 'Poppins', sans-serif; font-style: italic; font-weight: 300; font-size: 1.1rem; line-height: 1.7; }

/* TESTIMONIALS */
.testi { background: var(--bg-alt); overflow: hidden; padding: 90px 0; }
.testi-track { display: flex; gap: 20px; animation: scrollX 35s linear infinite; width: max-content; }
.testi:hover .testi-track { animation-play-state: paused; }
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testi-card {
  flex: 0 0 320px;
  background: var(--card-light);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
}
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 10px; }
.testi-card p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.6; }
.testi-name { font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: var(--forest-deep); font-weight: 600; }

/* KÖŞE YAZILARI */
.kose { background: var(--bg); }
.kose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.kose-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-decoration: none;
}
.kose-card .kc-top { padding: 22px 20px 14px; }
.kose-card .kc-tag { font-family: 'Poppins', sans-serif; font-size: 0.72rem; color: var(--gold-dark); font-weight: 700; }
.kose-card h3 { font-size: 1rem; line-height: 1.4; margin: 8px 0 10px; color: var(--forest-deep); }
.kose-card .kc-excerpt { font-size: 0.85rem; color: var(--ink-soft); opacity: 0.85; }
.kose-card .kc-foot {
  margin-top: auto;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--forest-deep);
}
.kc-foot .plus { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }

/* BRIDGE */
.section-bridge { background: var(--forest-deep); color: var(--bg); padding: 80px 0; text-align: center; }
.bridge-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.bridge-sig { font-family: 'Corinthia', cursive; font-size: clamp(3rem, 5vw, 4.2rem); color: var(--gold-soft); }
.bridge-quote { font-family: 'Poppins', sans-serif; font-style: italic; font-weight: 300; font-size: clamp(1rem, 1.8vw, 1.2rem); max-width: 720px; line-height: 1.7; }
.bridge-btn { background: var(--gold); color: var(--ink); font-weight: 700; padding: 12px 28px; border-radius: 30px; text-decoration: none; font-size: 0.88rem; transition: background .25s; }
.bridge-btn:hover { background: var(--gold-soft); }

/* CONTACT */
.contact { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info p { color: var(--ink-soft); margin-bottom: 28px; max-width: 380px; font-size: 0.95rem; }
.contact-sig { font-family: 'Corinthia', cursive; font-size: 3rem; color: var(--forest-deep); display: block; margin-bottom: 6px; }
.info-row { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.info-row .ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--gold-dark);
  flex-shrink: 0;
}
form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-size: 0.72rem; letter-spacing: 0.05em; color: var(--ink-soft); margin-bottom: 5px; display: block; text-transform: uppercase; font-weight: 600; }
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color .25s;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 90px; }
.submit-btn {
  margin-top: 4px;
  background: var(--forest-deep);
  color: var(--bg);
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background .3s;
}
.submit-btn:hover { background: var(--gold); }

/* FOOTER */
footer { background: var(--forest-deep); color: rgba(246, 242, 233, 0.75); padding: 36px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-left { display: flex; align-items: center; gap: 10px; }
.footer-sig { font-family: 'Corinthia', cursive; font-size: 2rem; color: var(--gold-soft); }
.footer-logo { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid rgba(246, 242, 233, 0.4); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.78rem; color: rgba(246, 242, 233, 0.95); transition: background .25s, color .25s; }
.footer-social a:hover { background: var(--gold); color: var(--forest-deep); }
.footer-bottom { text-align: center; font-size: 0.75rem; margin-top: 20px; color: rgba(246, 242, 233, 0.75); }
.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 28px 0;
  border-top: 1px solid rgba(246, 242, 233, 0.1);
  margin-top: 20px;
}
.legal-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: rgba(246, 242, 233, 0.75);
  letter-spacing: 0.03em;
  padding: 4px 0;
  transition: color .25s;
}
.legal-btn:hover { color: var(--gold-soft); }
.legal-sep { color: rgba(246, 242, 233, 0.35); font-size: 0.75rem; }
.footer-disclaimer { border-top: 1px solid rgba(246, 242, 233, 0.15); margin-top: 28px; padding-top: 20px; font-size: 0.72rem; line-height: 1.7; color: rgba(246, 242, 233, 0.7); max-width: 780px; margin-left: auto; margin-right: auto; text-align: center; }
.footer-disclaimer strong { color: rgba(246, 242, 233, 0.9); }

/* LEGAL MODAL */
.legal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 28, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 30px;
}
.legal-overlay.open { display: flex; animation: fadeIn .25s ease; }
.legal-modal {
  background: var(--bg);
  width: min(760px, 100%);
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.45);
  animation: modalIn .35s cubic-bezier(.2, .9, .25, 1);
}
.legal-modal-head {
  padding: 34px 40px 18px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 2;
}
.legal-modal-head .eyebrow { display: block; margin-bottom: 8px; }
.legal-modal-head h2 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); line-height: 1.25; }
.legal-modal-body { padding: 26px 40px 40px; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.75; }
.legal-modal-body h3 { font-family: 'Poppins', sans-serif; color: var(--ink); font-size: 1rem; margin: 22px 0 8px; font-weight: 600; }
.legal-modal-body p { margin: 0 0 12px; }
.legal-modal-body ul { padding-left: 18px; margin: 0 0 12px; }
.legal-modal-body li { margin-bottom: 6px; }
.legal-modal-body strong { color: var(--ink); font-weight: 600; }
.legal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: background .25s, color .25s;
  z-index: 3;
}
.legal-close:hover { background: var(--forest); color: var(--bg); }
@keyframes modalIn { from { opacity: 0; transform: scale(0.94) translateY(14px); } to { opacity: 1; transform: scale(1) translateY(0); } }

/* FLOATING SOCIAL */
.float-social { position: fixed; right: 18px; top: 50%; transform: translateY(-50%); z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.float-social a { width: 42px; height: 42px; border-radius: 50%; background: var(--forest-deep); border: 1px solid var(--gold-soft); display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--gold-soft); font-size: 1rem; transition: all .3s ease; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18); }
.float-social a:hover { background: var(--gold); color: var(--forest-deep); transform: scale(1.15); }
.float-social a svg { width: 18px; height: 18px; fill: currentColor; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* MEDIA QUERIES */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-cta { display: none; }
  .burger { display: block; }
  nav.links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: rgba(246, 242, 233, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25px;
    transition: right .3s ease;
    border-left: 1px solid var(--line);
    z-index: 99;
  }
  nav.links.active { right: 0; }
}
@media (max-width: 640px) {
  .legal-modal-head, .legal-modal-body { padding-left: 22px; padding-right: 22px; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .float-social { right: 10px; }
  .float-social a { width: 36px; height: 36px; font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
}
