/* ===============================
   ROOT / DESIGN SYSTEM
=============================== */
:root {
  --primary: #4b1e83;
  --secondary: #6d28d9;
  --accent: #ffcc00;

  --text: #1f1f1f;
  --muted: #666;
  --light: #f6f4ff;
  --bg: #f7f8fc;
  --white: #ffffff;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,0.06);
  --shadow-hover: 0 20px 50px rgba(0,0,0,0.1);
}

/* ===============================
   RESET
=============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  text-decoration: none;
}

/* ===============================
   CONTAINER
=============================== */
.sh-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===============================
   BUTTONS (UPGRADED)
=============================== */
.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sh-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

.sh-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(75,30,131,0.3);
}

.sh-btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.sh-btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ===============================
   HERO (IMPROVED)
=============================== */
.sh-hero {
  padding: 90px 0;
  background: radial-gradient(circle at 20% 30%, #f4f1ff, #ffffff);
}

.sh-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sh-hero-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
}

.sh-hero-content h1 span {
  color: var(--primary);
}

.sh-tag {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.sh-hero-content p {
  color: var(--muted);
  margin: 20px 0 30px;
}

.sh-hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.sh-trust {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  color: var(--muted);
}

/* IMAGE FLOAT */
.sh-hero-image img {
  animation: float 6s ease-in-out infinite;
  box-shadow: var(--shadow);
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===============================
   SECTION GLOBAL
=============================== */
.sh-section {
  padding: 90px 0;
}

.sh-section:nth-child(even) {
  background: var(--light);
}

.sh-section-head {
  margin-bottom: 50px;
}

.sh-section-head.center {
  text-align: center;
}

.sh-section-head span {
  color: var(--primary);
  font-weight: 600;
}

.sh-section-head h2 {
  font-size: 36px;
  margin: 10px 0;
}

.sh-section-head p {
  color: var(--muted);
  max-width: 600px;
  margin: auto;
}

/* ===============================
   GRID
=============================== */
.sh-grid-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
}

/* ===============================
   CARDS (MODERNIZED)
=============================== */
.sh-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.sh-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.sh-card .icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.sh-card h3,
.sh-card h4 {
  margin-bottom: 10px;
}

.sh-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ===============================
   ABOUT
=============================== */
.sh-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.sh-about-content span {
  color: var(--primary);
  font-weight: 600;
}

.sh-stats {
  display: flex;
  gap: 20px;
  margin: 25px 0;
}

.sh-stats div {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  flex: 1;
  box-shadow: var(--shadow);
}

.sh-stats h3 {
  color: var(--primary);
}

/* ===============================
   SERVICES (FIXED BIG ISSUE)
=============================== */
.sh-services {
  background: linear-gradient(135deg, #f4f1ff, #ffffff);
}

/* ===============================
   TESTIMONIALS
=============================== */
.sh-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

.sh-testimonial {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.sh-testimonial:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.sh-testimonial p {
  font-style: italic;
  margin-bottom: 15px;
}

/* ===============================
   CTA
=============================== */
.sh-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: center;
  padding: 90px 20px;
}

.sh-cta h2 {
  font-size: 34px;
}

.sh-cta p {
  margin: 10px 0 25px;
}

/* ===============================
   ANIMATIONS
=============================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE
=============================== */
@media(max-width: 992px) {

  .sh-hero-inner,
  .sh-about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sh-grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .sh-testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 576px) {

  .sh-hero {
    padding: 60px 0;
  }

  .sh-hero-actions {
    flex-direction: column;
  }

  .sh-btn {
    width: 100%;
  }

  .sh-grid-4 {
    grid-template-columns: 1fr;
  }

  .sh-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .sh-stats {
    flex-direction: column;
  }
}


/* ===============================
   about page ==========*/


   /* =========================
   ABOUT PAGE (CLEAN PREMIUM UI)
========================= */

:root {
  --primary: #7b3fe4;
  --secondary: #ff4fa3;
  --blue: #4cc9f0;
  --dark: #111827;
  --text: #374151;
  --muted: #6b7280;
  --bg: #f9fafc;
}

/* GLOBAL CONTAINER */
.aboutx-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   HERO (SIMPLIFIED PREMIUM)
========================= */

.aboutx-hero {
  position: relative;
  padding: 110px 20px;
  background: linear-gradient(135deg, #1a1a2e, #2c2c54);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.aboutx-hero::before,
.aboutx-hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.aboutx-hero::before {
  background: var(--primary);
  top: -100px;
  left: -100px;
}

.aboutx-hero::after {
  background: var(--secondary);
  bottom: -120px;
  right: -120px;
}

.aboutx-hero-content {
  position: relative;
  z-index: 2;
}

.aboutx-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 10px;
}

.aboutx-hero p {
  font-size: 16px;
  color: #d1d5db;
  max-width: 650px;
  margin: auto;
}

/* BREADCRUMB */
.aboutx-breadcrumb {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #cbd5e1;
}

.aboutx-breadcrumb a {
  color: #ff4fa3;
  text-decoration: none;
}

/* =========================
   SECTION BASE
========================= */

.aboutx-section,
.aboutx-values,
.aboutx-trust {
  padding: 70px 0;
}

/* LIGHT BG SECTION */
.aboutx-bg-soft {
  background: #f9fafc;
}

/* TAG */
.aboutx-tag {
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  margin-bottom: 10px;
}

/* =========================
   GRID SYSTEM (FIXED RESPONSIVE)
========================= */

.aboutx-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

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

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

/* =========================
   TEXT STYLES
========================= */

.aboutx-text h2 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.aboutx-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* LIST */
.aboutx-list div {
  margin-top: 8px;
  color: var(--dark);
  font-weight: 500;
  font-size: 14px;
}

/* IMAGE */
.aboutx-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* =========================
   CARDS (CLEAN GLASS STYLE)
========================= */

.aboutx-card,
.aboutx-trust-box {
  background: #fff;
  border: 1px solid #eef0f5;
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.25s ease;
}

.aboutx-card:hover,
.aboutx-trust-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: rgba(123,63,228,0.2);
}

.aboutx-card i,
.aboutx-trust-box i {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 10px;
}

/* CENTER TITLE */
.aboutx-center {
  text-align: center;
  margin-bottom: 40px;
}

.aboutx-center h2 {
  font-size: 30px;
  color: var(--dark);
}

/* =========================
   CTA (MODERN CLEAN GRADIENT)
========================= */

.aboutx-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: center;
}

.aboutx-cta-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.aboutx-cta-box p {
  opacity: 0.9;
}

.aboutx-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 28px;
  background: #fff;
  color: var(--primary);
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.aboutx-btn:hover {
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE FIX (IMPORTANT)
========================= */

@media (max-width: 1024px) {
  .aboutx-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .aboutx-grid-2,
  .aboutx-grid-3 {
    grid-template-columns: 1fr;
  }

  .aboutx-text h2 {
    font-size: 26px;
  }

  .aboutx-hero {
    padding: 90px 20px;
  }
}

@media (max-width: 576px) {
  .aboutx-grid-4 {
    grid-template-columns: 1fr;
  }

  .aboutx-hero h1 {
    font-size: 24px;
  }

  .aboutx-center h2 {
    font-size: 22px;
  }
}


/* =========================
Service Page =======*/



/* =========================
   SERVICES PAGE - MODERN CLEAN UI
========================= */

:root {
  --primary: #7b3fe4;
  --secondary: #ff4fa3;
  --dark: #111827;
  --text: #374151;
  --muted: #6b7280;
  --bg: #f9fafc;
}

/* CONTAINER */
.aboutx-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   HERO SECTION
========================= */

.aboutx-hero {
  position: relative;
  padding: 110px 20px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.aboutx-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 25, 0.65);
}

.aboutx-hero-content {
  position: relative;
  z-index: 2;
}

.aboutx-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 10px;
}

.aboutx-hero p {
  font-size: 16px;
  color: #d1d5db;
  max-width: 650px;
  margin: auto;
}

/* BREADCRUMB */
.aboutx-breadcrumb {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  font-size: 14px;
  color: #cbd5e1;
}

.aboutx-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

/* =========================
   SECTION BASE
========================= */

.aboutx-section,
.aboutx-values,
.aboutx-trust {
  padding: 75px 0;
}

.aboutx-bg-soft {
  background: #f9fafc;
}

/* TAG */
.aboutx-tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin-bottom: 10px;
}

/* =========================
   GRID SYSTEM (FIXED)
========================= */

.aboutx-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

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

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

/* =========================
   TEXT
========================= */

.aboutx-text h2 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.aboutx-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* IMAGE */
.aboutx-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* =========================
   SERVICE CARDS
========================= */

.aboutx-card,
.aboutx-trust-box {
  background: #fff;
  border: 1px solid #eef0f5;
  padding: 24px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.25s ease;
}

.aboutx-card:hover,
.aboutx-trust-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  border-color: rgba(123,63,228,0.25);
}

.aboutx-card i,
.aboutx-trust-box i {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 10px;
}

.aboutx-card h3,
.aboutx-trust-box h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--dark);
}

.aboutx-card p,
.aboutx-trust-box p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================
   SECTION TITLE CENTER
========================= */

.aboutx-center {
  text-align: center;
  margin-bottom: 40px;
}

.aboutx-center h2 {
  font-size: 30px;
  color: var(--dark);
}

/* =========================
   CTA SECTION
========================= */

.aboutx-cta {
  padding: 85px 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  text-align: center;
}

.aboutx-cta-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.aboutx-cta-box p {
  opacity: 0.9;
  max-width: 600px;
  margin: auto;
}

/* BUTTON */
.aboutx-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 30px;
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.25s ease;
}

.aboutx-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* =========================
   RESPONSIVE DESIGN (IMPORTANT)
========================= */

@media (max-width: 1024px) {
  .aboutx-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {

  .aboutx-grid-2,
  .aboutx-grid-3 {
    grid-template-columns: 1fr;
  }

  .aboutx-text h2 {
    font-size: 26px;
  }

  .aboutx-hero {
    padding: 90px 20px;
  }
}

@media (max-width: 576px) {

  .aboutx-grid-4 {
    grid-template-columns: 1fr;
  }

  .aboutx-hero h1 {
    font-size: 24px;
  }

  .aboutx-center h2 {
    font-size: 22px;
  }

  .aboutx-card,
  .aboutx-trust-box {
    padding: 18px;
  }
}





/* =========================
   Contact Page =======*/

   

/* =========================
   CONTACT PAGE - POLISHED UI
========================= */

:root {
  --primary: #7b3fe4;
  --secondary: #ff4fa3;
  --dark: #111827;
  --text: #374151;
  --muted: #6b7280;
}

/* SECTION */
.contact-info-section,
.contact-form-section {
  padding: 80px 0;
}

/* TITLE */
.section-title h2 {
  font-size: 32px;
  color: var(--dark);
  line-height: 1.3;
}

/* =========================
   CONTACT CARDS (2 COLUMN LAYOUT FIX)
========================= */

.contact-card {
  background: #fff;
  border: 1px solid #eef0f5;
  padding: 28px 22px;
  border-radius: 16px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(123,63,228,0.15);
  border-color: rgba(123,63,228,0.25);
}

/* ICON INLINE FIX */
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.contact-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* TEXT */
.contact-card h4 {
  font-size: 16px;
  margin-bottom: 3px;
  color: var(--dark);
}

.contact-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.contact-card a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

/* =========================
   FORM SECTION
========================= */

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid #eef0f5;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* INPUT */
.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-group i {
  position: absolute;
  left: 14px;
  color: var(--primary);
  font-size: 14px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 14px 14px 40px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.input-group textarea {
  resize: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123,63,228,0.12);
}

/* =========================
   BUTTON
========================= */

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(123,63,228,0.25);
}

/* =========================
   RESPONSIVE FIXES
========================= */

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 26px;
  }

  .contact-form {
    padding: 25px;
  }
}

