:root {
  --ink: #14213d;
  --muted: #5d6678;
  --line: #dce3ec;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --accent: #d94f30;
  --accent-2: #0d7a75;
  --deep: #0f172a;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 5px;
  border-radius: 8px;
  background: #fff;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
  background: var(--soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.44), rgba(15, 23, 42, 0.12));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 92px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content .eyebrow {
  color: #f9b38b;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5.8rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--muted);
}

.hero-content p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.hero-actions,
.cta-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
}

.btn.primary {
  color: #fff;
  background: var(--accent);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.intro-band,
.values-band {
  padding: 70px 0;
  background: var(--soft);
}

.intro-grid,
.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.feature-grid,
.fleet-grid,
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 78px 0;
}

.feature-card,
.fleet-card,
.route-grid article,
.info-panel,
.contact-form,
.contact-details,
.service-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-card,
.route-grid article,
.info-panel,
.contact-details,
.service-list article {
  padding: 26px;
}

.feature-card {
  min-height: 210px;
}

.icon,
.route-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent-2);
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.split-media img {
  height: 100%;
  object-fit: cover;
}

.split-copy {
  display: grid;
  align-content: center;
  padding: clamp(40px, 7vw, 92px);
  background: var(--deep);
}

.split-copy h2,
.split-copy h3 {
  color: #fff;
}

.split-copy p,
.split-copy li {
  color: rgba(255, 255, 255, 0.76);
}

.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 7px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  transform: rotate(-45deg);
}

.cta-band {
  padding: 62px 0;
  color: #fff;
  background: var(--accent-2);
}

.cta-inner {
  justify-content: space-between;
}

.cta-band .eyebrow,
.cta-band p,
.cta-band h2 {
  color: #fff;
}

.cta-band .btn.primary {
  background: #fff;
  color: var(--accent-2);
}

.site-footer {
  padding: 50px 0 22px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.2fr;
  gap: 30px;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  margin-bottom: 12px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 8px;
}

