@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #f0fbfc;
  color: #0f1a2e;
  overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #cff4f6 0%, #e8f8f9 40%, #d4ecf7 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero h2:last-child {
  font-size: 26px;
  color: #7c3aed;
}
.hero h3 {
  font-size: 26px;
  line-height: 36px;
}

.hero::before {
  content: "";
  position: absolute;
  right: -10vw;
  top: -10vw;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 180, 180, 0.18), rgba(0, 122, 138, 0.08));
  will-change: opacity;
  animation: pulse 6s ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
    opacity: 0.6;
    width: 70vw;
    height: 70vw;
  }
  to {
    opacity: 1;
    width: 72.2vw;
    height: 72.2vw;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
  margin-top: 15px;
}
.hero-content ul li {
  position: relative;
  padding-left: 25px;
  font-size: 22px;
  line-height: 36px;
  color: #151f50;
  font-weight: 600;
}
.hero-content ul li::before {
  content: "▸";
  color: #7e37e8;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.badge-date {
  display: inline-block;
  background: #007a8a;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 100px;
  margin-top: 20px;
  margin-bottom: 1.4rem;
  animation: fadeDown 0.7s ease both;
}
.badge-date span {
  font-size: 42px;
  font-weight: 700;
}
@media (max-width: 576px) {
  .badge-date {
    font-size: 20px;
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 3.2rem);
  line-height: 1.08;
  background: linear-gradient(135deg, #5b21b6, #7c3aed, #0e7490);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: fadeDown 0.8s 0.1s ease both;
  margin-bottom: 20px;
}

.hero-title em {
  color: #7c3aed;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2d5a63;
  max-width: 460px;
  margin-top: 1rem;
  animation: fadeDown 0.8s 0.2s ease both;
}

.concession-pill {
  display: inline-block;
  background: #7c3aed;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 0.6rem 1.8rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.35);
  animation: fadeDown 0.8s 0.35s ease both, shimmer 3s 1.5s linear infinite;
  background-size: 200% 100%;
  background-image: linear-gradient(90deg, #7c3aed, #a855f7, #7c3aed);
}
.concession-pill a {
  color: #fff;
  text-decoration: none;
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
.hero-img-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeLeft 0.9s 0.1s ease both;
}

.hero-img-wrap img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  object-fit: cover;
  filter: drop-shadow(0 20px 50px rgba(0, 122, 138, 0.25));
}

/* sound wave */
.wave-wrap {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  gap: 3px;
  animation: fadeDown 0.8s 0.45s ease both;
}

.wave-wrap span {
  display: inline-block;
  width: 4px;
  border-radius: 4px;
  background: #00b4b4;
  animation: wave 1.2s ease-in-out infinite alternate;
}

.wave-wrap span:nth-child(odd) {
  background: #a855f7;
}

.wave-wrap span:nth-child(2n) {
  animation-delay: 0.15s;
}

.wave-wrap span:nth-child(3n) {
  animation-delay: 0.3s;
}

.wave-wrap span:nth-child(4n) {
  animation-delay: 0.45s;
}

.wave-wrap span:nth-child(5n) {
  animation-delay: 0.6s;
}

@keyframes wave {
  from {
    transform: scaleY(0.4);
  }
  to {
    transform: scaleY(1);
  }
}
/* WHY / WHO SECTION */
.why-section {
  padding: 60px 0 40px;
  background: #f8fefe;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  border: 1px solid rgba(0, 180, 180, 0.15);
  box-shadow: 0 4px 20px rgba(0, 122, 138, 0.07);
}

.who-card {
  border-color: rgba(124, 58, 237, 0.15);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.07);
}

.why-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #007a8a;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0, 180, 180, 0.2);
}

.who-card .why-title {
  color: #6d28d9;
  border-bottom-color: rgba(124, 58, 237, 0.2);
}

.why-list,
.who-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-list li,
.who-list li {
  font-size: 0.97rem;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.check {
  color: #00b4b4;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── SECTION: DRIVE ───────────────────────────── */
.drive-section {
  background: linear-gradient(135deg, #5b21b6, #7c3aed, #0e7490);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .drive-section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .drive-section {
    padding: 40px 0;
  }
}

.drive-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.06)'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.drive-label {
  font-size: 19px;
  letter-spacing: 0.25em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.drive-doctors {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
}

.drive-sub {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: rgb(255, 255, 255);
  margin-top: 0.5rem;
}

.drive-for {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.25rem;
}

/* ── SECTION: DATES ───────────────────────────── */
.dates-section {
  background: #fff;
  padding: 70px 0;
}
@media (max-width: 768px) {
  .dates-section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .dates-section {
    padding: 40px 0;
  }
}

.info-card {
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1) !important;
}

.info-card .icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.info-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #007a8a;
}

.info-card p {
  font-size: 18px;
  color: #000;
  line-height: 1.6;
}