/* 🔥 KEY FIX: 2 COLUMNS ON MOBILE */
@media (max-width: 768px) {
  .contact-card {
    flex-direction: row;
  }

  .row.g-4 > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .section-title h2 {
    font-size: 22px;
  }

  .contact-card {
    padding: 18px;
  }

  /* fallback to full width on very small screens */
  .row.g-4 > div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .btn-submit {
    width: 100%;
    justify-content: center;
  }
}







/* =========================
   CONTACT PAGE - FINAL UNIFIED DESIGN
========================= */

:root {
  --primary: #7b3fe4;
  --secondary: #ff4fa3;
  --dark: #111827;
  --muted: #6b7280;
}

/* SECTION */
.contact-info-section,
.contact-form-section {
  padding: 40px 0;
  background: #f9fafc;
}

/* =========================
   SECTION TITLE
========================= */

.section-title h2 {
  font-size: 32px;
  color: var(--dark);
  line-height: 1.3;
}

/* =========================
   OUTER WRAPPER (THIS MATCHES FORM)
========================= */

.contact-box-wrapper {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid #eef0f5;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* =========================
   CONTACT CARDS (INLINE ICON + TEXT)
========================= */

.contact-card {
  background: #f8fafc;
  border: 1px solid #eef0f5;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.25s ease;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(123,63,228,0.12);
  border-color: rgba(123,63,228,0.25);
}

/* ICON INLINE FIX */
.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.contact-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

/* TEXT */
.contact-text h4 {
  font-size: 16px;
  margin: 0;
  color: var(--dark);
}

.contact-text p {
  margin: 3px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.contact-text a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

/* =========================
   FORM (MATCH BOX STYLE)
========================= */

.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  border: 1px solid #eef0f5;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* INPUT */
.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 14px 14px 14px 40px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  outline: none;
  transition: 0.2s;
}

.input-group textarea {
  resize: none;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(123,63,228,0.12);
}

/* =========================
   BUTTON
========================= */

.btn-submit {
  padding: 14px 30px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(123,63,228,0.25);
}

/* =========================
   RESPONSIVE FIX
========================= */

@media (max-width: 991px) {
  .contact-box-wrapper {
    padding: 25px;
  }

  .section-title h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .contact-box-wrapper {
    padding: 20px;
  }

  .contact-card {
    flex-direction: row;
    padding: 16px;
  }

  .btn-submit {
    width: 100%;
  }
}





/* ================= NEW HOME START R5 HERO ================= */

.r5-hero {
  position: relative;
  padding: 90px 20px;
  background: radial-gradient(circle at top left, #4b1e83 0%, #1a1a1a 100%);
  overflow: hidden;
  color: #fff;
}

/* soft glow */
.r5-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 204, 0, 0.25);
  filter: blur(120px);
  top: -120px;
  left: -120px;
  z-index: 0;
}

.r5-container {
  max-width: 1200px;
  margin: auto;
}

.r5-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* CONTENT */
.r5-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

.r5-hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.r5-hero-content h1 span {
  color: #ffcc00;
}

.r5-hero-content p {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* BUTTONS */
.r5-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.r5-btn {
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.r5-btn.primary {
  background: #ffcc00;
  color: #000;
}

.r5-btn.primary:hover {
  transform: translateY(-2px);
}

.r5-btn.outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

.r5-btn.outline:hover {
  background: rgba(255,255,255,0.1);
}

/* TRUST */
.r5-trust {
  display: flex;
  gap: 18px;
  font-size: 13px;
  opacity: 0.9;
  flex-wrap: wrap;
}

/* IMAGE SIDE */
.r5-hero-media {
  position: relative;
}

.r5-hero-media img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* FLOATING CARDS */
.r5-floating {
  position: absolute;
  background: rgba(255,255,255,0.12);
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 13px;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.r5-floating.f1 {
  top: 20px;
  left: -20px;
}

.r5-floating.f2 {
  bottom: 30px;
  right: -10px;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .r5-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .r5-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .r5-trust {
    justify-content: center;
  }

  .r5-hero-content h1 {
    font-size: 36px;
  }

  .r5-floating {
    display: none;
  }
}

/* ================= NEW section ================= */
/* ================= R5 FEATURES ================= */

.r5-features {
  position: relative;
  padding: 90px 20px;
  background: #f7f5fb;
  overflow: hidden;
}

/* soft glow */
.r5-features-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(75, 30, 131, 0.08);
  filter: blur(120px);
  top: -150px;
  right: -150px;
}

/* container */
.r5-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* section head */
.r5-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.r5-tag {
  display: inline-block;
  background: rgba(75,30,131,0.1);
  color: #4b1e83;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 600;
}

.r5-section-head h2 {
  font-size: 40px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.r5-section-head p {
  max-width: 650px;
  margin: auto;
  color: #555;
  line-height: 1.6;
}

/* GRID */
.r5-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.r5-feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* hover effect */
.r5-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* subtle top border glow */
.r5-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #4b1e83, #ffcc00);
}

/* ICON */
.r5-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

/* TEXT */
.r5-feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.r5-feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .r5-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .r5-section-head h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .r5-features-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= NEW about section ================= */

/* ================= R5 ABOUT ================= */

.r5-about {
  position: relative;
  padding: 90px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* glow */
.r5-about-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255, 204, 0, 0.15);
  filter: blur(120px);
  bottom: -150px;
  left: -150px;
}

/* container */
.r5-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.r5-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* IMAGE */
.r5-about-media {
  position: relative;
}

.r5-about-media img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* floating badge */
.r5-about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(75,30,131,0.9);
  color: #fff;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

/* TAG */
.r5-tag {
  display: inline-block;
  background: rgba(75,30,131,0.1);
  color: #4b1e83;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TITLE */
.r5-about-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.r5-about-content h2 span {
  color: #4b1e83;
}

.r5-about-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* STATS */
.r5-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 25px;
}

.r5-stat {
  background: #f7f5fb;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  transition: 0.25s ease;
}

.r5-stat:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.r5-stat h3 {
  font-size: 24px;
  color: #4b1e83;
  margin-bottom: 5px;
}

.r5-stat p {
  font-size: 13px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .r5-about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .r5-stats {
    grid-template-columns: 1fr;
  }

  .r5-about-content h2 {
    font-size: 32px;
  }

  .r5-about-badge {
    position: static;
    display: inline-block;
    margin-top: 15px;
  }
}

/* ================= NEW services section ================= */

/* ================= R5 SERVICES ================= */

.r5-services {
  position: relative;
  padding: 90px 20px;
  background: #f7f5fb;
  overflow: hidden;
}

/* glow */
.r5-services-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(75, 30, 131, 0.12);
  filter: blur(120px);
  top: -120px;
  right: -120px;
}

/* container */
.r5-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* section head */
.r5-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.r5-tag {
  display: inline-block;
  background: rgba(75,30,131,0.1);
  color: #4b1e83;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.r5-section-head h2 {
  font-size: 40px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.r5-section-head p {
  max-width: 650px;
  margin: auto;
  color: #666;
  line-height: 1.6;
}

/* GRID */
.r5-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.r5-service-card {
  background: #fff;
  padding: 30px 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* hover lift */
.r5-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}

/* top accent line */
.r5-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #4b1e83, #ffcc00);
}

/* ICON */
.r5-service-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

/* TITLE */
.r5-service-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

/* TEXT */
.r5-service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .r5-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .r5-section-head h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .r5-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= NEW testomnials section ================= */

/* ================= R5 TESTIMONIALS ================= */

.r5-testimonials {
  position: relative;
  padding: 90px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* glow */
.r5-testimonials-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(75, 30, 131, 0.10);
  filter: blur(120px);
  bottom: -150px;
  right: -150px;
}

/* container */
.r5-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* section head */
.r5-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.r5-tag {
  display: inline-block;
  background: rgba(75,30,131,0.1);
  color: #4b1e83;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.r5-section-head h2 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.r5-section-head p {
  max-width: 650px;
  margin: auto;
  color: #666;
  line-height: 1.6;
}

/* GRID */
.r5-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD */
.r5-testimonial-card {
  background: #f7f5fb;
  padding: 30px 24px;
  border-radius: 18px;
  position: relative;
  transition: 0.25s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* hover */
.r5-testimonial-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* quote mark */
.r5-quote {
  font-size: 60px;
  color: rgba(75,30,131,0.15);
  position: absolute;
  top: 10px;
  left: 15px;
  font-weight: bold;
}

/* text */
.r5-testimonial-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 15px;
}

/* name */
.r5-testimonial-card h4 {
  font-size: 15px;
  color: #4b1e83;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .r5-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .r5-section-head h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .r5-testimonial-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= NEW CTA section ================= */

/* ================= R5 CTA ================= */

.r5-cta {
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(135deg, #4b1e83, #1a1a1a);
  overflow: hidden;
  text-align: center;
  color: #fff;
}

/* glow effect */
.r5-cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 204, 0, 0.25);
  filter: blur(140px);
  top: -200px;
  right: -200px;
  z-index: 0;
}

/* container */
.r5-container {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* inner spacing */
.r5-cta-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* content */
.r5-cta-content {
  max-width: 700px;
}

/* tag */
.r5-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

/* heading */
.r5-cta-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.r5-cta-content h2 span {
  color: #ffcc00;
}

/* paragraph */
.r5-cta-content p {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* BUTTON (reuse style consistency) */
.r5-btn {
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
  display: inline-block;
}

.r5-btn.primary {
  background: #ffcc00;
  color: #000;
}

.r5-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .r5-cta-content h2 {
    font-size: 30px;
  }

  .r5-cta-content p {
    font-size: 14px;
  }
}




/* =========================
  ABOUT PAGE
========================= */

/* ================= R5 ABOUT PAGE ================= */

.r5-aboutpage {
  position: relative;
  padding: 90px 20px;
  background: #f7f5fb;
  overflow: hidden;
}

/* glow */
.r5-aboutpage-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  background: rgba(75, 30, 131, 0.12);
  filter: blur(130px);
  top: -180px;
  right: -180px;
}

/* container */
.r5-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* GRID */
.r5-aboutpage-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TAG */
.r5-tag {
  display: inline-block;
  background: rgba(75,30,131,0.1);
  color: #4b1e83;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* TITLE */
.r5-aboutpage-text h2 {
  font-size: 42px;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 15px;
}

.r5-aboutpage-text h2 span {
  color: #4b1e83;
}

/* PARAGRAPH */
.r5-aboutpage-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* LIST */
.r5-aboutpage-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.r5-aboutpage-list div {
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  color: #333;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.r5-aboutpage-list div:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* IMAGE */
.r5-aboutpage-media {
  position: relative;
}

.r5-aboutpage-media img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* badge */
.r5-aboutpage-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(75,30,131,0.9);
  color: #fff;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .r5-aboutpage-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .r5-aboutpage-list {
    align-items: center;
  }

  .r5-aboutpage-text h2 {
    font-size: 32px;
  }

  .r5-aboutpage-badge {
    position: static;
    display: inline-block;
    margin-top: 15px;
  }
}


/* =========================
  about new section
========================= */

/* ================= R5 VALUES ================= */

.r5-values {
  position: relative;
  padding: 90px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* glow */
.r5-values-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  background: rgba(255, 204, 0, 0.12);
  filter: blur(130px);
  bottom: -180px;
  left: -180px;
}

/* container */
.r5-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* header */
.r5-values-head {
  text-align: center;
  margin-bottom: 50px;
}

.r5-tag {
  display: inline-block;
  background: rgba(75,30,131,0.1);
  color: #4b1e83;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.r5-values-head h2 {
  font-size: 40px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.r5-values-head p {
  max-width: 650px;
  margin: auto;
  color: #666;
  line-height: 1.6;
}

/* GRID */
.r5-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD */
.r5-value-card {
  background: #f7f5fb;
  padding: 30px 24px;
  border-radius: 18px;
  text-align: center;
  transition: 0.25s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* hover */
.r5-value-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* ICON */
.r5-value-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

/* TITLE */
.r5-value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

/* TEXT */
.r5-value-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .r5-values-grid {
    grid-template-columns: 1fr;
  }

  .r5-values-head h2 {
    font-size: 32px;
  }
}

/* =========================
  new section
========================= */

/* ================= R5 TRUST ================= */

.r5-trust {
  position: relative;
  padding: 70px 20px;
  background: #f7f5fb;
  overflow: hidden;
}

/* glow */
.r5-trust-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(75, 30, 131, 0.12);
  filter: blur(130px);
  top: -150px;
  right: -150px;
}

