:root{
  --navy:#001F5B;
  --navy2:#062b66;
  --teal:#0DA9C6;
  --teal2:#08bed4;
  --bg:#edf2f8;
  --white:#ffffff;
  --dark:#071633;
  --muted:#64748B;
  --border:#e2e8f0;
  --shadow:0 22px 48px rgba(15,23,42,.11);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
  width:100%;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--dark);
  overflow-x:hidden;
  width:100%;
}

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

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

.site-shell{
  width:100%;
  max-width:1180px;
  margin:18px auto;
  background:var(--white);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 18px 42px rgba(15,23,42,.12);
}

.section-heading{
  text-align:center;
  margin-bottom:26px;
}

.section-heading h2{
  font-size:27px;
  margin:0;
  color:var(--navy);
  font-weight:900;
}

.section-heading span{
  display:block;
  width:52px;
  height:4px;
  background:var(--teal);
  border-radius:999px;
  margin:12px auto 0;
}

.primary-cta,.quote-btn,.whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:0;
  border-radius:10px;
  padding:15px 24px;
  background:linear-gradient(135deg,var(--teal2),var(--teal));
  color:#fff;
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.04em;
  box-shadow:0 12px 26px rgba(13,169,198,.28);
  cursor:pointer;
  max-width:100%;
}

.field label{
  display:block;
  font-size:12px;
  color:#475569;
  margin-bottom:7px;
}

.field input,.field select{
  width:100%;
  height:48px;
  border:1px solid var(--border);
  border-radius:8px;
  padding:0 12px;
  font-size:13px;
  background:#fff;
  color:var(--dark);
}

main{
  padding-top:188px;
}

@media(max-width:820px){
  main{
    padding-top:0;
  }
}

/* desktop shell width */
.site-shell{
  max-width:900px !important;
}

/* Stats text-only section */
.stats-section.stats-section-text-only {
    display: block;
    width: 100%;
    max-width: 100%;
    grid-column: 1 / -1;
    text-align: center;
    padding: 70px 20px;
}

.stats-section.stats-section-text-only .stats-intro {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.stats-section.stats-section-text-only .stats-intro h2 {
    margin: 0 0 14px;
}

.stats-section.stats-section-text-only .stats-intro p {
    max-width: 900px;
    margin: 0 auto;
}

/* Testimonial carousel replacing stats section */
.testimonial-section {
    width: 100%;
    padding: 70px 20px;
    background: #ffffff;
}

.testimonial-section-intro {
    max-width: 1100px;
    margin: 0 auto 32px;
    text-align: center;
}

.testimonial-section-intro h2 {
    margin: 0 0 12px;
}

.testimonial-section-intro p {
    max-width: 850px;
    margin: 0 auto;
}

.testimonial-carousel {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
    gap: 34px;
    align-items: center;
    background: #f8fafc;
    border-radius: 24px;
    padding: 36px;
}

.testimonial-slide.is-active {
    display: grid;
}

.testimonial-content h3 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.15;
}

.testimonial-stars {
    color: #facc15;
    font-size: 34px;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.testimonial-content p {
    color: #667085;
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.55;
    margin: 0 0 26px;
}

.testimonial-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    color: #98a2b3;
}

.testimonial-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-image-wrap img {
    width: 100%;
    max-width: 330px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    background: #ffffff;
    padding: 0;
}

.testimonial-image-wrap img[src$="logo.png"],
.testimonial-image-wrap img[src$="logo.svg"],
.testimonial-image-wrap img[src*="logo"] {
    object-fit: contain;
    padding: 40px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
}

.testimonial-controls button,
.testimonial-dots button {
    cursor: pointer;
}

.testimonial-controls button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    font-size: 28px;
    line-height: 1;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.testimonial-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
}

.testimonial-dots button.is-active {
    background: #0DA9C6;
}

@media (max-width: 800px) {
    .testimonial-slide,
    .testimonial-slide.is-active {
        display: block;
        padding: 26px;
    }

    .testimonial-image-wrap {
        margin-top: 28px;
    }

    .testimonial-content p {
        font-size: 18px;
    }
}

/* Testimonial carousel text size adjustment */
.testimonial-section-intro h2 {
    font-size: clamp(26px, 3vw, 38px);
}

.testimonial-section-intro p {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.6;
}

.testimonial-content h3 {
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.2;
}

.testimonial-stars {
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: clamp(16px, 1.55vw, 20px);
    line-height: 1.55;
}

.testimonial-meta {
    font-size: 14px;
}

.testimonial-image-wrap img[src$="gettaxi_logo.png"],
.testimonial-image-wrap img[src*="gettaxi_logo"] {
    object-fit: contain;
    padding: 44px;
    background: #ffffff;
}

.pwa-install-banner{
  position:fixed;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:5000;
  max-width:520px;
  margin:auto;
  background:#001F5B;
  color:#fff;
  border-radius:18px;
  padding:16px;
  box-shadow:0 24px 70px rgba(0,0,0,.3);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.pwa-install-banner p{
  margin:4px 0 0;
  color:#dbeafe;
  font-size:14px;
}

.pwa-install-actions{
  display:flex;
  gap:8px;
  flex-shrink:0;
}

.pwa-install-actions button{
  border:0;
  border-radius:999px;
  padding:10px 14px;
  font-weight:800;
  cursor:pointer;
}

#pwaInstallBtn{
  background:#0DA9C6;
  color:#fff;
}

#pwaDismissBtn{
  background:#eaf7fb;
  color:#001F5B;
}

@media(max-width:600px){
  .pwa-install-banner{
    flex-direction:column;
    align-items:flex-start;
  }

  .pwa-install-actions{
    width:100%;
  }

  .pwa-install-actions button{
    flex:1;
  }
}