/* ── SECTION: CTA ─────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #0e7490, #00b4b4);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .cta-section {
    padding: 40px 0;
  }
}

.cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 0.6rem;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.phone-btn {
  display: inline-block;
  background: #fff;
  color: #007a8a;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 0.8rem 2.8rem;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: 0.03em;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.phone-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  color: #007a8a;
}

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: #0f1a2e;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  font-size: 0.85rem;
  padding: 22px;
}

footer strong {
  color: #fff;
}

/* ── ANIMATIONS ───────────────────────────────── */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Navbar */
.top-nav {
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(240, 251, 252, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 180, 180, 0.15);
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #007a8a;
  font-weight: 700;
}

.brand-tagline {
  font-size: 0.72rem;
  color: #4a8a90;
  letter-spacing: 0.08em;
}

.hero {
  padding: 90px 0px;
}
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .hero {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .hero-img-wrap {
    margin-top: 2.5rem;
  }
}
.royalcare-landing-form {
  background-color: #151f50;
  padding: 30px;
  border-radius: 10px;
}
.royalcare-landing-form .gform_heading {
  display: none;
}
.royalcare-landing-form .gform_wrapper.gravity-theme .gfield_label {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  text-align: left;
  color: #fff;
}
.royalcare-landing-form .gform_wrapper.gravity-theme input[type=color], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=date], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=datetime-local], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=datetime], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=email], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=month], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=number], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=password], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=search], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=tel], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=text], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=time], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=url], .royalcare-landing-form .gform_wrapper.gravity-theme input[type=week], .royalcare-landing-form .gform_wrapper.gravity-theme select, .royalcare-landing-form .gform_wrapper.gravity-theme textarea {
  border-radius: 5px;
  border: 1px solid #fff;
  height: 45px;
  padding: 5px 20px;
}
.royalcare-landing-form .gfield_consent_label {
  color: #fff;
  display: block;
  text-align: left;
}
.royalcare-landing-form .gform_button {
  background-color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  border: 1px solid #fff;
  outline: none;
  font-weight: 500;
}
.royalcare-landing-form .gfield--type-consent .ginput_container_consent {
  display: flex;
  gap: 12px;
  align-items: start;
}
.royalcare-landing-form .gfield--type-consent .ginput_container_consent input {
  margin-top: 4px;
}
.royalcare-landing-form .book-an-appointment-thank-you {
  color: #fff;
  margin-bottom: 0px;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-flex .concession-pill a i {
  margin-right: 5px;
}
@media (max-width: 768px) {
  .nav-flex {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.world-kidney-offer-page .concession-pill {
  background: #d71d66;
  background-image: linear-gradient(90deg, #d71d66, rgba(29, 36, 82, 0.6196078431), #171e4e);
}
.world-kidney-offer-page .drive-section {
  background: #d71d66;
  background-image: linear-gradient(90deg, #d71d66, rgba(29, 36, 82, 0.6196078431), #171e4e);
}
.world-kidney-offer-page .badge-date {
  font-size: 22px;
  background: #d71d66;
  padding: 0.55rem 1.5rem;
  margin-top: 0;
  margin-bottom: 15px;
}
.world-kidney-offer-page .drive-section {
  background: #d71d66;
  background-image: linear-gradient(90deg, #d71d66, rgba(29, 36, 82, 0.6196078431), #171e4e);
}
.world-kidney-offer-page .hero .hero-title {
  background-image: linear-gradient(135deg, #d32265, #d32265, #171e4e);
  margin-bottom: 15px;
}
.world-kidney-offer-page .hero .hero-content h2 {
  margin-bottom: 5px;
}
.world-kidney-offer-page .hero .hero-content h2.heading-two {
  margin-bottom: 15px;
}
.world-kidney-offer-page .hero .hero-content h4 {
  color: #151f50;
  font-weight: 700;
}
.world-kidney-offer-page .hero .hero-content .badge {
  color: #e34b1c;
  font-size: 1.15rem;
  line-height: 1.7;
  animation: fadeDown 0.8s 0.2s ease both;
  padding: 0;
  font-weight: 500;
  font-style: italic;
}
.world-kidney-offer-page .info-card h5 {
  color: #d71d66;
}
.world-kidney-offer-page .cta-section {
  background: linear-gradient(135deg, #c92265, #201e4e);
}
.world-kidney-offer-page .cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 30px;
}
.world-kidney-offer-page .phone-btn {
  color: #ce2265;
}
.world-kidney-offer-page .drive-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 30px;
}
.world-kidney-offer-page .drive-section .package-features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.world-kidney-offer-page .drive-section .package-features ul li {
  background: white;
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 500;
  color: #3D2F80;
  border: 1px solid rgba(124, 92, 252, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.world-kidney-offer-page .drive-section .package-features ul li .icon {
  width: 20px;
  height: 20px;
  background: #EDE8FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: #007a8a;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.badge-note {
  background: rgba(255, 193, 7, 0.15);
  border-left: 3px solid #f59e0b;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
  color: #444;
  margin-bottom: 14px;
  line-height: 1.5;
}

/*# sourceMappingURL=main.css.map */