/* container */
.r5-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* GRID */
.r5-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD */
.r5-trust-box {
  background: #fff;
  padding: 26px 18px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* hover */
.r5-trust-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* top accent line */
.r5-trust-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #4b1e83, #ffcc00);
}

/* ICON */
.r5-trust-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* TITLE */
.r5-trust-box h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #1a1a1a;
}

/* TEXT */
.r5-trust-box p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .r5-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .r5-trust-grid {
    grid-template-columns: 1fr;
  }
}



/* =========================
 about cta new section
========================= */

/* ================= R5 ABOUT CTA ================= */

.r5-about-cta {
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(135deg, #4b1e83, #1a1a1a);
  overflow: hidden;
  text-align: center;
  color: #fff;
}

/* glow */
.r5-about-cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 204, 0, 0.25);
  filter: blur(140px);
  top: -200px;
  left: -200px;
  z-index: 0;
}

/* container */
.r5-container {
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* box */
.r5-about-cta-box {
  max-width: 700px;
  margin: auto;
}

/* tag */
.r5-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
}

/* heading */
.r5-about-cta-box h2 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 12px;
}

/* paragraph */
.r5-about-cta-box p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* button reuse */
.r5-btn {
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
  display: inline-block;
}

.r5-btn.primary {
  background: #ffcc00;
  color: #000;
}

.r5-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .r5-about-cta-box h2 {
    font-size: 28px;
  }

  .r5-about-cta-box p {
    font-size: 14px;
  }
}




/* =========================
 SEVICES PAGE
========================= */


/* ================= R5 SERVICES INTRO ================= */

.r5-services-intro {
  position: relative;
  padding: 90px 20px;
  background: #f7f5fb;
  overflow: hidden;
}

/* glow */
.r5-services-intro-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  background: rgba(75, 30, 131, 0.12);
  filter: blur(130px);
  top: -180px;
  right: -180px;
}

/* container */
.r5-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* GRID */
.r5-services-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* TAG */
.r5-tag {
  display: inline-block;
  background: rgba(75,30,131,0.1);
  color: #4b1e83;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* TEXT */
.r5-services-intro-text h2 {
  font-size: 42px;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 15px;
}

.r5-services-intro-text h2 span {
  color: #4b1e83;
}

.r5-services-intro-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* IMAGE */
.r5-services-intro-media {
  position: relative;
}

.r5-services-intro-media img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* badge */
.r5-services-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(75,30,131,0.9);
  color: #fff;
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .r5-services-intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .r5-services-intro-text h2 {
    font-size: 32px;
  }

  .r5-services-badge {
    position: static;
    display: inline-block;
    margin-top: 15px;
  }
}



/* ================= R5 SERVICE DETAILS ================= */
/* ================= R5 SERVICES PAGE ================= */

.r5-services-page {
  position: relative;
  padding: 90px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* glow */
.r5-services-page-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(75, 30, 131, 0.10);
  filter: blur(140px);
  top: -200px;
  left: -200px;
}

/* container */
.r5-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* section head */
.r5-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.r5-tag {
  display: inline-block;
  background: rgba(75,30,131,0.1);
  color: #4b1e83;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.r5-section-head h2 {
  font-size: 40px;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.r5-section-head p {
  max-width: 650px;
  margin: auto;
  color: #666;
  line-height: 1.6;
}

/* GRID */
.r5-services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* CARD */
.r5-service-card {
  background: #f7f5fb;
  padding: 30px 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* hover */
.r5-service-card:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* gradient top line */
.r5-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #4b1e83, #ffcc00);
}

/* ICON */
.r5-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

/* TITLE */
.r5-service-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

/* TEXT */
.r5-service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .r5-services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .r5-section-head h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .r5-services-page-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
  services new cta section
========================= */
/* ================= R5 WHY SECTION ================= */

.r5-why {
  position: relative;
  padding: 90px 20px;
  background: #f7f5fb;
  overflow: hidden;
}

/* container */
.r5-container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* GRID */
.r5-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

/* CARD */
.r5-why-card {
  background: #fff;
  padding: 26px 18px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.25s ease;
  position: relative;
}

/* hover */
.r5-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* icon */
.r5-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

/* text */
.r5-why-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.r5-why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ================= CTA ================= */

.r5-why-cta {
  position: relative;
  padding: 90px 20px;
  background: linear-gradient(135deg, #4b1e83, #1a1a1a);
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* glow */
.r5-cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 204, 0, 0.25);
  filter: blur(140px);
  top: -200px;
  right: -200px;
  z-index: 0;
}

/* CTA box */
.r5-cta-box {
  max-width: 700px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* tag */
.r5-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
}

/* heading */
.r5-cta-box h2 {
  font-size: 40px;
  margin-bottom: 12px;
}

/* paragraph */
.r5-cta-box p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* button reuse */
.r5-btn {
  padding: 14px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
  display: inline-block;
}

.r5-btn.primary {
  background: #ffcc00;
  color: #000;
}

.r5-btn.primary:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .r5-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .r5-cta-box h2 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .r5-why-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
new contact  page
========================= */

/* ================= R5 CONTACT ================= */

.r5-contact {
  position: relative;
  padding: 90px 20px;
  background: #f7f5fb;
  overflow: hidden;
}

/* GRID */
.r5-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* CARD */
.r5-contact-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.r5-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

/* ICON */
.r5-contact-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* TEXT */
.r5-contact-card h4 {
  margin-bottom: 6px;
  font-size: 16px;
}

.r5-contact-card a {
  color: #4b1e83;
  font-weight: 600;
  text-decoration: none;
}

/* ================= FORM ================= */
/* ================= R5 CONTACT FORM ================= */

.r5-contact-form {
  padding: 90px 20px;
  background: #ffffff;
}

/* SECTION HEAD (optional consistency) */
.r5-contact-form .r5-section-head {
  text-align: center;
  margin-bottom: 40px;
}

/* FORM CARD */
.r5-contact-form-card {
  max-width: 750px;
  margin: auto;
  background: #f7f5fb;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(75,30,131,0.08);
}

/* FORM GRID */
.r5-contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* FULL WIDTH FIELD */
.r5-contact-form-input.full {
  grid-column: 1 / -1;
}

/* INPUT WRAPPER */
.r5-contact-form-input {
  display: flex;
  flex-direction: column;
}

/* LABEL */
.r5-contact-form-input label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

/* INPUTS */
.r5-contact-form-input input,
.r5-contact-form-input textarea {
  padding: 14px 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.25s ease;
  background: #fff;
}

/* FOCUS EFFECT */
.r5-contact-form-input input:focus,
.r5-contact-form-input textarea:focus {
  border-color: #4b1e83;
  box-shadow: 0 0 0 3px rgba(75,30,131,0.15);
}

/* BUTTON */
.r5-contact-form-btn {
  margin-top: 20px;
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  background: #ffcc00;
  color: #000;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 15px;
}

.r5-contact-form-btn:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .r5-contact-form-grid {
    grid-template-columns: 1fr;
  }

  .r5-contact-form-card {
    padding: 25px;
  }
}



/* ================= TRUST BAR FIX ================= */

.r5-trust {
  display: flex;
  gap: 18px;
  font-size: 13px;
  opacity: 0.95;
  flex-wrap: wrap;
  margin-top: 10px;

  /* FIX: remove grey block issue */
  background: transparent;
  padding: 0;
}

/* Each trust item */
.r5-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
}

/* Optional: check icon styling */
.r5-trust span::before {
  content: "✓";
  color: #ffcc00;
  font-weight: bold;
}