.copyright {
  width: min(1120px, calc(100% - 40px));
  margin: 28px auto 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-hero {
  padding: 92px 0;
  background: var(--soft);
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.route-hero {
  color: #fff;
  background: linear-gradient(rgba(15, 23, 42, 0.76), rgba(15, 23, 42, 0.76)), url("https://images.unsplash.com/photo-1524492412937-b28074a5d7da?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.content-grid,
.contact-grid,
.service-list {
  padding: 78px 0;
}

.info-panel {
  box-shadow: var(--shadow);
}

.fleet-intro {
  max-width: 850px;
  padding: 64px 0 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.fleet-intro p:last-child {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.fleet-card {
  overflow: hidden;
}

.pro-fleet {
  position: relative;
  display: grid;
  grid-template-rows: 210px 1fr;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.taxi-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 5px;
  color: #14213d;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}

.fleet-photo {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.fleet-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0));
  pointer-events: none;
}

.fleet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
  transform: scale(1.02);
}

.white-vehicle {
  background: linear-gradient(135deg, #ffffff, #e8eef5);
}

.white-vehicle img {
  opacity: 0.9;
  filter: grayscale(1) brightness(1.35) contrast(0.78);
  mix-blend-mode: screen;
}

.white-vehicle::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.54)),
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
}

.plate-safe img {
  object-position: center 38%;
  transform: scale(1.14);
}

.luxury-crop img {
  object-position: center 45%;
  transform: scale(1.08);
}

.fleet-body {
  padding: 24px;
}

.fleet-card h2 {
  margin-top: 8px;
}

.fleet-card p {
  margin-bottom: 20px;
}

.fleet-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 5px;
  color: var(--accent-2);
  background: rgba(13, 122, 117, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fleet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fleet-meta span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.action-card {
  display: grid;
  align-content: center;
  min-height: 330px;
  background: var(--soft);
}

.fleet-action {
  padding: 28px;
  grid-column: span 2;
}

.fleet-action .btn {
  width: max-content;
}

.fleet-credit {
  margin-top: -42px;
  padding-bottom: 70px;
}

.fleet-credit p {
  margin: 0;
  color: #748093;
  font-size: 0.82rem;
}

.cab-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 54px 0 34px;
}

.cab-type-card {
  display: grid;
  grid-template-rows: 190px auto 1fr auto;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.featured-cab {
  border-color: rgba(13, 122, 117, 0.36);
  box-shadow: 0 18px 44px rgba(13, 122, 117, 0.14);
}

.cab-image {
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc, #e8eef5);
}

.cab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cab-type-head,
.cab-specs,
.cab-type-card .btn {
  margin-left: 24px;
  margin-right: 24px;
}

.cab-type-head {
  padding-top: 22px;
}

.cab-type-head h2 {
  margin-top: 14px;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.cab-type-head p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.cab-specs {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  margin-bottom: 26px;
}

.cab-specs div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.cab-specs dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cab-specs dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.cab-type-card .btn {
  width: max-content;
  margin-bottom: 24px;
}

.fleet-note {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 76px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.fleet-note h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.fleet-note p {
  margin: 0;
}

.about-story {
  padding: 84px 0;
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.about-copy {
  max-width: 760px;
}

.about-copy .lead {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
}

.about-highlight {
  display: grid;
  gap: 16px;
}

.about-highlight div {
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  background: var(--soft);
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.06);
}

.about-highlight span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-highlight strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
}

.about-highlight p {
  margin-bottom: 0;
}

.about-mission {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 80px;
  padding: 34px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #101820, #1f6f68);
}

.about-mission h2,
.about-mission p,
.about-mission .eyebrow {
  color: #fff;
}

.about-mission p {
  margin: 0;
}

.about-choice {
  padding-top: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.route-grid article {
  min-height: 230px;
}

.tour-image-grid article {
  padding: 0;
}

.tour-card {
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.tour-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.tour-card-body {
  padding: 24px;
}

.tour-card-body span {
  margin-bottom: 18px;
}

.contact-details {
  padding: 34px;
}

.contact-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 14px;
  }

  .intro-grid,
  .content-grid,
  .contact-grid,
  .split-section,
  .about-story-grid,
  .about-mission {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .fleet-grid,
  .route-grid,
  .service-list,
  .cab-type-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-note {
    grid-template-columns: 1fr;
  }

  .split-media img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    padding-bottom: 56px;
  }

  .feature-grid,
  .fleet-grid,
  .route-grid,
  .service-list,
  .cab-type-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-band,
  .values-band,
  .content-grid,
  .contact-grid,
  .service-list,
  .feature-grid,
  .fleet-grid,
  .cab-type-grid,
  .route-grid {
    padding: 48px 0;
  }

  .page-hero {
    padding: 62px 0;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Premium transport redesign */
:root {
  --ink: #101820;
  --muted: #667085;
  --line: #e4e7ec;
  --paper: #ffffff;
  --soft: #f7f8fa;
  --accent: #c99a2e;
  --accent-2: #1f6f68;
  --deep: #101820;
  --shadow: 0 18px 48px rgba(16, 24, 32, 0.12);
}

body {
  background: #fbfcfd;
}

.site-header {
  min-height: 82px;
  background: rgba(16, 24, 32, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.18);
}

.brand,
.main-nav a {
  color: #fff;
}

.brand-mark {
  color: #101820;
  background: var(--accent);
}

.brand small {
  color: rgba(255, 255, 255, 0.64);
}

.main-nav {
  gap: 2px;
}

.main-nav a {
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.main-nav a:hover,
.main-nav a.active {
  color: #101820;
  background: var(--accent);
}

.nav-toggle {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  background: #fff;
}

.hero {
  min-height: 720px;
  align-items: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 24, 32, 0.92), rgba(16, 24, 32, 0.66), rgba(16, 24, 32, 0.18)),
    linear-gradient(0deg, rgba(16, 24, 32, 0.28), rgba(16, 24, 32, 0));
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  padding: 86px 0 76px;
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 6.1rem);
}

.hero-content p:not(.eyebrow) {
  max-width: 600px;
  font-size: 1.15rem;
}

.eyebrow {
  color: var(--accent);
}

.btn {
  border-radius: 4px;
  letter-spacing: 0;
}

.btn.primary {
  color: #101820;
  background: var(--accent);
}

.btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.page-hero {
  padding: 100px 0 78px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(31, 111, 104, 0.86)),
    var(--deep);
}

.page-hero h1 {
  color: #fff;
}

.page-hero .eyebrow {
  color: #e7c36d;
}

.intro-band,
.values-band {
  background: #fff;
}

.intro-grid,
.content-grid,
.contact-grid {
  gap: clamp(28px, 5vw, 70px);
}

.feature-card,
.fleet-card,
.route-grid article,
.info-panel,
.contact-form,
.contact-details,
.service-list article,
.cab-type-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(16, 24, 32, 0.06);
}

.feature-card,
.service-list article,
.info-panel,
.contact-details {
  background: #fff;
}

.icon,
.route-grid span {
  border-radius: 4px;
  color: #101820;
  background: var(--accent);
}

.split-copy {
  background:
    linear-gradient(135deg, rgba(16, 24, 32, 0.96), rgba(16, 24, 32, 0.9)),
    var(--deep);
}

.cta-band {
  background: linear-gradient(135deg, #1f6f68, #101820);
}

.cta-band .btn.primary {
  color: #101820;
  background: var(--accent);
}

.site-footer {
  background: #0b1117;
}

.cab-type-grid {
  gap: 22px;
  padding-top: 62px;
}

.cab-type-card {
  min-height: 540px;
  border-top: 4px solid var(--accent);
  background: #fff;
}

.featured-cab {
  border-color: var(--accent);
  box-shadow: 0 20px 54px rgba(16, 24, 32, 0.14);
}

.cab-image {
  background: #eef1f4;
}

.cab-image img {
  filter: saturate(0.98) contrast(1.02);
}

.fleet-type {
  border-radius: 4px;
  color: #101820;
  background: rgba(201, 154, 46, 0.18);
}

.cab-specs div {
  border-top-color: #edf0f3;
}

.cab-type-card .btn,
.fleet-note .btn {
  min-height: 42px;
}

.fleet-note {
  border-left: 4px solid var(--accent);
  background: #fff;
  box-shadow: var(--shadow);
}

.tour-card {
  border-radius: 6px;
}

.tour-card img {
  height: 235px;
}

.tour-card-body {
  background: #fff;
}

.contact-form input,
.contact-form textarea,
input,
textarea {
  border-radius: 4px;
}

.form-note a {
  color: var(--accent-2);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  min-width: 168px;
  padding: 12px 16px;
  border-radius: 6px;
  color: #fff;
  background: #128c4a;
  box-shadow: 0 14px 36px rgba(18, 140, 74, 0.36);
}

.whatsapp-float span {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.whatsapp-float strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

@media (max-width: 920px) {
  .main-nav {
    background: #101820;
    border-color: rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 58px 0 52px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 150px;
    padding: 10px 12px;
  }
}

#successMessage{
display:none;
margin-top:20px;
background:#1e7e34;
padding:15px;
border-radius:10px;
color:white;
font-size:16px;
text-align:center;
}
.whatsapp-float {
    position: fixed;
    bottom: 12px;
    right: 12px;
    width: 20px;   /* small size */
    height: 40px;  /* small size */
    background: #25D366;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    transition: 0.2s ease;
}

.whatsapp-float img {
    width: 18px;
    height: 18px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
