/* ====================================================
   LOVE SOLUTIONS — PREMIUM STYLESHEET
   ==================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: #07041a;
  color: #d4cce8;
  line-height: 1.75;
  overflow-x: hidden;
  font-size: 16px;
}
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border: 0; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---------- LAYOUT ---------- */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.center { text-align: center; }

/* ---------- TYPOGRAPHY ---------- */
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
}
.sec-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #c9a84c;
  border-radius: 1px;
}
h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #f0eaff;
  margin-bottom: 18px;
}
h2 em { font-style: italic; color: #c9a84c; }
.gold-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg,#c9a84c,#e8cc7a);
  border-radius: 2px;
  margin-bottom: 28px;
}
.gold-line.mx-auto { margin-left: auto; margin-right: auto; }
.sec-sub {
  font-size: 1.05rem;
  color: #9d8ec0;
  max-width: 600px;
  margin: 0 auto 52px;
  line-height: 1.8;
}
.sec-head { margin-bottom: 60px; }
.sec-head.center { text-align: center; }
.sec-head.center .gold-line { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .22s, box-shadow .22s, opacity .22s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold {
  background: linear-gradient(135deg, #c9a84c 0%, #e8cc7a 60%, #c9a84c 100%);
  color: #1a1030;
  box-shadow: 0 4px 22px rgba(201,168,76,.35);
}
.btn-gold:hover { box-shadow: 0 8px 32px rgba(201,168,76,.5); }
.btn-outline {
  background: transparent;
  color: #f0eaff;
  border: 1.5px solid rgba(240,234,255,.25);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: #c9a84c; color: #c9a84c; }
.btn-green {
  background: linear-gradient(135deg,#16a34a,#22c55e);
  color: #fff;
  box-shadow: 0 4px 22px rgba(34,197,94,.3);
}
.btn-green:hover { box-shadow: 0 8px 32px rgba(34,197,94,.45); }
.btn-sm { padding: 9px 20px; font-size: .82rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- HEADER ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,4,26,.85); /* 🔥 FIX: always visible */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background .35s, box-shadow .35s;
}
header.solid {
  background: rgba(7,4,26,.96);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.hdr-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0eaff;
  letter-spacing: .01em;
  flex-shrink: 0;
}
.logo span { color: #c9a84c; }
nav { display: flex; gap: 34px; }
nav a {
  font-size: .88rem;
  font-weight: 500;
  color: #b0a0cc;
  letter-spacing: .02em;
  transition: color .2s;
}
nav a:hover { color: #c9a84c; }
.hdr-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: #1a1030;
  background: linear-gradient(135deg,#c9a84c,#e8cc7a);
  padding: 9px 20px;
  border-radius: 50px;
  flex-shrink: 0;
  transition: box-shadow .2s, transform .2s;
}
.hdr-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.4); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #c4b5e8;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 90px; /* 🔥 FIX: was 72px */
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(74,29,143,.7) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(74,29,143,.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(201,168,76,.1) 0%, transparent 55%),
    #07041a;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(74,29,143,.35); top: -100px; left: -80px; animation: drift1 14s ease-in-out infinite; }
.hero-orb-2 { width: 380px; height: 380px; background: rgba(201,168,76,.12); bottom: -60px; right: -40px; animation: drift2 18s ease-in-out infinite; }
.hero-orb-3 { width: 260px; height: 260px; background: rgba(74,29,143,.2); top: 40%; right: 20%; animation: drift1 22s ease-in-out infinite reverse; }
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,30px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-40px,-20px); } }

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 28px 100px;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #c9a84c;
  border: 1px solid rgba(201,168,76,.3);
  background: rgba(201,168,76,.06);
  border-radius: 100px;
  padding: 8px 22px;
  margin-bottom: 36px;
}
.dot { width: 7px; height: 7px; background: #c9a84c; border-radius: 50%; animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: #f0eaff;
  margin-bottom: 28px;
  line-height: 1.08;
}
.hero h1 em { display: block; color: #c9a84c; font-style: italic; }
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: #9d8ec0;
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 20px 36px;
  backdrop-filter: blur(12px);
}
.trust-item { text-align: center; padding: 0 28px; }
.trust-item strong { display: block; font-family: 'Cormorant Garamond',serif; font-size: 1.6rem; font-weight: 700; color: #c9a84c; line-height: 1; }
.trust-item span { font-size: .72rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: #7a6b99; margin-top: 5px; display: block; }
.trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,.1); flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, #c9a84c, transparent); animation: scrollAnim 2s ease-in-out infinite; }
.hero-scroll span { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #5a4e72; }
@keyframes scrollAnim { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: .4; transform: scaleY(.6); } }

/* ---------- ABOUT ---------- */
.about-sec { background: #0b071f; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-col { position: relative; }
.img-frame {
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(74,29,143,.4), 0 0 0 1px rgba(201,168,76,.15);
  position: relative;
}
.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(7,4,26,.5) 100%);
  z-index: 1;
  pointer-events: none;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #c9a84c;
  color: #1a1030;
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  z-index: 2;
}
.img-badge strong { display: block; font-family: 'Cormorant Garamond',serif; font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.img-badge span { display: block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; opacity: .8; }
.about-text-col p {
  color: #9d8ec0;
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.85;
}
.about-text-col p strong { color: #f0eaff; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}
.feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 500;
  color: #c4b5e8;
}
.feat-icon {
  width: 24px;
  height: 24px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: .72rem;
  flex-shrink: 0;
}
.about-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* ---------- SERVICES ---------- */
.services-sec { background: #07041a; }
.services-hero-img {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}
.services-hero-img img {
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(74,29,143,.35);
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: linear-gradient(160deg, rgba(74,29,143,.12) 0%, rgba(11,7,31,.9) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 30px 26px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.6), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(74,29,143,.35);
  border-color: rgba(201,168,76,.25);
}
.card:hover::before { opacity: 1; }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.06));
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  transition: background .3s;
}
.card:hover .card-icon-wrap { background: linear-gradient(135deg, rgba(201,168,76,.25), rgba(201,168,76,.12)); }
.card-num {
  font-family: 'Cormorant Garamond',serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(201,168,76,.1);
  line-height: 1;
  transition: color .3s;
}
.card:hover .card-num { color: rgba(201,168,76,.22); }
.card h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: #f0eaff;
  margin-bottom: 10px;
  font-family: 'Cormorant Garamond',serif;
}
.card p {
  font-size: .875rem;
  color: #7a6b99;
  line-height: 1.7;
  margin-bottom: 22px;
  flex-grow: 1;
}
.card-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- ARTICLE ---------- */
.article-sec { background: #0b071f; }
.article-inner { max-width: 880px; margin: 0 auto; }
.article-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #c9a84c;
  font-family: 'Cormorant Garamond',serif;
  margin: 40px 0 14px;
}
.article-body p {
  font-size: 1rem;
  color: #9d8ec0;
  line-height: 1.9;
  margin-bottom: 16px;
}
.article-body p strong { color: #f0eaff; }
.article-body a { color: #c9a84c; border-bottom: 1px solid rgba(201,168,76,.3); transition: border-color .2s; }
.article-body a:hover { border-color: #c9a84c; }
.article-lead {
  font-size: 1.1rem !important;
  color: #b0a0cc !important;
  line-height: 1.9 !important;
  border-left: 3px solid #c9a84c;
  padding-left: 22px;
  margin-bottom: 32px !important;
}
.article-close { border-left: 3px solid rgba(201,168,76,.35); padding-left: 22px; }

/* ---------- GALLERY ---------- */
.gallery-sec { background: #07041a; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
.gallery-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(74,29,143,.3);
  border: 1px solid rgba(255,255,255,.07);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,4,26,.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity .35s;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Cormorant Garamond',serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #f0eaff;
}

/* ---------- CONTACT ---------- */
.contact-sec { background: #0b071f; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left p { color: #9d8ec0; margin-bottom: 36px; font-size: 1rem; line-height: 1.8; }
.contact-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 36px; }
.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: background .2s, border-color .2s;
  text-decoration: none;
}
.contact-row:hover { background: rgba(201,168,76,.06); border-color: rgba(201,168,76,.2); }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,.2), rgba(201,168,76,.08));
  border: 1px solid rgba(201,168,76,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  flex-shrink: 0;
}
.contact-icon-wa { background: linear-gradient(135deg, rgba(34,197,94,.2), rgba(34,197,94,.08)); border-color: rgba(34,197,94,.25); color: #22c55e; }
.contact-icon-loc { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); color: #9d8ec0; }
.c-label { display: block; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; color: #5a4e72; }
.c-val { display: block; font-size: .95rem; font-weight: 600; color: #f0eaff; margin-top: 3px; }
.contact-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.form-card {
  background: linear-gradient(160deg, rgba(74,29,143,.1), rgba(7,4,26,.8));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 44px 40px;
}
.form-card h3 { font-size: 1.5rem; color: #f0eaff; margin-bottom: 8px; }
.form-card > p { font-size: .88rem; color: #7a6b99; margin-bottom: 32px; line-height: 1.6; }
.fg { margin-bottom: 20px; }
.fg label { display: block; font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: #7a6b99; margin-bottom: 8px; }
.fg input, .fg textarea, .fg select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: .93rem;
  color: #f0eaff;
  font-family: 'Inter',sans-serif;
  outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
  -webkit-appearance: none;
}
.fg select { cursor: pointer; }
.fg input::placeholder, .fg textarea::placeholder { color: #3d3460; }
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: rgba(201,168,76,.5);
  background: rgba(201,168,76,.04);
  box-shadow: 0 0 0 3px rgba(201,168,76,.08);
}
.fg textarea { resize: vertical; min-height: 110px; }
.form-msg { text-align: center; margin-top: 14px; font-size: .86rem; color: #22c55e; min-height: 20px; }

/* ---------- FOOTER ---------- */
.footer { background: #050314; border-top: 1px solid rgba(255,255,255,.05); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 70px 28px 60px;
}
.ft-brand .logo { font-size: 1.5rem; display: block; margin-bottom: 16px; }
.ft-brand p { font-size: .875rem; color: #5a4e72; line-height: 1.75; margin-bottom: 28px; }
.ft-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.ft-col h4 {
  font-family: 'Inter',sans-serif;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #c9a84c;
  margin-bottom: 20px;
}
.ft-col ul { display: flex; flex-direction: column; gap: 11px; }
.ft-col ul li a, .ft-col ul li span {
  font-size: .86rem;
  color: #5a4e72;
  transition: color .2s;
}
.ft-col ul li a:hover { color: #c9a84c; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .78rem; color: #3d3460; }

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
  position: fixed;
  bottom: 32px;
  right: 28px;
  z-index: 9999;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg,#22c55e,#16a34a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(34,197,94,.45);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(34,197,94,.6); }
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(34,197,94,.3);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.9); opacity: 0; } }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.shown { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(7,4,26,.98);
    backdrop-filter: blur(18px);
    flex-direction: column;
    padding: 28px;
    gap: 22px;
    transform: translateY(-120%);
    transition: transform .4s ease;
    border-bottom: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 20px 40px rgba(0,0,0,.6);
    z-index: 999; /* 🔥 FIX */
  }

  nav.open {
    transform: translateY(0);
  }
}
  nav.open { transform: translateY(0); }
  nav a { font-size: 1rem; }
  .hdr-cta { display: none; }
  .burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-col { max-width: 460px; margin: 0 auto; }
  .img-badge { bottom: -16px; right: 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-trust { flex-direction: column; gap: 16px; padding: 24px; }
  .trust-sep { width: 50px; height: 1px; }
}

@media (max-width: 540px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .form-card { padding: 28px 22px; }
  .about-features { grid-template-columns: 1fr; }
  .contact-btns { flex-direction: column; }
  .contact-btns .btn { justify-content: center; }
}