:root {
  --gt-home-black: var(--gtp-black, #1d1917);
  --gt-home-black-2: var(--gtp-black-2, #2b2522);
  --gt-home-white: var(--gtp-white, #ffffff);
  --gt-home-cream: var(--gtp-cream, #f7f3ef);
  --gt-home-cream-2: #fffaf6;
  --gt-home-text: var(--gtp-text, #1f1a17);
  --gt-home-muted: var(--gtp-muted, #6f6761);
  --gt-home-border: var(--gtp-border, rgba(31, 26, 23, 0.12));
  --gt-home-red: var(--gtp-red, #c91f2f);
  --gt-home-red-dark: var(--gtp-red-dark, #9f1724);
  --gt-home-green: var(--gtp-green, #0f766e);
  --gt-home-shadow: 0 26px 80px rgba(29, 25, 23, 0.14);
  --gt-home-radius: 34px;
}

.gt-home,
.gt-home * {
  box-sizing: border-box;
}

.gt-home {
  position: relative;
  overflow: hidden;
  color: var(--gt-home-text);
  background:
    radial-gradient(circle at 7% 2%, rgba(201, 31, 47, 0.11), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(15, 118, 110, 0.10), transparent 26rem),
    linear-gradient(180deg, var(--gt-home-cream-2) 0%, #ffffff 43%, var(--gt-home-cream) 100%);
}

.gt-home a {
  color: inherit;
}

.gt-home-shell {
  width: min(100% - clamp(20px, 4vw, 64px), 1420px);
  margin-inline: auto;
}

.gt-hero {
  position: relative;
  padding: clamp(64px, 8vw, 124px) 0 clamp(28px, 4vw, 58px);
}

.gt-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 5vw, 86px);
}

.gt-hero-copy {
  position: relative;
  z-index: 2;
}

.gt-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(201, 31, 47, 0.18);
  border-radius: 999px;
  background: rgba(201, 31, 47, 0.08);
  color: var(--gt-home-red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.gt-eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(201, 31, 47, 0.12);
}

.gt-eyebrow--dark {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.gt-hero h1,
.gt-section-heading h2,
.gt-split-copy h2,
.gt-faq-intro h2,
.gt-final-card h2,
.gt-dark-band h2 {
  margin: 16px 0;
  color: var(--gt-home-text);
  font-size: clamp(42px, 6.2vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.gt-hero p,
.gt-section-heading p,
.gt-split-copy p,
.gt-faq-intro p,
.gt-final-card p,
.gt-dark-band p {
  max-width: 760px;
  margin: 0;
  color: var(--gt-home-muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
}

.gt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.gt-hero-actions--center {
  justify-content: center;
}

.gt-home-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.gt-home-btn--primary {
  color: var(--gt-home-white);
  background: linear-gradient(135deg, var(--gt-home-red), var(--gt-home-red-dark));
  box-shadow: 0 16px 36px rgba(201, 31, 47, 0.28);
}

.gt-home-btn--light {
  color: var(--gt-home-text);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--gt-home-border);
  box-shadow: 0 14px 30px rgba(29, 25, 23, 0.07);
}

.gt-home-btn:hover {
  transform: translateY(-2px);
}

.gt-home-btn--primary:hover {
  color: var(--gt-home-white);
  box-shadow: 0 22px 44px rgba(201, 31, 47, 0.36);
}

.gt-home-btn--light:hover {
  border-color: rgba(201, 31, 47, 0.28);
  background: #ffffff;
}

.gt-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin-top: 34px;
}

.gt-hero-trust div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--gt-home-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 30px rgba(29, 25, 23, 0.05);
}

.gt-hero-trust strong {
  display: block;
  color: var(--gt-home-text);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.gt-hero-trust span {
  display: block;
  margin-top: 7px;
  color: var(--gt-home-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.gt-hero-visual {
  position: relative;
  min-height: 590px;
}

.gt-orbit {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.gt-orbit--one {
  inset: 20px auto auto 26px;
  width: 190px;
  height: 190px;
  background: rgba(201, 31, 47, 0.10);
}

.gt-orbit--two {
  right: 20px;
  bottom: 12px;
  width: 240px;
  height: 240px;
  background: rgba(15, 118, 110, 0.11);
}

.gt-transport-card {
  position: relative;
  z-index: 2;
  min-height: 530px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 44px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.22), transparent 16rem),
    radial-gradient(circle at 88% 82%, rgba(201, 31, 47, 0.34), transparent 16rem),
    linear-gradient(135deg, var(--gt-home-black), var(--gt-home-black-2));
  box-shadow: var(--gt-home-shadow);
  overflow: hidden;
}

.gt-transport-card::before {
  content: "";
  position: absolute;
  inset: 96px 34px 130px;
  border-radius: 36px;
  background:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, #000 45%, transparent 78%);
  opacity: 0.9;
}

.gt-transport-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-transport-top strong {
  margin-left: auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #ffffff;
  color: var(--gt-home-black);
  font-size: 20px;
  letter-spacing: -0.08em;
}

.gt-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #18d39e;
  box-shadow: 0 0 0 7px rgba(24, 211, 158, 0.15);
}

.gt-route-board {
  position: relative;
  z-index: 3;
  height: 336px;
  margin-top: 32px;
}

.gt-route-line {
  position: absolute;
  left: 66px;
  right: 66px;
  top: 50%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%);
  overflow: hidden;
}

.gt-route-line span {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, #ffffff 0 24px, transparent 24px 38px);
  opacity: 0.85;
}

.gt-route-line i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 55%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(201,31,47,0), rgba(201,31,47,0.72));
  transform: translateY(-50%);
}

.gt-location-card {
  position: absolute;
  z-index: 3;
  width: 148px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.gt-location-card--start {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.gt-location-card--end {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.gt-location-card small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-location-card strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.15;
}

.gt-van-graphic {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 176px;
  height: 116px;
  transform: translate(-50%, -50%);
}

.gt-van-body {
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  height: 76px;
  border-radius: 28px 34px 22px 22px;
  background: linear-gradient(135deg, #ffffff, #f6f0ea);
  box-shadow: 0 28px 60px rgba(0,0,0,0.28);
}

.gt-van-body::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 20px;
  width: 42px;
  height: 24px;
  border-radius: 9px 16px 8px 8px;
  background: rgba(29, 25, 23, 0.14);
}

.gt-van-window {
  position: absolute;
  left: 26px;
  top: 18px;
  width: 48px;
  height: 26px;
  border-radius: 10px;
  background: rgba(29, 25, 23, 0.16);
}

.gt-van-cross {
  position: absolute;
  left: 84px;
  top: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gt-home-red);
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.gt-van-stripe {
  position: absolute;
  left: 24px;
  right: 22px;
  bottom: 18px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gt-home-red), var(--gt-home-black));
}

.gt-wheel {
  position: absolute;
  bottom: 10px;
  width: 32px;
  height: 32px;
  border: 8px solid var(--gt-home-black);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.26);
}

.gt-wheel--left {
  left: 32px;
}

.gt-wheel--right {
  right: 28px;
}

.gt-ride-metrics {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.gt-ride-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.10);
}

.gt-ride-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-ride-metrics strong {
  display: block;
  margin-top: 7px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.22;
}

.gt-floating-note {
  position: absolute;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 260px;
  padding: 13px 16px;
  border: 1px solid var(--gt-home-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gt-home-text);
  box-shadow: 0 18px 44px rgba(29, 25, 23, 0.16);
}

.gt-floating-note b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gt-home-red);
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.gt-floating-note span {
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
}

.gt-floating-note--one {
  left: -45px;
  top: 78px;
}

.gt-floating-note--two {
  right: -45px;
  top: 175px;
}

.gt-floating-note--three {
  left: 40px;
  bottom: -24px;
}

.gt-quick-panel {
  padding: 0 0 clamp(56px, 7vw, 92px);
}

.gt-quick-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.05fr;
  gap: 14px;
}

.gt-quick-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "label arrow"
    "title arrow";
  gap: 6px 12px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--gt-home-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(29, 25, 23, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gt-quick-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 31, 47, 0.24);
  box-shadow: 0 22px 48px rgba(29, 25, 23, 0.12);
}

.gt-quick-card span {
  grid-area: label;
  color: var(--gt-home-red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-quick-card strong {
  grid-area: title;
  min-width: 0;
  color: var(--gt-home-text);
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 950;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.gt-quick-card em {
  grid-area: arrow;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gt-home-cream);
  color: var(--gt-home-red);
  font-style: normal;
  font-weight: 950;
}

.gt-quick-card--dark {
  background: linear-gradient(135deg, var(--gt-home-black), var(--gt-home-black-2));
}

.gt-quick-card--dark span,
.gt-quick-card--dark strong {
  color: #ffffff;
}

.gt-quick-card--dark em {
  background: var(--gt-home-red);
  color: #ffffff;
}

.gt-home-section {
  position: relative;
  padding: clamp(72px, 8vw, 124px) 0;
}

.gt-section-heading {
  max-width: 880px;
  margin: 0 auto 42px;
  text-align: center;
}

.gt-section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.gt-section-heading h2,
.gt-split-copy h2,
.gt-faq-intro h2,
.gt-final-card h2,
.gt-dark-band h2 {
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 0.98;
}

.gt-section-heading p {
  margin-inline: auto;
}

.gt-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gt-service-card,
.gt-process-card,
.gt-large-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gt-home-border);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(29, 25, 23, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gt-service-card {
  min-height: 256px;
  padding: 28px;
  border-radius: 30px;
}

.gt-service-card::after,
.gt-process-card::after,
.gt-large-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(201, 31, 47, 0.08);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gt-service-card:hover,
.gt-process-card:hover,
.gt-large-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 31, 47, 0.24);
  box-shadow: 0 24px 60px rgba(29, 25, 23, 0.12);
}

.gt-service-card:hover::after,
.gt-process-card:hover::after,
.gt-large-card:hover::after {
  transform: scale(1.16);
  opacity: 0.9;
}

.gt-service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gt-home-black), var(--gt-home-black-2));
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.gt-service-card h3,
.gt-process-card h3,
.gt-large-card h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 10px;
  color: var(--gt-home-text);
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.gt-service-card p,
.gt-process-card p,
.gt-large-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--gt-home-muted);
  font-size: 15px;
  line-height: 1.68;
}

.gt-split {
  background:
    radial-gradient(circle at 80% 15%, rgba(201,31,47,0.06), transparent 24rem),
    var(--gt-home-cream);
}

.gt-split-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(34px, 6vw, 88px);
}

.gt-safety-graphic {
  position: relative;
  min-height: 480px;
}

.gt-safety-card--main {
  position: absolute;
  inset: 42px 40px 52px 20px;
  display: grid;
  align-content: end;
  padding: 34px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 38%, rgba(201, 31, 47, 0.54), transparent 6rem),
    linear-gradient(135deg, #3c332e, var(--gt-home-black));
  color: #ffffff;
  box-shadow: var(--gt-home-shadow);
  overflow: hidden;
}

.gt-safety-card--main::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.gt-safety-ring {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 152px;
  height: 152px;
  border: 22px solid #ffffff;
  border-top-color: var(--gt-home-red);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  opacity: 0.9;
}

.gt-safety-card--main strong,
.gt-safety-card--main p {
  position: relative;
  z-index: 1;
}

.gt-safety-card--main strong {
  display: block;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.gt-safety-card--main p {
  max-width: 360px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.gt-safety-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border: 1px solid var(--gt-home-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 42px rgba(29, 25, 23, 0.13);
  color: var(--gt-home-text);
  font-size: 13px;
  font-weight: 950;
}

.gt-safety-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gt-home-red);
}

.gt-safety-pill--one {
  left: 0;
  top: 24px;
}

.gt-safety-pill--two {
  right: 4px;
  top: 174px;
}

.gt-safety-pill--three {
  left: 34px;
  bottom: 16px;
}

.gt-feature-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.gt-feature-list div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--gt-home-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.gt-feature-list b {
  color: var(--gt-home-text);
  font-size: 16px;
  font-weight: 950;
}

.gt-feature-list span {
  color: var(--gt-home-muted);
  line-height: 1.6;
}

.gt-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gt-process-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 30px;
}

.gt-process-card > span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 31, 47, 0.09);
  color: var(--gt-home-red);
  font-size: 14px;
  font-weight: 950;
}

.gt-dark-band {
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(201,31,47,0.28), transparent 22rem),
    radial-gradient(circle at 92% 78%, rgba(255,255,255,0.09), transparent 22rem),
    linear-gradient(135deg, var(--gt-home-black), var(--gt-home-black-2));
}

.gt-dark-band h2,
.gt-dark-band p {
  color: #ffffff;
}

.gt-dark-band p {
  color: rgba(255, 255, 255, 0.72);
}

.gt-priority-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: clamp(34px, 5vw, 78px);
}

.gt-priority-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gt-priority-list div {
  min-height: 158px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.09);
}

.gt-priority-list b {
  display: block;
  color: #ffffff;
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.gt-priority-list span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.gt-reviews-careers {
  background: var(--gt-home-cream);
}

.gt-two-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gt-large-card {
  min-height: 342px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 36px;
}

.gt-large-card--accent {
  background:
    radial-gradient(circle at 90% 12%, rgba(201,31,47,0.12), transparent 14rem),
    rgba(255, 255, 255, 0.84);
}

.gt-card-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 31, 47, 0.09);
  color: var(--gt-home-red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-large-card h3 {
  max-width: 580px;
  margin-top: 28px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.gt-text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--gt-home-red);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
}

.gt-text-link:hover {
  color: var(--gt-home-red-dark);
}

.gt-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.gt-faq-list {
  display: grid;
  gap: 12px;
}

.gt-faq-list details {
  border: 1px solid var(--gt-home-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(29, 25, 23, 0.05);
  overflow: hidden;
}

.gt-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--gt-home-text);
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

.gt-faq-list summary::-webkit-details-marker {
  display: none;
}

.gt-faq-list summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gt-home-cream);
  color: var(--gt-home-red);
  font-size: 18px;
  font-weight: 950;
}

.gt-faq-list details[open] summary::after {
  content: "-";
  background: var(--gt-home-red);
  color: #ffffff;
}

.gt-faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--gt-home-muted);
  line-height: 1.72;
}

.gt-final-cta {
  padding: clamp(72px, 8vw, 122px) 0;
}

.gt-final-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 44px;
  background:
    radial-gradient(circle at 16% 20%, rgba(201,31,47,0.12), transparent 20rem),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--gt-home-shadow);
  text-align: center;
}

.gt-final-card::after {
  content: "GT";
  position: absolute;
  right: -18px;
  bottom: -38px;
  color: rgba(29, 25, 23, 0.035);
  font-size: clamp(150px, 22vw, 310px);
  font-weight: 950;
  line-height: 0.72;
  letter-spacing: -0.12em;
  pointer-events: none;
}

.gt-final-card .gt-eyebrow,
.gt-final-card p {
  margin-inline: auto;
}

@media (max-width: 1180px) {
  .gt-hero-grid,
  .gt-split-grid,
  .gt-priority-grid,
  .gt-faq-grid {
    grid-template-columns: 1fr;
  }

  .gt-hero-visual {
    min-height: auto;
  }

  .gt-service-grid,
  .gt-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gt-quick-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .gt-home-shell {
    width: min(100% - 22px, 1420px);
  }

  .gt-hero {
    padding-top: 48px;
  }

  .gt-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .gt-hero-trust,
  .gt-service-grid,
  .gt-process-grid,
  .gt-priority-list,
  .gt-two-card-grid {
    grid-template-columns: 1fr;
  }

  .gt-transport-card {
    min-height: auto;
    border-radius: 32px;
  }

  .gt-route-board {
    height: 290px;
  }

  .gt-location-card {
    width: 126px;
  }

  .gt-van-graphic {
    width: 144px;
    transform: translate(-50%, -50%) scale(0.82);
  }

  .gt-ride-metrics {
    grid-template-columns: 1fr;
  }

  .gt-floating-note {
    position: static;
    width: fit-content;
    margin-top: 10px;
  }

  .gt-safety-graphic {
    min-height: auto;
  }

  .gt-safety-card--main {
    position: relative;
    inset: auto;
    min-height: 390px;
  }

  .gt-safety-pill {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 10px;
  }

  .gt-home-btn {
    width: 100%;
  }

  .gt-hero-actions--center .gt-home-btn {
    width: min(100%, 360px);
  }

  .gt-final-card,
  .gt-large-card,
  .gt-service-card,
  .gt-process-card {
    border-radius: 28px;
  }
}

