/* assets/css/global.css — Shri Khatu Shyam Taxi Service */

/* ═══════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════ */
:root {
  --saffron:     #E8671A;
  --saffron-dk:  #C4520D;
  --saffron-lt:  #F5893C;
  --gold:        #D4A017;
  --gold-lt:     #F0C040;
  --maroon:      #8B1A1A;
  --deep:        #1A0A00;
  --text:        #2D1A00;
  --text-muted:  #6B5744;
  --bg:          #FFFBF5;
  --bg-warm:     #FFF5E8;
  --white:       #FFFFFF;
  --green:       #28a745;
  --border:      rgba(232,103,26,0.18);
  --shadow:      0 4px 24px rgba(139,26,26,0.10);
  --radius:      14px;
  --radius-sm:   8px;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Mulish', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--saffron); text-decoration: none; transition: color .2s; }
a:hover { color: var(--saffron-dk); }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--text); line-height: 1.25; }

/* ═══════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════ */
.topbar {
  background: var(--maroon);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left, .topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--gold-lt); }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.site-navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(139,26,26,.10);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .3s;
}
.site-navbar.scrolled { box-shadow: 0 4px 24px rgba(139,26,26,.18); }

.navbar-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 52px; width: 52px; object-fit: contain; border-radius: 50%; border: 2px solid var(--saffron); }

.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.1;
}
.brand-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .5px;
}

.site-navbar .nav-link {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--saffron);
  background: var(--bg-warm);
}

.btn-book-nav {
  background: var(--saffron);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-book-nav:hover { background: var(--saffron-dk); transform: translateY(-1px); color: var(--white) !important; }

.toggler-icon { font-size: 22px; color: var(--saffron); }
.navbar-toggler { border: none; background: none; }
.navbar-toggler:focus { box-shadow: none; }

/* ═══════════════════════════════════════════
   FLOATING CTA
═══════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  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: 22px;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}
.float-btn:hover { transform: scale(1.12); color: var(--white); }
.whatsapp-btn { background: #25D366; }
.call-btn     { background: var(--saffron); }

/* ═══════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════ */
.section-eyebrow {
  display: inline-block;
  background: var(--bg-warm);
  color: var(--saffron);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.section-head { margin-bottom: 40px; }

/* ═══════════════════════════════════════════
   HERO BANNER
═══════════════════════════════════════════ */
.hero-banner {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,10,0,.82) 0%, rgba(139,26,26,.6) 60%, rgba(26,10,0,.5) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 80px 0; }

.hero-breadcrumb { margin-bottom: 18px; }
.hero-breadcrumb .breadcrumb { background: transparent; padding: 0; }
.hero-breadcrumb .breadcrumb-item a,
.hero-breadcrumb .breadcrumb-item { color: rgba(255,255,255,.7); font-size: 13px; }
.hero-breadcrumb .breadcrumb-item.active { color: var(--gold-lt); }
.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(232,103,26,.22);
  border: 1px solid rgba(232,103,26,.5);
  color: var(--gold-lt);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(28px, 5vw, 54px);
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}

.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: 15px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.hero-dot { color: var(--gold-lt); }

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.18);
  overflow: hidden;
  width: fit-content;
  max-width: 100%;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
}
.hero-stat--price { background: rgba(232,103,26,.25); }
.hstat-divider { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }
.hstat-icon { font-size: 22px; color: var(--gold-lt); }
.hstat-val   { display: block; font-weight: 800; font-size: 16px; color: var(--white); }
.hstat-lbl   { display: block; font-size: 11px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .5px; }
.hstat-from  { display: block; font-size: 11px; color: rgba(255,255,255,.65); text-transform: uppercase; }
.hstat-price { display: block; font-size: 22px; font-weight: 800; color: var(--gold-lt); line-height: 1.1; }
.hstat-book-btn {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--saffron);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 50px;
  transition: background .2s;
}
.hstat-book-btn:hover { background: var(--saffron-dk); color: var(--white); }

