/* =============================
   PUSAT OTO KURTARMA – style.css
   ============================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #e31e24;
  --red-dk: #b71b20;
  --navy:   #0d1b3e;
  --navy-2: #1a2f5e;
  --white:  #ffffff;
  --light:  #f4f6fb;
  --grey:   #8a92a8;
  --dark:   #1c1c2e;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 12px rgba(13,27,62,.08);
  --shadow-md: 0 6px 30px rgba(13,27,62,.13);
  --shadow-lg: 0 16px 50px rgba(13,27,62,.18);
  --radius: 12px;
  --radius-lg: 20px;

  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========  BUTTONS  ========= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--sm  { padding: 9px 20px; font-size: .78rem; }
.btn--lg  { padding: 15px 32px; font-size: 1rem; }
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--red { background: var(--red); color: var(--white); box-shadow: 0 4px 20px rgba(227,30,36,.35); }
.btn--red:hover { background: var(--red-dk); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(227,30,36,.45); }
.btn--ghost { background: rgba(255,255,255,.15); color: var(--white); border: 2px solid rgba(255,255,255,.6); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.btn--white { background: var(--white); color: var(--red); font-weight: 800; }
.btn--white:hover { background: var(--light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: 10px 22px; font-size: .85rem; }
.btn--outline:hover { background: var(--navy); color: var(--white); }

/* ======= SECTION HELPERS ======= */
.section__header { text-align: center; margin-bottom: 50px; }
.section__label {
  display: inline-block;
  background: rgba(227,30,36,.1);
  color: var(--red);
  border-radius: 50px;
  padding: 5px 18px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-head);
}
.section__label--light {
  background: rgba(255,255,255,.15);
  color: var(--white);
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}
.section__desc { color: var(--grey); margin-top: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }
.section__header--light .section__title { color: var(--white); }

/* =========  HEADER  ========= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(13,27,62,.14); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo__icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--red), var(--red-dk));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}
.logo__name {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .95rem;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.01em;
}
.logo__sub {
  display: block;
  font-size: .68rem;
  color: var(--grey);
  font-weight: 500;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: var(--transition);
}
.nav__link:hover { color: var(--red); }
.nav__link:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 998; }
.mobile-overlay.active { display: block; }

/* =========  HERO  ========= */
.hero {
  position: relative;
  margin-top: 72px;
  height: calc(100vh - 72px);
  min-height: 550px;
  max-height: 780px;
  overflow: hidden;
}
.hero__slider { width: 100%; height: 100%; position: relative; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .7s ease;
  display: flex;
  align-items: center;
}
.hero__slide--active { opacity: 1; z-index: 1; }
.hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13,27,62,.82) 40%, rgba(13,27,62,.35) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.hero__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 18px;
  font-family: var(--font-head);
}
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--white);
}
.hero__title--red { color: var(--red); }
.hero__sub { font-size: 1.05rem; opacity: .88; margin-bottom: 32px; max-width: 480px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero__arrow:hover { background: var(--red); border-color: var(--red); }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }

/* Dots */
.hero__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.hero__dot--active { background: var(--red); transform: scale(1.3); }