@media (max-width: 520px) {
  .gt-home-section {
    padding: 66px 0;
  }

  .gt-hero-actions {
    display: grid;
  }

  .gt-hero-trust div {
    min-height: auto;
  }

  .gt-route-line {
    left: 46px;
    right: 46px;
  }

  .gt-location-card {
    width: 102px;
    padding: 12px;
  }

  .gt-location-card strong {
    font-size: 12px;
  }

  .gt-transport-top strong {
    width: 40px;
    height: 40px;
  }

  .gt-quick-card {
    padding: 18px;
  }

  .gt-section-heading h2,
  .gt-split-copy h2,
  .gt-faq-intro h2,
  .gt-final-card h2,
  .gt-dark-band h2 {
    font-size: 34px;
  }

  .gt-faq-list summary {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gt-home *,
  .gt-home *::before,
  .gt-home *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}







/* about Page  */
/* =========================================================
   GT Medical Transportation - Clean About Page
   Paste this at the bottom of style.css.
   Designed to override the older R5/about page styling only.
========================================================= */

:root {
  --gt-about-black: #1d1917;
  --gt-about-black-2: #2b2522;
  --gt-about-red: #c91f2f;
  --gt-about-red-dark: #9f1724;
  --gt-about-cream: #f7f3ef;
  --gt-about-soft: #fffaf6;
  --gt-about-white: #ffffff;
  --gt-about-text: #211b17;
  --gt-about-muted: #6f6761;
  --gt-about-border: rgba(31, 26, 23, 0.12);
  --gt-about-border-dark: rgba(255, 255, 255, 0.16);
  --gt-about-shadow: 0 18px 44px rgba(29, 25, 23, 0.08);
}

.aboutx-hero,
.aboutx-hero *,
.r5-aboutpage,
.r5-aboutpage *,
.r5-values,
.r5-values *,
.r5-trust,
.r5-trust *,
.r5-about-cta,
.r5-about-cta * {
  box-sizing: border-box;
}

.aboutx-container,
.r5-container {
  width: min(100% - clamp(24px, 5vw, 72px), 1180px);
  margin-inline: auto;
}

/* Shared small label */
.aboutx-eyebrow,
.r5-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(201, 31, 47, 0.18);
  border-radius: 999px;
  background: rgba(201, 31, 47, 0.07);
  color: var(--gt-about-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aboutx-eyebrow::before,
.r5-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

/* Hero */
.aboutx-hero.gt-about-clean-hero {
  position: relative;
  min-height: auto;
  display: block;
  padding: clamp(74px, 8vw, 120px) 0 clamp(58px, 7vw, 94px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(29, 25, 23, 0.94), rgba(29, 25, 23, 0.86)),
    var(--gt-about-black);
  color: var(--gt-about-white);
  isolation: isolate;
}

.aboutx-hero.gt-about-clean-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: clamp(300px, 34vw, 520px);
  height: clamp(300px, 34vw, 520px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(201, 31, 47, 0.18);
  z-index: -1;
}

.aboutx-hero-overlay,
.aboutx-hero-bg,
.r5-aboutpage-glow,
.r5-values-glow,
.r5-trust-glow,
.r5-about-cta-glow {
  display: none !important;
}

.aboutx-hero-content {
  width: min(820px, 100%);
  padding: 0;
}

.aboutx-hero .aboutx-eyebrow {
  color: var(--gt-about-white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.aboutx-hero h1 {
  max-width: 850px;
  margin: 18px 0 16px;
  color: var(--gt-about-white);
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.aboutx-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}

.aboutx-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.aboutx-breadcrumb li {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 750;
}

.aboutx-breadcrumb li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.34);
}

.aboutx-breadcrumb a {
  color: var(--gt-about-white);
  text-decoration: none;
}

.aboutx-breadcrumb a:hover {
  color: #ffd8dc;
}

/* Who we are */
.r5-aboutpage.gt-about-story {
  position: relative;
  padding: clamp(76px, 8vw, 108px) 0;
  overflow: hidden;
  background: var(--gt-about-white);
}

.r5-aboutpage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.r5-aboutpage-text h2,
.r5-values-head h2,
.r5-about-cta-box h2 {
  margin: 16px 0 16px;
  color: var(--gt-about-text);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 850;
}

.r5-aboutpage-text h2 span {
  color: inherit;
}

.r5-aboutpage-text p,
.r5-values-head p,
.r5-about-cta-box p {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--gt-about-muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.78;
}

.r5-aboutpage-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.r5-aboutpage-list div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid var(--gt-about-border);
  border-radius: 16px;
  background: #ffffff;
  color: var(--gt-about-text);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 720;
  box-shadow: 0 10px 28px rgba(29, 25, 23, 0.04);
}

.r5-aboutpage-list span {
  flex: 0 0 auto;
  color: var(--gt-about-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* Clean information card instead of loud graphics */
.r5-aboutpage-media.gt-about-card {
  position: relative;
  min-height: auto;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gt-about-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--gt-about-shadow);
}

.r5-aboutpage-media.gt-about-card img,
.r5-aboutpage-badge {
  display: none !important;
}

.gt-about-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, var(--gt-about-black), var(--gt-about-black-2));
  color: var(--gt-about-white);
}

.gt-about-card-top span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--gt-about-red);
  color: var(--gt-about-white);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.gt-about-card-top strong {
  display: block;
  color: var(--gt-about-white);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gt-about-card-body {
  display: grid;
  gap: 0;
  padding: 8px 22px 22px;
  background: var(--gt-about-white);
}

.gt-about-card-body div {
  padding: 18px 0;
  border-bottom: 1px solid var(--gt-about-border);
}

.gt-about-card-body div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.gt-about-card-body small {
  display: block;
  margin-bottom: 6px;
  color: var(--gt-about-muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.gt-about-card-body b {
  display: block;
  color: var(--gt-about-text);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 800;
}

.gt-about-card-body a {
  color: var(--gt-about-text);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.gt-about-card-body a:hover {
  color: var(--gt-about-red);
}

/* Mission / Vision / Values */
.r5-values.gt-about-values {
  position: relative;
  padding: clamp(76px, 8vw, 108px) 0;
  overflow: hidden;
  background: var(--gt-about-cream);
}

.r5-values-head {
  width: min(780px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.r5-values-head p {
  margin-inline: auto;
}

.r5-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.r5-value-card {
  padding: 28px;
  border: 1px solid var(--gt-about-border);
  border-radius: 22px;
  background: var(--gt-about-white);
  box-shadow: 0 12px 34px rgba(29, 25, 23, 0.05);
}

.r5-value-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(201, 31, 47, 0.09);
  color: var(--gt-about-red);
  font-size: 16px;
  font-weight: 900;
}

.r5-value-card h3 {
  margin: 20px 0 10px;
  color: var(--gt-about-text);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 850;
}

.r5-value-card p {
  margin: 0;
  color: var(--gt-about-muted);
  font-size: 15px;
  line-height: 1.72;
}

/* Trust points */
.r5-trust.gt-about-trust {
  position: relative;
  padding: clamp(70px, 8vw, 104px) 0;
  overflow: hidden;
  background: var(--gt-about-white);
}

.r5-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.r5-trust-box {
  padding: 24px;
  border: 1px solid var(--gt-about-border);
  border-radius: 20px;
  background: var(--gt-about-white);
  box-shadow: 0 10px 30px rgba(29, 25, 23, 0.045);
}

.r5-trust-icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gt-about-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.r5-trust-box h4 {
  margin: 0 0 8px;
  color: var(--gt-about-text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
}

.r5-trust-box p {
  margin: 0;
  color: var(--gt-about-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* CTA */
.r5-about-cta.gt-about-cta {
  position: relative;
  padding: clamp(76px, 8vw, 110px) 0;
  overflow: hidden;
  background: var(--gt-about-cream);
}

.r5-about-cta-box {
  width: min(900px, 100%);
  margin-inline: auto;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--gt-about-border-dark);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--gt-about-black), var(--gt-about-black-2));
  color: var(--gt-about-white);
  text-align: center;
  box-shadow: var(--gt-about-shadow);
}

.r5-about-cta-box .r5-tag {
  color: var(--gt-about-white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.r5-about-cta-box h2 {
  max-width: 720px;
  margin-inline: auto;
  color: var(--gt-about-white);
}

.r5-about-cta-box p {
  max-width: 680px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.74);
}

.gt-about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.r5-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.r5-btn.primary {
  background: linear-gradient(135deg, var(--gt-about-red), var(--gt-about-red-dark));
  color: var(--gt-about-white);
  box-shadow: 0 14px 30px rgba(201, 31, 47, 0.26);
}

.r5-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--gt-about-white);
}

.r5-btn:hover {
  transform: translateY(-2px);
}

.r5-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 980px) {
  .r5-aboutpage-grid {
    grid-template-columns: 1fr;
  }

  .r5-values-grid,
  .r5-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .aboutx-container,
  .r5-container {
    width: min(100% - 22px, 1180px);
  }

  .aboutx-hero.gt-about-clean-hero,
  .r5-aboutpage.gt-about-story,
  .r5-values.gt-about-values,
  .r5-trust.gt-about-trust,
  .r5-about-cta.gt-about-cta {
    padding-block: 58px;
  }

  .aboutx-hero h1,
  .r5-aboutpage-text h2,
  .r5-values-head h2,
  .r5-about-cta-box h2 {
    font-size: clamp(34px, 11vw, 46px);
    letter-spacing: -0.04em;
  }

  .r5-values-grid,
  .r5-trust-grid {
    grid-template-columns: 1fr;
  }

  .r5-value-card,
  .r5-trust-box {
    padding: 22px;
  }

  .gt-about-cta-actions {
    display: grid;
  }

  .r5-btn {
    width: 100%;
  }
}







/* Service Page  */
/* =========================================================
   GT Medical Transportation - Clean Services Page
   Paste this at the bottom of style.css.
   Clean, professional styling for the Services page only.
========================================================= */

:root {
  --gt-service-black: #1d1917;
  --gt-service-black-2: #2b2522;
  --gt-service-red: #c91f2f;
  --gt-service-red-dark: #9f1724;
  --gt-service-cream: #f7f3ef;
  --gt-service-soft: #fffaf6;
  --gt-service-white: #ffffff;
  --gt-service-text: #211b17;
  --gt-service-muted: #6f6761;
  --gt-service-border: rgba(31, 26, 23, 0.12);
  --gt-service-border-dark: rgba(255, 255, 255, 0.16);
  --gt-service-shadow: 0 18px 44px rgba(29, 25, 23, 0.08);
}

.gt-services-page,
.gt-services-page * {
  box-sizing: border-box;
}

.gt-services-page {
  color: var(--gt-service-text);
  background: var(--gt-service-white);
}

.gt-services-container {
  width: min(100% - clamp(24px, 5vw, 72px), 1180px);
  margin-inline: auto;
}

.gt-services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(201, 31, 47, 0.18);
  border-radius: 999px;
  background: rgba(201, 31, 47, 0.07);
  color: var(--gt-service-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-services-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

/* Hero */
.gt-services-hero {
  position: relative;
  padding: clamp(76px, 8vw, 118px) 0 clamp(60px, 7vw, 96px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(29, 25, 23, 0.95), rgba(29, 25, 23, 0.88)),
    var(--gt-service-black);
  color: var(--gt-service-white);
  isolation: isolate;
}

.gt-services-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: clamp(320px, 34vw, 520px);
  height: clamp(320px, 34vw, 520px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(201, 31, 47, 0.16);
  z-index: -1;
}

.gt-services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.gt-services-hero .gt-services-eyebrow {
  color: var(--gt-service-white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.gt-services-hero h1 {
  max-width: 820px;
  margin: 18px 0 16px;
  color: var(--gt-service-white);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.gt-services-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}

.gt-services-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.gt-services-breadcrumb li {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 750;
}

.gt-services-breadcrumb li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.34);
}

.gt-services-breadcrumb a {
  color: var(--gt-service-white);
  text-decoration: none;
}

.gt-services-breadcrumb a:hover {
  color: #ffd8dc;
}

.gt-services-hero-card {
  width: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.gt-services-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gt-services-card-title span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gt-service-red);
  color: var(--gt-service-white);
  font-size: 16px;
  font-weight: 850;
}

.gt-services-card-title strong {
  color: var(--gt-service-white);
  font-size: 18px;
  font-weight: 850;
}

.gt-services-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
}

.gt-services-route div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.gt-services-route small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-services-route b {
  display: block;
  color: var(--gt-service-white);
  font-size: 14px;
  line-height: 1.35;
}

.gt-services-route > span {
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.gt-services-card-list {
  display: grid;
  gap: 12px;
}

.gt-services-card-list p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.55;
}

.gt-services-card-list span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--gt-service-red);
}

