/* ========================================
   National Bank Kenya — Rebrand Styles
   Color Palette: Access orange #ff8200, Corporate blue #003883, Retail green #b5d334
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  --orange: #ff8200;
  --orange-light: #ffaa42;
  --orange-dark: #d56c00;
  --navy: #003883;
  --navy-light: #004ba8;
  --brown: #3D2B1F;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --light-grey: #F0F0F0;
  --medium-grey: #E0E0E0;
  --dark-grey: #666666;
  --text: #333333;
  --green: #b5d334;
  --green-dark: #9dbb2c;
  --green-rgb: 181, 211, 52;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  --radius: 8px;
  --radius-lg: 16px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-links {
  display: flex;
  gap: 24px;
}

.top-bar-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.top-bar-links a:hover {
  color: var(--orange-light);
}

.top-bar-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-cta a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
}

.top-bar-cta a:hover {
  color: var(--orange-light);
}

.btn-internet-banking {
  background: var(--orange);
  color: var(--white) !important;
  padding: 6px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.btn-internet-banking:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ---------- Main Navigation ---------- */
.main-nav {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.main-nav.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--medium-grey);
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-logo img {
  height: 55px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-links a:hover::after {
  width: 60%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-search {
  background: none;
  border: 2px solid var(--medium-grey);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--text);
  width: 180px;
  outline: none;
  transition: var(--transition);
}

.nav-search:focus {
  border-color: var(--orange);
  width: 220px;
}

.nav-search::placeholder {
  color: var(--dark-grey);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: var(--green);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg,
      rgba(var(--green-rgb), 0.92) 0%,
      rgba(var(--green-rgb), 0.7) 40%,
      rgba(255, 130, 0, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0;
  max-width: 600px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 130, 0, 0.2);
  color: var(--orange-light);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
  border: 1px solid rgba(255, 130, 0, 0.3);
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--orange-light);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 130, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}

.btn-outline-dark:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ---------- Quick Services ---------- */
.quick-services {
  padding: 0;
  position: relative;
  z-index: 5;
  margin-top: -50px;
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.qs-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.qs-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.qs-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(255, 130, 0, 0.1), rgba(255, 130, 0, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qs-card:hover .qs-icon {
  background: var(--orange);
}

.qs-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  transition: var(--transition);
}

.qs-card:hover .qs-icon svg {
  stroke: var(--white);
}

.qs-card h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.qs-card p {
  font-size: 0.82rem;
  color: var(--dark-grey);
  line-height: 1.5;
}

/* ---------- Section Common ---------- */
.section {
  padding: 90px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* background: rgba(226, 123, 42, 0.08); */
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 6px 0;
  border-radius: 50px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--dark-grey);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Featured Services (Alt rows) ---------- */
.featured-services {
  background: var(--white);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row.reverse .service-image {
  order: 2;
}

.service-row.reverse .service-text {
  order: 1;
}

.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image:hover img {
  transform: scale(1.04);
}

.service-image-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-text .section-tag {
  margin-bottom: 12px;
}

.service-text h3 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}

.service-text p {
  font-size: 1rem;
  color: var(--dark-grey);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
}

.service-feature svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  flex-shrink: 0;
}

/* ---------- Stats Banner ---------- */
.stats-banner {
  background: var(--green);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 130, 0, 0.15), transparent 70%);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange-light);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ---------- News Section ---------- */
.news-section {
  background: var(--off-white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card-image {
  height: 220px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 28px;
}

.news-date {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.news-card-body h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.news-card-body p {
  font-size: 0.88rem;
  color: var(--dark-grey);
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--orange);
  fill: none;
  transition: var(--transition);
}

.news-link:hover {
  color: var(--orange-dark);
}

.news-link:hover svg {
  transform: translateX(4px);
  stroke: var(--orange-dark);
}

/* ---------- Ways to Bank ---------- */
.ways-to-bank {
  background: var(--white);
}

.wtb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.wtb-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  transition: var(--transition);
  border: 1px solid transparent;
}

.wtb-card:hover {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.wtb-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.wtb-card:hover .wtb-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  transform: scale(1.1);
}

.wtb-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
}

.wtb-card h4 {
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 8px;
}

.wtb-card p {
  font-size: 0.85rem;
  color: var(--dark-grey);
  line-height: 1.5;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-brand img {
  height: 45px;
  margin-bottom: 18px;
  filter: brightness(10);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--orange-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: var(--orange-light);
}

/* Color divider strip like Access Bank */
.color-strip {
  display: flex;
  height: 4px;
}

.color-strip span {
  flex: 1;
}

.color-strip .strip-orange {
  background: var(--orange);
}

.color-strip .strip-navy {
  background: var(--navy);
}

.color-strip .strip-brown {
  background: var(--brown);
}

.color-strip .strip-green {
  background: var(--green);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile Nav ---------- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 80px 24px 24px;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--navy);
  border-bottom: 1px solid var(--light-grey);
}

.mobile-nav a:hover {
  color: var(--orange);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-close svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3rem;
  }

  .quick-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-row {
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links,
  .nav-search {
    display: none;
  }

  .main-nav .container {
    height: 65px;
  }

  .nav-logo img {
    height: 42px;
  }

  .hero {
    height: 500px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btns .btn {
    text-align: center;
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .quick-services {
    margin-top: -30px;
  }

  .quick-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .qs-card {
    padding: 24px 16px;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .service-row.reverse .service-image,
  .service-row.reverse .service-text {
    order: unset;
  }

  .service-image img {
    height: 280px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wtb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .quick-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .qs-card {
    padding: 20px 12px;
  }

  .qs-icon {
    width: 44px;
    height: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}