/* ═══════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(139,26,26,.15); }
.service-card-img {
  height: 200px;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 22px; }
.service-card-icon {
  width: 48px; height: 48px;
  background: var(--bg-warm);
  border: 2px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--saffron);
  margin-bottom: 12px;
}
.service-card-body h5 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card-body p  { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; }
.service-link {
  color: var(--saffron);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.service-card:hover .service-link { gap: 9px; }

/* ═══════════════════════════════════════════
   VEHICLE / FLEET CARDS
═══════════════════════════════════════════ */
.vehicle-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.vehicle-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(139,26,26,.16); }
.is-popular { border-color: var(--saffron); }
.vc-popular-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--saffron);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
  display: flex; align-items: center; gap: 5px;
}
.vc-img { height: 180px; overflow: hidden; background: var(--bg-warm); }
.vc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.vehicle-card:hover .vc-img img { transform: scale(1.06); }
.vc-body { padding: 18px; }
.vc-body h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.vc-specs {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.vc-specs li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-warm);
  padding: 3px 10px;
  border-radius: 50px;
}
.vc-specs li i { color: var(--saffron); }
.vc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}
.vc-price { font-size: 22px; font-weight: 800; color: var(--saffron); }
.vc-price small { font-size: 13px; font-weight: 400; color: var(--text-muted); }
.vc-book-btn {
  background: var(--saffron);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 50px;
  transition: background .2s;
}
.vc-book-btn:hover { background: var(--saffron-dk); color: var(--white); }

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery-grid { column-count: 3; column-gap: 14px; }
@media(max-width:768px){ .gallery-grid { column-count: 2; } }
@media(max-width:480px){ .gallery-grid { column-count: 1; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform .4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(139,26,26,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  font-size: 24px;
  color: var(--white);
}
.gallery-item:hover .gallery-hover { opacity: 1; } 


.gallery-filter-btn:hover { border-color: var(--saffron) !important; color: var(--saffron) !important; }
.gallery-filter-btn.active { background: var(--saffron) !important; color: #fff !important; border-color: var(--saffron) !important; }
.gallery-item.hidden { display: none; }

/* ═══════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════ */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 36px;
}
.field-row { margin-bottom: 16px; }
.field-row label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
}
.field-row label i { color: var(--saffron); width: 14px; }
.field-row input,
.field-row select,
.field-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  transition: border-color .2s;
  outline: none;
}
.field-row input:focus,
.field-row select:focus,
.field-row textarea:focus { border-color: var(--saffron); background: var(--white); }
.req { color: var(--saffron); }
.submit-btn {
  width: 100%;
  background: var(--saffron);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 13px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s;
  font-family: var(--font-body);
}
.submit-btn:hover { background: var(--saffron-dk); transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   INFO BOX
═══════════════════════════════════════════ */
.info-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 20px;
}
.info-box h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 9px;
}
.info-box h5 i { color: var(--saffron); }
.info-box ul { list-style: none; padding: 0; }
.info-box ul li {
  display: flex;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
  align-items: flex-start;
}
.info-box ul li:last-child { border-bottom: none; }
.info-box ul li i { color: var(--saffron); margin-top: 3px; flex-shrink: 0; }
.info-box ul li a { color: var(--saffron); font-weight: 600; }

/* ═══════════════════════════════════════════
   WHY CHOOSE US / FEATURE ITEMS
═══════════════════════════════════════════ */
.feature-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
}
.feature-item:hover { transform: translateY(-3px); border-color: var(--saffron); }
.fi-icon {
  width: 52px; height: 52px;
  background: var(--bg-warm);
  border: 2px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--saffron);
  flex-shrink: 0;
}
.fi-text h5 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.fi-text p  { font-size: 13.5px; color: var(--text-muted); margin: 0; }

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--saffron-dk) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 { font-size: clamp(24px, 4vw, 40px); color: var(--white); margin-bottom: 12px; position: relative; }
.cta-band p  { color: rgba(255,255,255,.82); font-size: 16px; margin-bottom: 28px; position: relative; }
.cta-btns    { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-cta-primary {
  background: var(--white);
  color: var(--maroon);
  font-weight: 800;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); color: var(--maroon); }
.btn-cta-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 15px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, border-color .2s;
}
.btn-cta-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }

/* ═══════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════ */
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: 4px solid var(--saffron);
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text  { font-size: 15px; color: var(--text); margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--saffron);
}
.testi-name  { font-weight: 700; font-size: 14px; }
.testi-place { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats-strip {
  background: var(--maroon);
  padding: 40px 0;
}
.stat-item { text-align: center; padding: 10px; }
.stat-num  { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--gold-lt); line-height: 1; }
.stat-lbl  { font-size: 13px; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer { background: var(--deep); color: rgba(255,255,255,.8); }
.footer-top  { padding: 64px 0 40px; }
.footer-logo { height: 64px; width: 64px; object-fit: contain; border-radius: 50%; border: 2px solid var(--saffron); margin-bottom: 14px; }
.footer-brand-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer-brand-desc { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.65; }
.footer-social {
  display: flex; gap: 10px; margin-top: 20px;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  font-size: 16px;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--saffron); color: var(--white); }

.footer-heading {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--saffron);
  width: fit-content;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 14px; transition: color .2s, padding-left .2s; display: inline-flex; align-items: center; gap: 5px; }
.footer-links a:hover { color: var(--gold-lt); padding-left: 4px; }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
  align-items: flex-start;
}
.footer-contact-list li i { color: var(--saffron); margin-top: 3px; flex-shrink: 0; font-size: 14px; }
.footer-contact-list a { color: rgba(255,255,255,.8); }
.footer-contact-list a:hover { color: var(--gold-lt); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-wrap img { width: 100%; height: 400px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--saffron);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.about-badge span { display: block; font-size: 22px; font-weight: 800; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-stats { gap: 0; }
  .hstat-divider { display: none; }
  .hero-stat { border-bottom: 1px solid rgba(255,255,255,.12); }
}
@media (max-width: 767px) {
  .topbar-left { display: none; }
  .brand-name { font-size: 15px; }
  .nav-logo { height: 42px; width: 42px; }
  .contact-form-card { padding: 22px; }
  .footer-bottom-inner { text-align: center; justify-content: center; }
}