/* Intro */
.gt-services-intro {
  padding: clamp(66px, 7vw, 96px) 0;
  background: var(--gt-service-white);
}

.gt-services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.gt-services-intro h2,
.gt-services-section-head h2,
.gt-services-process-text h2,
.gt-services-cta-box h2 {
  margin: 16px 0 0;
  color: var(--gt-service-text);
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 850;
}

.gt-services-intro-copy p,
.gt-services-section-head p,
.gt-services-process-text p,
.gt-service-card p,
.gt-services-why-grid p,
.gt-services-cta-box p {
  margin: 0;
  color: var(--gt-service-muted);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.78;
}

.gt-services-intro-copy {
  display: grid;
  gap: 14px;
}

/* Service cards */
.gt-services-list-section {
  padding: clamp(70px, 8vw, 108px) 0;
  background: var(--gt-service-cream);
}

.gt-services-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.gt-services-section-head h2 {
  margin-top: 16px;
  margin-bottom: 14px;
}

.gt-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gt-service-card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--gt-service-border);
  border-radius: 22px;
  background: var(--gt-service-white);
  box-shadow: 0 12px 30px rgba(29, 25, 23, 0.05);
}

.gt-service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 15px;
  background: var(--gt-service-black);
  color: var(--gt-service-white);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.gt-service-card h3,
.gt-services-why-grid h3,
.gt-services-steps h3 {
  margin: 0 0 10px;
  color: var(--gt-service-text);
  font-size: 20px;
  line-height: 1.22;
  letter-spacing: -0.025em;
  font-weight: 850;
}

.gt-service-card p {
  font-size: 15px;
  line-height: 1.7;
}

/* Process */
.gt-services-process {
  padding: clamp(70px, 8vw, 108px) 0;
  background: var(--gt-service-white);
}

.gt-services-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.gt-services-process-text h2 {
  margin-bottom: 16px;
}

.gt-services-steps {
  display: grid;
  gap: 14px;
}

.gt-services-steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--gt-service-border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(29, 25, 23, 0.045);
}

.gt-services-steps article > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(201, 31, 47, 0.09);
  color: var(--gt-service-red);
  font-size: 16px;
  font-weight: 850;
}

.gt-services-steps p {
  margin: 0;
  color: var(--gt-service-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Why */
.gt-services-why {
  padding: clamp(70px, 8vw, 108px) 0;
  background: var(--gt-service-soft);
}

.gt-services-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gt-services-why-grid article {
  padding: 24px;
  border: 1px solid var(--gt-service-border);
  border-radius: 20px;
  background: var(--gt-service-white);
}

.gt-services-why-grid h3 {
  font-size: 18px;
}

.gt-services-why-grid p {
  font-size: 14px;
  line-height: 1.68;
}

/* CTA */
.gt-services-cta {
  padding: clamp(70px, 8vw, 108px) 0;
  background: var(--gt-service-white);
}

.gt-services-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--gt-service-border-dark);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(29, 25, 23, 0.96), rgba(43, 37, 34, 0.94)),
    var(--gt-service-black);
  color: var(--gt-service-white);
  box-shadow: var(--gt-service-shadow);
}