/* =========  QUICK LINKS  ========= */
.quick-links { padding: 0; background: var(--light); }
.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(13,27,62,.08);
}
.quick-link__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  border-right: 1px solid rgba(13,27,62,.07);
  transition: var(--transition);
  cursor: pointer;
}
.quick-link__card:last-child { border-right: none; }
.quick-link__card:hover { background: rgba(13,27,62,.04); color: var(--red); }
.quick-link__card--red { background: var(--red); color: var(--white); }
.quick-link__card--red:hover { background: var(--red-dk); color: var(--white); }
.quick-link__icon {
  width: 42px; height: 42px;
  background: rgba(227,30,36,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.quick-link__card--red .quick-link__icon {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

/* =========  BANNER  ========= */
.banner {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dk) 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.banner__text h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
}
.banner__text p { color: rgba(255,255,255,.85); max-width: 560px; }
.banner__bg-icon {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  color: rgba(255,255,255,.08);
  pointer-events: none;
}

/* =========  ABOUT  ========= */
.about { padding: 90px 0; background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__image-wrap { position: relative; }
.about__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about__badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  box-shadow: var(--shadow-md);
}
.about__badge-float i { font-size: 1.4rem; }
.about__content .section__label { margin-bottom: 8px; }
.about__content .section__title { text-align: left; margin-bottom: 20px; }
.about__content p { color: #555; margin-bottom: 16px; }
.about__stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(13,27,62,.1);
  flex-wrap: wrap;
}
.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.stat__label { font-size: .8rem; color: var(--grey); font-weight: 500; }

/* =========  SERVICES  ========= */
.services { padding: 90px 0; background: var(--light); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card__img-wrap { overflow: hidden; height: 220px; }
.service-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.06); }
.service-card__body { padding: 24px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card__body p { color: #666; font-size: .9rem; flex: 1; margin-bottom: 20px; }
.service-card__body .btn--outline { align-self: flex-start; }

/* =========  WHY US  ========= */
.why-us {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  text-align: center;
}
.why-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.why-card__icon {
  width: 60px; height: 60px;
  background: rgba(227,30,36,.18);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1.4rem;
  margin: 0 auto 18px;
  border: 1px solid rgba(227,30,36,.3);
}
.why-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { color: rgba(255,255,255,.65); font-size: .88rem; }

/* =========  TESTIMONIALS  ========= */
.testimonials { padding: 90px 0; background: var(--light); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 22px;
  font-size: 5rem;
  color: rgba(227,30,36,.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.review-card__stars { color: #f4b400; margin-bottom: 14px; font-size: .95rem; }
.review-card p { color: #555; font-size: .9rem; margin-bottom: 20px; line-height: 1.65; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { color: var(--red); font-size: 2.2rem; }
.review-card__author strong { display: block; font-family: var(--font-head); font-size: .9rem; color: var(--navy); }
.review-card__author span { font-size: .78rem; color: var(--grey); }

/* =========  BLOG  ========= */
.blog { padding: 90px 0; background: var(--white); }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(13,27,62,.06);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card__img-wrap { position: relative; height: 200px; overflow: hidden; }
.blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.07); }
.blog-card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .04em;
}
.blog-card__body { padding: 22px 24px; }
.blog-card__body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card__body p { color: #666; font-size: .88rem; margin-bottom: 16px; line-height: 1.65; }
.blog-card__link { color: var(--navy-2); font-weight: 700; font-size: .85rem; font-family: var(--font-head); transition: var(--transition); }
.blog-card__link:hover { color: var(--red); }

/* =========  CONTACT  ========= */
.contact { padding: 90px 0; background: var(--light); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(13,27,62,.07);
}
.contact__item:last-of-type { border-bottom: none; }
.contact__item-icon {
  width: 44px; height: 44px;
  background: rgba(227,30,36,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact__item strong { display: block; font-family: var(--font-head); font-size: .82rem; color: var(--grey); margin-bottom: 3px; }
.contact__item a, .contact__item span { color: var(--navy); font-weight: 600; font-size: .95rem; }
.contact__item a:hover { color: var(--red); }
.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-icon {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--red); transform: translateY(-3px); }
.social-icon--green { background: #25D366; }
.social-icon--green:hover { background: #1da551; }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }

/* =========  FOOTER  ========= */
.footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 60px 0 40px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__logo i { color: var(--red); font-size: 1.4rem; }
.footer__col--brand p { font-size: .88rem; line-height: 1.75; }
.footer__col h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer__col ul li a:hover { color: var(--red); padding-left: 4px; }
.footer__contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer__contact-list li i { color: var(--red); margin-top: 3px; flex-shrink: 0; font-size: .9rem; }
.footer__contact-list a, .footer__contact-list span { font-size: .88rem; color: rgba(255,255,255,.65); }
.footer__contact-list a:hover { color: var(--red); }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: var(--transition);
}
.footer__socials a:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-3px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* =========  FLOATING BUTTONS  ========= */
.floating-btns {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  animation: pulse2 2.5s infinite;
}
.float-btn:hover { transform: scale(1.15); }
.float-btn--red { background: var(--red); }
.float-btn--green { background: #25D366; animation-delay: .4s; }

@keyframes pulse2 {
  0%, 100% { box-shadow: 0 0 0 0 rgba(227,30,36,.4); }
  50% { box-shadow: 0 0 0 10px rgba(227,30,36,0); }
}
.float-btn--green { animation-name: pulseGreen; }
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
}

/* =========  SCROLL TOP  ========= */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--red); transform: translateY(-3px); }

/* =========  RESPONSIVE  ========= */
@media (max-width: 1024px) {
  .quick-links__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__image-wrap { max-width: 500px; margin: 0 auto; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav {
    position: fixed;
    top: 72px; right: -100%;
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    width: 280px;
    height: calc(100vh - 72px);
    padding: 30px 24px;
    gap: 20px;
    box-shadow: -4px 0 24px rgba(13,27,62,.1);
    transition: right .4s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .nav.open { right: 0; }
  .nav__link { font-size: 1rem; width: 100%; }
  .nav__cta { width: 100%; justify-content: center; }
  .hamburger { display: flex; }

  .hero { max-height: none; height: 85vh; }
  .hero__title { font-size: clamp(1.6rem, 7vw, 2.8rem); }
  .hero__actions { flex-direction: column; max-width: 260px; }
  .hero__actions .btn { justify-content: center; }

  .quick-links__grid { grid-template-columns: 1fr 1fr; }
  .banner__inner { flex-direction: column; text-align: center; }
  .about__stats { justify-content: center; }
  .why-us__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .quick-links__grid { grid-template-columns: 1fr; }
  .hero__badge { font-size: .68rem; }
  .about__badge-float { right: 10px; bottom: -10px; font-size: .78rem; padding: 12px 16px; }
  .logo__sub { display: none; }
}