.gt-services-cta-box .gt-services-eyebrow {
  color: var(--gt-service-white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.gt-services-cta-box h2 {
  color: var(--gt-service-white);
  margin-bottom: 12px;
}

.gt-services-cta-box p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.gt-services-cta-actions {
  display: grid;
  justify-items: stretch;
  gap: 12px;
  min-width: min(100%, 260px);
}

.gt-services-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gt-services-btn:hover {
  transform: translateY(-2px);
}

.gt-services-btn-primary {
  color: var(--gt-service-white);
  background: linear-gradient(135deg, var(--gt-service-red), var(--gt-service-red-dark));
  box-shadow: 0 14px 30px rgba(201, 31, 47, 0.28);
}

.gt-services-btn-secondary {
  color: var(--gt-service-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.gt-services-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.gt-services-email {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.gt-services-email:hover {
  color: var(--gt-service-white);
}

/* Remove older page decoration if old CSS remains loaded */
.r5-services-intro-glow,
.r5-services-page-glow,
.r5-cta-glow,
.aboutx-hero-overlay {
  display: none !important;
}

@media (max-width: 1060px) {
  .gt-services-hero-grid,
  .gt-services-intro-grid,
  .gt-services-process-grid,
  .gt-services-cta-box {
    grid-template-columns: 1fr;
  }

  .gt-services-cta-actions {
    width: min(100%, 420px);
  }

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

  .gt-services-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .gt-services-container {
    width: min(100% - 24px, 1180px);
  }

  .gt-services-hero {
    padding-top: 62px;
  }

  .gt-services-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .gt-services-intro,
  .gt-services-list-section,
  .gt-services-process,
  .gt-services-why,
  .gt-services-cta {
    padding: 62px 0;
  }

  .gt-services-grid,
  .gt-services-why-grid {
    grid-template-columns: 1fr;
  }

  .gt-service-card,
  .gt-services-steps article,
  .gt-services-why-grid article {
    border-radius: 18px;
  }

  .gt-services-route {
    grid-template-columns: 1fr;
  }

  .gt-services-route > span {
    width: 2px;
    height: 24px;
    justify-self: center;
  }

  .gt-services-steps article {
    grid-template-columns: 1fr;
  }

  .gt-services-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .gt-services-hero-card,
  .gt-service-card,
  .gt-services-steps article,
  .gt-services-why-grid article,
  .gt-services-cta-box {
    padding: 20px;
  }

  .gt-services-intro h2,
  .gt-services-section-head h2,
  .gt-services-process-text h2,
  .gt-services-cta-box h2 {
    font-size: 32px;
  }
}



/* Contact */

/* ================================
   GT Medical Transportation - Clean Contact Page
   Paste this at the bottom of style.css
================================ */

.gtc-page,
.gtc-page * {
    box-sizing: border-box;
}

.gtc-page {
    --gtc-black: var(--gtp-black, #1d1917);
    --gtc-black-2: var(--gtp-black-2, #2b2522);
    --gtc-red: var(--gtp-red, #c91f2f);
    --gtc-red-dark: var(--gtp-red-dark, #9f1724);
    --gtc-cream: var(--gtp-cream, #f7f3ef);
    --gtc-white: var(--gtp-white, #ffffff);
    --gtc-text: var(--gtp-text, #1f1a17);
    --gtc-muted: var(--gtp-muted, #6f6761);
    --gtc-border: var(--gtp-border, rgba(31, 26, 23, 0.12));
    --gtc-green: var(--gtp-green, #0f766e);
    --gtc-shadow: 0 18px 48px rgba(29, 25, 23, 0.08);

    color: var(--gtc-text);
    background: #ffffff;
}

.gtc-page a {
    color: inherit;
}

.gtc-shell {
    width: min(100% - clamp(24px, 4vw, 64px), 1180px);
    margin-inline: auto;
}

.gtc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--gtc-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gtc-eyebrow::before {
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.gtc-hero {
    padding: clamp(64px, 8vw, 105px) 0 clamp(44px, 6vw, 72px);
    background:
        linear-gradient(180deg, rgba(247, 243, 239, 0.95), rgba(255, 255, 255, 0.98)),
        radial-gradient(circle at 18% 22%, rgba(201, 31, 47, 0.08), transparent 28rem);
    border-bottom: 1px solid var(--gtc-border);
}

.gtc-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 28px;
    color: var(--gtc-muted);
    font-size: 14px;
    font-weight: 700;
}

.gtc-breadcrumb a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.gtc-breadcrumb a:hover {
    color: var(--gtc-red);
}

.gtc-hero-content {
    max-width: 780px;
}

.gtc-hero h1,
.gtc-section-head h2,
.gtc-info-panel h2,
.gtc-cta-card h2 {
    margin: 0;
    color: var(--gtc-text);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -0.045em;
}

.gtc-hero h1 {
    max-width: 760px;
    font-size: clamp(38px, 5.4vw, 64px);
}

.gtc-hero p {
    max-width: 700px;
    margin: 18px 0 0;
    color: var(--gtc-muted);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.75;
}

.gtc-contact-options {
    padding: clamp(34px, 5vw, 58px) 0 0;
}

.gtc-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gtc-option-card {
    min-width: 0;
    display: grid;
    gap: 8px;
    padding: 24px;
    border: 1px solid var(--gtc-border);
    border-radius: 22px;
    background: var(--gtc-white);
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(29, 25, 23, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gtc-option-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 31, 47, 0.28);
    box-shadow: 0 18px 42px rgba(29, 25, 23, 0.1);
}

.gtc-option-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    margin-bottom: 8px;
    border-radius: 14px;
    color: var(--gtc-white);
    background: var(--gtc-black);
    font-size: 14px;
    font-weight: 850;
}

.gtc-option-card strong {
    color: var(--gtc-text);
    font-size: 18px;
    font-weight: 850;
}

.gtc-option-card small {
    min-width: 0;
    color: var(--gtc-muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.gtc-main-section {
    padding: clamp(42px, 6vw, 78px) 0;
}

.gtc-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: 24px;
    align-items: start;
}

.gtc-form-card,
.gtc-info-panel,
.gtc-cta-card {
    border: 1px solid var(--gtc-border);
    border-radius: 26px;
    background: var(--gtc-white);
    box-shadow: var(--gtc-shadow);
}

.gtc-form-card {
    padding: clamp(24px, 4vw, 42px);
}

.gtc-section-head {
    max-width: 620px;
    margin-bottom: 28px;
}

.gtc-section-head h2,
.gtc-info-panel h2,
.gtc-cta-card h2 {
    font-size: clamp(28px, 3vw, 40px);
}

.gtc-section-head p,
.gtc-info-panel p,
.gtc-cta-card p {
    margin: 12px 0 0;
    color: var(--gtc-muted);
    font-size: 16px;
    line-height: 1.7;
}

.gtc-alert {
    display: none;
    margin: 0 0 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.5;
}

.gtc-alert.is-visible {
    display: block;
}

.gtc-alert-success {
    color: #0b5f59;
    border: 1px solid rgba(15, 118, 110, 0.2);
    background: rgba(15, 118, 110, 0.09);
}

.gtc-alert-error {
    color: var(--gtc-red-dark);
    border: 1px solid rgba(201, 31, 47, 0.2);
    background: rgba(201, 31, 47, 0.08);
}

.gtc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gtc-field {
    display: grid;
    gap: 9px;
    min-width: 0;
}

.gtc-field-full {
    grid-column: 1 / -1;
}

.gtc-field span {
    color: var(--gtc-text);
    font-size: 13px;
    font-weight: 850;
}

.gtc-field input,
.gtc-field textarea {
    width: 100%;
    border: 1px solid rgba(31, 26, 23, 0.14);
    border-radius: 16px;
    background: #fffdfb;
    color: var(--gtc-text);
    font: inherit;
    font-size: 15px;
    line-height: 1.4;
    outline: none;
    padding: 14px 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gtc-field textarea {
    resize: vertical;
    min-height: 150px;
}

.gtc-field input::placeholder,
.gtc-field textarea::placeholder {
    color: rgba(111, 103, 97, 0.72);
}

.gtc-field input:focus,
.gtc-field textarea:focus {
    border-color: rgba(201, 31, 47, 0.45);
    background: var(--gtc-white);
    box-shadow: 0 0 0 4px rgba(201, 31, 47, 0.08);
}

.gtc-submit-btn,
.gtc-cta-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 999px;
    color: var(--gtc-white);
    background: linear-gradient(135deg, var(--gtc-red), var(--gtc-red-dark));
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(201, 31, 47, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.gtc-submit-btn {
    width: 100%;
    margin-top: 18px;
    padding: 16px 24px;
}

.gtc-submit-btn:hover,
.gtc-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(201, 31, 47, 0.28);
}

.gtc-submit-btn:disabled {
    opacity: 0.72;
    cursor: wait;
    transform: none;
}

.gtc-info-panel {
    position: sticky;
    top: 112px;
    padding: clamp(24px, 3vw, 34px);
    background:
        linear-gradient(180deg, rgba(247, 243, 239, 0.72), rgba(255, 255, 255, 0.98));
}

.gtc-info-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.gtc-info-row {
    display: grid;
    gap: 5px;
    padding: 16px;
    border: 1px solid var(--gtc-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.gtc-info-row span {
    color: var(--gtc-muted);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gtc-info-row a,
.gtc-info-row p {
    margin: 0;
    color: var(--gtc-text);
    font-size: 15px;
    font-weight: 750;
    line-height: 1.55;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.gtc-info-row a:hover {
    color: var(--gtc-red);
}

.gtc-note-box {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    color: var(--gtc-white);
    background: linear-gradient(135deg, var(--gtc-black), var(--gtc-black-2));
}

.gtc-note-box strong {
    display: block;
    font-size: 16px;
    font-weight: 850;
}

.gtc-note-box p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.65;
}

.gtc-bottom-cta {
    padding: 0 0 clamp(58px, 7vw, 96px);
}

.gtc-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: clamp(24px, 4vw, 42px);
    background: var(--gtc-cream);
}

.gtc-cta-card > div {
    max-width: 720px;
}

.gtc-cta-btn {
    flex: 0 0 auto;
    padding: 17px 26px;
}

@media (max-width: 980px) {
    .gtc-option-grid,
    .gtc-contact-layout {
        grid-template-columns: 1fr;
    }

    .gtc-info-panel {
        position: relative;
        top: auto;
    }

    .gtc-cta-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .gtc-shell {
        width: min(100% - 22px, 1180px);
    }

    .gtc-hero {
        padding-top: 50px;
    }

    .gtc-breadcrumb {
        margin-bottom: 20px;
    }

    .gtc-form-grid {
        grid-template-columns: 1fr;
    }

    .gtc-form-card,
    .gtc-info-panel,
    .gtc-cta-card,
    .gtc-option-card {
        border-radius: 22px;
    }

    .gtc-submit-btn,
    .gtc-cta-btn {
        width: 100%;
    }
}




/* contact page css fix */
/* =========================================================
   GT Contact Hero Fix
   Paste this at the very bottom of style.css if you only want
   to fix the Contact page hero without replacing the full CSS.
   This matches the About and Services page hero style.
========================================================= */

.gtc-page .gtc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 7px 12px;
    border: 1px solid rgba(201, 31, 47, 0.18);
    border-radius: 999px;
    background: rgba(201, 31, 47, 0.07);
    color: var(--gtc-red, #c91f2f);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gtc-page .gtc-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: currentColor;
}

.gtc-page .gtc-hero {
    position: relative;
    padding: clamp(76px, 8vw, 118px) 0 clamp(60px, 7vw, 96px);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(29, 25, 23, 0.95), rgba(29, 25, 23, 0.88)),
        var(--gtc-black, #1d1917) !important;
    color: var(--gtc-white, #ffffff);
    border-bottom: 0;
    isolation: isolate;
}

.gtc-page .gtc-hero::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -190px;
    width: clamp(320px, 34vw, 520px);
    height: clamp(320px, 34vw, 520px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(201, 31, 47, 0.16);
    z-index: -1;
}

.gtc-page .gtc-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin: 0 0 26px;
    padding: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 750;
}

.gtc-page .gtc-breadcrumb a {
    color: var(--gtc-white, #ffffff);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.gtc-page .gtc-breadcrumb a:hover {
    color: var(--gtc-white, #ffffff);
    opacity: 0.78;
}

.gtc-page .gtc-breadcrumb span {
    color: rgba(255, 255, 255, 0.68);
}

.gtc-page .gtc-breadcrumb span:first-of-type {
    color: rgba(255, 255, 255, 0.34);
}

.gtc-page .gtc-hero-content {
    max-width: 820px;
}

.gtc-page .gtc-hero .gtc-eyebrow {
    margin-bottom: 0;
    color: var(--gtc-white, #ffffff);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.gtc-page .gtc-hero h1 {
    max-width: 820px;
    margin: 18px 0 16px;
    color: var(--gtc-white, #ffffff) !important;
    font-size: clamp(40px, 5.4vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    font-weight: 850;
}

.gtc-page .gtc-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.72;
}

@media (max-width: 640px) {
    .gtc-page .gtc-hero {
        padding: 58px 0 64px;
    }

    .gtc-page .gtc-breadcrumb {
        margin-bottom: 20px;
    }

    .gtc-page .gtc-hero h1 {
        font-size: clamp(38px, 12vw, 56px);
    }
}



/* reviews page */
/* =========================================================
   GT Medical Transportation - Clean Reviews Page
   Paste this at the bottom of style.css.
   Clean, professional styling for the Reviews page only.
========================================================= */

:root {
  --gt-review-black: #1d1917;
  --gt-review-black-2: #2b2522;
  --gt-review-red: #c91f2f;
  --gt-review-red-dark: #9f1724;
  --gt-review-cream: #f7f3ef;
  --gt-review-soft: #fffaf6;
  --gt-review-white: #ffffff;
  --gt-review-text: #211b17;
  --gt-review-muted: #6f6761;
  --gt-review-border: rgba(31, 26, 23, 0.12);
  --gt-review-shadow: 0 18px 44px rgba(29, 25, 23, 0.08);
}

.gt-reviews-page,
.gt-reviews-page * {
  box-sizing: border-box;
}

.gt-reviews-page {
  color: var(--gt-review-text);
  background: var(--gt-review-white);
}

.gt-reviews-container {
  width: min(100% - clamp(24px, 5vw, 72px), 1180px);
  margin-inline: auto;
}

.gt-reviews-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(201, 31, 47, 0.18);
  border-radius: 999px;
  background: rgba(201, 31, 47, 0.07);
  color: var(--gt-review-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-reviews-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

/* Hero */
.gt-reviews-hero {
  position: relative;
  padding: clamp(76px, 8vw, 118px) 0 clamp(60px, 7vw, 96px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(29, 25, 23, 0.95), rgba(29, 25, 23, 0.88)),
    var(--gt-review-black);
  color: var(--gt-review-white);
  isolation: isolate;
}

.gt-reviews-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: clamp(320px, 34vw, 520px);
  height: clamp(320px, 34vw, 520px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(201, 31, 47, 0.16);
  z-index: -1;
}

.gt-reviews-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.gt-reviews-hero .gt-reviews-eyebrow {
  color: var(--gt-review-white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.gt-reviews-hero h1 {
  max-width: 850px;
  margin: 18px 0 16px;
  color: var(--gt-review-white);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.gt-reviews-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}

.gt-reviews-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.gt-reviews-breadcrumb li {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 750;
}

.gt-reviews-breadcrumb li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.34);
}

.gt-reviews-breadcrumb a {
  color: var(--gt-review-white);
  text-decoration: none;
}

.gt-reviews-breadcrumb a:hover {
  color: #ffd8dc;
}

.gt-reviews-hero-card {
  width: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.gt-reviews-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gt-reviews-card-head span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gt-review-red);
  color: var(--gt-review-white);
  font-size: 16px;
  font-weight: 850;
}

.gt-reviews-card-head strong {
  color: var(--gt-review-white);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
}

.gt-reviews-card-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

/* Buttons */
.gt-reviews-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gt-reviews-btn:hover {
  transform: translateY(-2px);
}

.gt-reviews-btn-primary {
  color: var(--gt-review-white);
  background: linear-gradient(135deg, var(--gt-review-red), var(--gt-review-red-dark));
  box-shadow: 0 14px 30px rgba(201, 31, 47, 0.28);
}

.gt-reviews-btn-light {
  color: var(--gt-review-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.gt-reviews-btn-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Intro */
.gt-reviews-intro,
.gt-reviews-list-section,
.gt-reviews-focus,
.gt-reviews-cta {
  padding: clamp(70px, 8vw, 106px) 0;
}

.gt-reviews-intro {
  background: var(--gt-review-white);
}

.gt-reviews-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.gt-reviews-intro h2,
.gt-reviews-section-head h2,
.gt-reviews-cta-box h2 {
  margin: 16px 0 0;
  color: var(--gt-review-text);
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 850;
}

.gt-reviews-intro-copy {
  display: grid;
  gap: 16px;
}

.gt-reviews-intro-copy p,
.gt-reviews-section-head p,
.gt-review-card blockquote,
.gt-review-card span,
.gt-reviews-empty p,
.gt-reviews-focus-grid p,
.gt-reviews-cta-box p {
  margin: 0;
  color: var(--gt-review-muted);
  font-size: 16px;
  line-height: 1.72;
}

/* Reviews */
.gt-reviews-list-section {
  background: var(--gt-review-soft);
  border-top: 1px solid var(--gt-review-border);
  border-bottom: 1px solid var(--gt-review-border);
}

.gt-reviews-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.gt-reviews-section-head h2 {
  margin-bottom: 12px;
}

.gt-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gt-review-card,
.gt-reviews-empty,
.gt-reviews-focus-grid article {
  border: 1px solid var(--gt-review-border);
  border-radius: 22px;
  background: var(--gt-review-white);
  box-shadow: var(--gt-review-shadow);
}

.gt-review-card {
  padding: 26px;
}

.gt-review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--gt-review-red);
  font-size: 17px;
  letter-spacing: 0.04em;
}

.gt-review-card blockquote {
  position: relative;
  min-height: 128px;
  font-size: 15px;
}

.gt-review-author {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--gt-review-border);
}

.gt-review-author strong {
  display: block;
  color: var(--gt-review-text);
  font-size: 15px;
  font-weight: 850;
}

.gt-review-author span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 750;
}

.gt-reviews-empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
}

.gt-reviews-empty-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(201, 31, 47, 0.08);
  color: var(--gt-review-red);
  font-size: 22px;
  font-weight: 850;
}

.gt-reviews-empty h3,
.gt-reviews-focus-grid h3 {
  margin: 0 0 8px;
  color: var(--gt-review-text);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 850;
}

/* Focus */
.gt-reviews-focus {
  background: var(--gt-review-white);
}

.gt-reviews-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gt-reviews-focus-grid article {
  padding: 24px;
  box-shadow: none;
}

.gt-reviews-focus-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gt-review-red);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.gt-reviews-focus-grid p {
  font-size: 14px;
  line-height: 1.65;
}

/* CTA */
.gt-reviews-cta {
  background: var(--gt-review-white);
}

.gt-reviews-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: clamp(26px, 5vw, 46px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(29, 25, 23, 0.96), rgba(29, 25, 23, 0.9)),
    var(--gt-review-black);
  color: var(--gt-review-white);
  overflow: hidden;
}

.gt-reviews-cta-box .gt-reviews-eyebrow {
  color: var(--gt-review-white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.gt-reviews-cta-box h2 {
  color: var(--gt-review-white);
  margin-bottom: 12px;
}

.gt-reviews-cta-box p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
}

.gt-reviews-cta-actions {
  display: grid;
  justify-items: stretch;
  gap: 12px;
  min-width: min(100%, 260px);
}

.gt-reviews-btn-secondary {
  color: var(--gt-review-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.gt-reviews-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.gt-reviews-email {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.gt-reviews-email:hover {
  color: var(--gt-review-white);
}

@media (max-width: 1060px) {
  .gt-reviews-hero-grid,
  .gt-reviews-intro-grid,
  .gt-reviews-cta-box {
    grid-template-columns: 1fr;
  }

  .gt-reviews-grid,
  .gt-reviews-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gt-reviews-empty {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .gt-reviews-empty .gt-reviews-btn {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .gt-reviews-cta-actions {
    width: min(100%, 420px);
  }
}

@media (max-width: 700px) {
  .gt-reviews-container {
    width: min(100% - 24px, 1180px);
  }

  .gt-reviews-hero {
    padding-top: 62px;
  }

  .gt-reviews-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .gt-reviews-intro,
  .gt-reviews-list-section,
  .gt-reviews-focus,
  .gt-reviews-cta {
    padding: 62px 0;
  }

  .gt-reviews-grid,
  .gt-reviews-focus-grid,
  .gt-reviews-empty {
    grid-template-columns: 1fr;
  }

  .gt-reviews-empty .gt-reviews-btn,
  .gt-reviews-btn {
    width: 100%;
  }

  .gt-reviews-hero-card,
  .gt-review-card,
  .gt-reviews-empty,
  .gt-reviews-focus-grid article,
  .gt-reviews-cta-box {
    border-radius: 18px;
  }
}

@media (max-width: 420px) {
  .gt-reviews-hero-card,
  .gt-review-card,
  .gt-reviews-empty,
  .gt-reviews-focus-grid article,
  .gt-reviews-cta-box {
    padding: 20px;
  }

  .gt-reviews-intro h2,
  .gt-reviews-section-head h2,
  .gt-reviews-cta-box h2 {
    font-size: 32px;
  }
}



/* career page */

/* =========================================================
   GT Medical Transportation - Clean Careers Page
   Paste this at the bottom of style.css.
   Professional careers, driver recruitment, and quote styling.
========================================================= */

:root {
  --gt-career-black: #1d1917;
  --gt-career-black-2: #2b2522;
  --gt-career-red: #c91f2f;
  --gt-career-red-dark: #9f1724;
  --gt-career-cream: #f7f3ef;
  --gt-career-soft: #fffaf6;
  --gt-career-white: #ffffff;
  --gt-career-text: #211b17;
  --gt-career-muted: #6f6761;
  --gt-career-border: rgba(31, 26, 23, 0.12);
  --gt-career-shadow: 0 18px 44px rgba(29, 25, 23, 0.08);
}

.gt-careers-page,
.gt-careers-page * {
  box-sizing: border-box;
}

.gt-careers-page {
  color: var(--gt-career-text);
  background: var(--gt-career-white);
}

.gt-careers-shell {
  width: min(100% - clamp(24px, 5vw, 72px), 1180px);
  margin-inline: auto;
}

.gt-careers-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(201, 31, 47, 0.18);
  border-radius: 999px;
  background: rgba(201, 31, 47, 0.07);
  color: var(--gt-career-red);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-careers-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.gt-careers-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--gt-career-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.gt-careers-btn:hover {
  transform: translateY(-2px);
}

.gt-careers-btn-primary {
  color: var(--gt-career-white);
  background: linear-gradient(135deg, var(--gt-career-red), var(--gt-career-red-dark));
  box-shadow: 0 14px 30px rgba(201, 31, 47, 0.24);
}

.gt-careers-btn-secondary {
  color: var(--gt-career-white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.gt-careers-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Hero */
.gt-careers-hero {
  position: relative;
  padding: clamp(76px, 8vw, 118px) 0 clamp(60px, 7vw, 96px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(29, 25, 23, 0.95), rgba(29, 25, 23, 0.88)),
    var(--gt-career-black);
  color: var(--gt-career-white);
  isolation: isolate;
}

.gt-careers-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: clamp(320px, 34vw, 520px);
  height: clamp(320px, 34vw, 520px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(201, 31, 47, 0.16);
  z-index: -1;
}

.gt-careers-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 750;
}

.gt-careers-breadcrumb a {
  color: var(--gt-career-white);
  text-decoration: none;
}

.gt-careers-breadcrumb a:hover {
  color: #ffd8dc;
}

.gt-careers-breadcrumb span {
  color: rgba(255, 255, 255, 0.56);
}

.gt-careers-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.gt-careers-hero .gt-careers-eyebrow {
  color: var(--gt-career-white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.gt-careers-hero h1 {
  max-width: 820px;
  margin: 18px 0 16px;
  color: var(--gt-career-white);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.gt-careers-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}

.gt-careers-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.gt-careers-hero-card {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.gt-careers-card-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201, 31, 47, 0.16);
  color: #ffd8dc;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gt-careers-hero-card h2 {
  margin: 0 0 18px;
  color: var(--gt-career-white);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.gt-careers-hero-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gt-careers-hero-card li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.gt-careers-hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gt-career-red);
}

/* Shared section headers */
.gt-careers-section-head,
.gt-careers-section-title {
  max-width: 760px;
}

.gt-careers-section-head {
  margin: 0 auto 34px;
  text-align: center;
}

.gt-careers-section-head h2,
.gt-careers-section-title h2,
.gt-careers-intro h2,
.gt-careers-qualities h2,
.gt-careers-quote h2 {
  margin: 14px 0 12px;
  color: var(--gt-career-text);
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 850;
}

.gt-careers-section-head p,
.gt-careers-section-title p,
.gt-careers-copy p,
.gt-careers-focus-card p,
.gt-careers-role-card p,
.gt-careers-qualities p,
.gt-careers-quote p,
.gt-careers-note-list p {
  margin: 0;
  color: var(--gt-career-muted);
  font-size: 16px;
  line-height: 1.72;
}

/* Intro */
.gt-careers-intro {
  padding: clamp(60px, 7vw, 96px) 0;
  background: var(--gt-career-white);
}

.gt-careers-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.gt-careers-copy {
  display: grid;
  gap: 16px;
}

/* Focus */
.gt-careers-focus {
  padding: clamp(62px, 7vw, 98px) 0;
  background: var(--gt-career-cream);
}

.gt-careers-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gt-careers-focus-card,
.gt-careers-role-card,
.gt-careers-form-card,
.gt-careers-apply-panel,
.gt-careers-quote-box {
  border: 1px solid var(--gt-career-border);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--gt-career-shadow);
}

.gt-careers-focus-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: 24px;
}

.gt-careers-focus-card h3,
.gt-careers-role-card h3,
.gt-careers-note-list strong {
  margin: 0 0 10px;
  color: var(--gt-career-text);
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 850;
}

.gt-careers-focus-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.gt-careers-focus-card li {
  padding: 11px 12px;
  border: 1px solid var(--gt-career-border);
  border-radius: 14px;
  background: var(--gt-career-white);
  color: var(--gt-career-text);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

/* Roles */
.gt-careers-roles {
  padding: clamp(62px, 7vw, 98px) 0;
  background: var(--gt-career-white);
}

.gt-careers-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gt-careers-role-card {
  padding: 28px;
  border-radius: 24px;
}

.gt-careers-role-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 14px;
  background: var(--gt-career-black);
  color: var(--gt-career-white);
  font-size: 14px;
  font-weight: 850;
}

/* Qualities */
.gt-careers-qualities {
  padding: clamp(62px, 7vw, 98px) 0;
  background: var(--gt-career-soft);
}

.gt-careers-qualities-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.gt-careers-checklist {
  display: grid;
  gap: 12px;
}

.gt-careers-checklist div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--gt-career-border);
  border-radius: 18px;
  background: var(--gt-career-white);
  color: var(--gt-career-text);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
}

.gt-careers-checklist span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--gt-career-red);
}

/* Application */
.gt-careers-apply {
  padding: clamp(66px, 8vw, 110px) 0;
  background: var(--gt-career-white);
}

.gt-careers-apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.gt-careers-form-card,
.gt-careers-apply-panel {
  border-radius: 26px;
}

.gt-careers-form-card {
  padding: clamp(24px, 4vw, 38px);
}

.gt-careers-form {
  margin-top: 26px;
}

.gt-careers-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gt-careers-field {
  display: grid;
  gap: 8px;
  color: var(--gt-career-text);
  font-size: 13px;
  font-weight: 850;
}

.gt-careers-field-full {
  grid-column: 1 / -1;
}

.gt-careers-field input,
.gt-careers-field select,
.gt-careers-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--gt-career-border);
  border-radius: 14px;
  background: var(--gt-career-soft);
  color: var(--gt-career-text);
  font: inherit;
  font-weight: 650;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gt-careers-field textarea {
  min-height: 130px;
  resize: vertical;
}

.gt-careers-field input:focus,
.gt-careers-field select:focus,
.gt-careers-field textarea:focus {
  border-color: rgba(201, 31, 47, 0.42);
  background: var(--gt-career-white);
  box-shadow: 0 0 0 4px rgba(201, 31, 47, 0.08);
}

.gt-careers-upload-field input[type="file"] {
  padding: 12px;
  background: var(--gt-career-white);
}

.gt-careers-upload-field small {
  color: var(--gt-career-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.gt-careers-submit-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 15px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gt-career-red), var(--gt-career-red-dark));
  color: var(--gt-career-white);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(201, 31, 47, 0.24);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.gt-careers-submit-btn:hover {
  transform: translateY(-2px);
}

.gt-careers-submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.gt-careers-alert {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.gt-careers-alert.is-visible {
  display: block;
}

.gt-careers-alert-success {
  border: 1px solid rgba(15, 118, 110, 0.22);
  background: rgba(15, 118, 110, 0.08);
  color: #0b5f59;
}

.gt-careers-alert-error {
  border: 1px solid rgba(201, 31, 47, 0.22);
  background: rgba(201, 31, 47, 0.08);
  color: var(--gt-career-red-dark);
}

.gt-careers-apply-panel {
  position: sticky;
  top: 112px;
  padding: clamp(24px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(29, 25, 23, 0.96), rgba(43, 37, 34, 0.94)),
    var(--gt-career-black);
  color: var(--gt-career-white);
}

.gt-careers-apply-panel .gt-careers-eyebrow {
  color: var(--gt-career-white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.gt-careers-apply-panel h2 {
  margin: 14px 0 22px;
  color: var(--gt-career-white);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.gt-careers-note-list {
  display: grid;
  gap: 14px;
}

.gt-careers-note-list div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.gt-careers-note-list strong {
  display: block;
  color: var(--gt-career-white);
}

.gt-careers-note-list p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

/* Quote */
.gt-careers-quote {
  padding: 0 0 clamp(66px, 8vw, 110px);
  background: var(--gt-career-white);
}

.gt-careers-quote-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 50px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(247, 243, 239, 0.92), rgba(255, 255, 255, 0.94));
}

.gt-careers-quote-actions {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.gt-careers-quote .gt-careers-btn-secondary {
  color: var(--gt-career-text);
  border-color: var(--gt-career-border);
  background: var(--gt-career-white);
}

.gt-careers-text-link {
  color: var(--gt-career-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.gt-careers-text-link:hover {
  color: var(--gt-career-red);
}

@media (max-width: 1040px) {
  .gt-careers-hero-grid,
  .gt-careers-intro-grid,
  .gt-careers-qualities-grid,
  .gt-careers-apply-grid,
  .gt-careers-quote-box {
    grid-template-columns: 1fr;
  }

  .gt-careers-apply-panel {
    position: static;
  }

  .gt-careers-quote-actions {
    justify-items: start;
  }
}

@media (max-width: 820px) {
  .gt-careers-focus-grid,
  .gt-careers-role-grid,
  .gt-careers-form-grid {
    grid-template-columns: 1fr;
  }

  .gt-careers-focus-card ul {
    grid-template-columns: 1fr;
  }

  .gt-careers-field-full {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .gt-careers-shell {
    width: min(100% - 22px, 1180px);
  }

  .gt-careers-hero {
    padding: 58px 0 64px;
  }

  .gt-careers-hero h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .gt-careers-hero-actions,
  .gt-careers-quote-actions {
    width: 100%;
  }

  .gt-careers-btn,
  .gt-careers-submit-btn {
    width: 100%;
  }

  .gt-careers-role-card,
  .gt-careers-focus-card,
  .gt-careers-form-card,
  .gt-careers-apply-panel,
  .gt-careers-quote-box {
    border-radius: 22px;
  }
}



