:root {
  --gh-blue: #005da8;
  --gh-blue-dark: #003f73;
  --gh-pink: #f72bb7;
  --gh-pink-soft: #fff0fa;
  --gh-sky: #eaf6ff;
  --gh-text: #132033;
  --gh-muted: #6f7b8a;
  --gh-white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--gh-text);
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.gh-container {
  width: min(1180px, 92%);
  margin: auto;
}

.gh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 93, 168, 0.12);
}
.gh-nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gh-logo img {
  height: 100px;
}
.gh-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gh-pink), #ff66ca);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(247, 43, 183, 0.25);
  transition: all 0.3s ease;
}
.gh-nav-btn:hover{
  background: linear-gradient(135deg, var(--gh-blue-dark), var(--gh-blue));
}
@media (max-width: 576px) {
  .gh-logo img {
    height: 75px;
  }
  .gh-nav-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}

.gh-hero-image-form {
    width: 100%;
    display: grid;
    grid-template-columns: 75% 25%;
    background: #fff;
    overflow: hidden;
    align-items: stretch;
}
.gh-banner-image {
    position: relative;
    overflow: hidden;
    background: #fff;
    display: flex;
}
.gh-banner-image picture {
    width: 100%;
    display: block;
}
.gh-banner-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}
.gh-appointment-card {
    position: relative;
    padding: 25px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(0, 93, 168, 0.08);
}
.gh-appointment-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--gh-pink),
        var(--gh-blue)
    );
}
.gh-appointment-card > span {
    display: inline-flex;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(247, 43, 183, 0.08);
    color: var(--gh-pink);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}
.gh-appointment-card h3 {
    font-size: 25px;
    line-height: 1.1;
    color: var(--gh-blue-dark);
    margin-bottom: 20px;
}
.gh-appointment-card form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gh-appointment-card input,
.gh-appointment-card select {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 93, 168, 0.14);
    background: #fafcff;
    outline: none;
    font-size: 15px;
    transition: 0.25s ease;
}
.gh-appointment-card input:focus,
.gh-appointment-card select:focus {
    border-color: var(--gh-pink);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(247, 43, 183, 0.08);
}
.gh-appointment-card button {
    height: 50px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(
        135deg,
        var(--gh-pink),
        #ff66cb
    );
    box-shadow: 0 15px 35px rgba(247, 43, 183, 0.20);
    transition: 0.3s ease;
}
.gh-appointment-card button:hover {
    transform: translateY(-2px);
}
@media (min-width: 1600px) {
    .gh-hero-image-form {
        grid-template-columns: 78% 22%;
    }
    .gh-appointment-card h3 {
        font-size: 32px;
    }
}
@media (max-width: 1366px) {
    .gh-hero-image-form {
        grid-template-columns: 72% 28%;
    }
    .gh-appointment-card {
        padding: 30px 25px;
    }
    .gh-appointment-card h3 {
        font-size: 26px;
    }
}
@media (max-width: 992px) {
    .gh-hero-image-form {
        grid-template-columns: 1fr;
    }
    .gh-banner-image img {
        width: 100%;
        height: auto;
    }
    .gh-appointment-card {
        border-left: none;
        padding: 35px 25px;
    }
    .gh-appointment-card::before {
        width: 100%;
        height: 5px;
    }
}
@media (max-width: 576px) {
    .gh-appointment-card {
        padding: 25px 18px;
    }
    .gh-appointment-card h3 {
        font-size: 24px;
    }
    .gh-appointment-card input,
    .gh-appointment-card select,
    .gh-appointment-card button {
        height: 50px;
    }
}

.gh-care-highlights {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(247, 43, 183, 0.12), transparent 28%),
        linear-gradient(135deg, #f4fbff 0%, #ffffff 46%, #fff0fa 100%);
}
.gh-care-bg {
    position: absolute;
    right: -160px;
    top: 70px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 93, 168, 0.08);
}
.gh-care-bg::after {
    content: "";
    position: absolute;
    inset: 70px;
    border-radius: 50%;
    border: 1px solid rgba(247, 43, 183, 0.22);
}
.gh-care-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 70px;
    align-items: center;
}
.gh-care-left span {
    display: inline-flex;
    padding: 9px 18px;
    border-radius: 100px;
    background: rgba(247, 43, 183, 0.1);
    color: var(--gh-pink);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}
.gh-care-left h2 {
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -1.8px;
    color: var(--gh-blue-dark);
    margin-bottom: 22px;
}
.gh-care-left p {
    color: var(--gh-muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 520px;
}
.gh-care-btn {
    margin-top: 32px;
    display: inline-flex;
    padding: 15px 26px;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gh-pink), #ff66cb);
    box-shadow: 0 18px 40px rgba(247, 43, 183, 0.25);
}
.gh-care-right {
    display: grid;
    gap: 22px;
}
.gh-care-feature {
    position: relative;
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 22px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 93, 168, 0.1);
    box-shadow: 0 24px 65px rgba(0, 93, 168, 0.09);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: 0.35s ease;
}
.gh-care-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--gh-pink), var(--gh-blue));
    opacity: 0;
    transition: 0.35s ease;
}
.gh-care-feature::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(247, 43, 183, 0.08);
    transition: 0.35s ease;
}
.gh-care-feature:hover,
.gh-care-feature.active {
    transform: translateX(-8px);
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 93, 168, 0.15);
}
.gh-care-feature:hover::before,
.gh-care-feature.active::before {
    opacity: 1;
}
.gh-care-number {
    width: 82px;
    height: 82px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(247, 43, 183, 0.14), rgba(0, 93, 168, 0.1));
    color: var(--gh-pink);
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 900;
}
.gh-care-feature h3 {
    position: relative;
    z-index: 2;
    color: var(--gh-blue-dark);
    font-size: 24px;
    margin-bottom: 8px;
}
.gh-care-feature p {
    position: relative;
    z-index: 2;
    color: var(--gh-muted);
    line-height: 1.7;
}
@media (max-width: 992px) {
    .gh-care-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}
@media (max-width: 576px) {
    .gh-care-feature {
        grid-template-columns: 1fr;
        padding: 28px;
    }
    .gh-care-feature:hover,
    .gh-care-feature.active {
        transform: none;
    }
    .gh-care-number {
        width: 68px;
        height: 68px;
        border-radius: 22px;
    }
}

.gh-doctor-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbff 55%, #fff4fb 100%);
}
.gh-doctor-head {
    max-width: 780px;
    margin: 0 auto 60px;
    text-align: center;
}
.gh-doctor-head span,
.gh-doctor-details > span {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(247,43,183,.08);
    color: var(--gh-pink);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}
.gh-doctor-head h2 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    color: var(--gh-blue-dark);
    margin-bottom: 16px;
}
.gh-doctor-head p {
    color: var(--gh-muted);
    font-size: 17px;
    line-height: 1.8;
}
.gh-doctor-list {
    display: grid;
    gap: 34px;
}
.gh-doctor-profile {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 42px;
    align-items: center;
    padding: 30px;
    border-radius: 36px;
    background: #ffffff;
    border: 1px solid rgba(0,93,168,.08);
    box-shadow: 0 20px 60px rgba(0,93,168,.08);
}
.gh-doctor-profile.reverse {
    grid-template-columns: 1fr 360px;
}
.gh-doctor-profile.reverse .gh-doctor-photo {
    order: 2;
}
.gh-doctor-photo {
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gh-blue), var(--gh-pink));
    padding: 10px;
}
.gh-doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 24px;
}
.gh-doctor-details h3 {
    font-size: 36px;
    color: var(--gh-blue-dark);
    line-height: 1.1;
    margin-bottom: 6px;
}
.gh-doctor-details h4 {
    color: var(--gh-pink);
    font-size: 15px;
    margin-bottom: 18px;
}
.gh-doctor-details p {
    color: var(--gh-muted);
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 24px;
}
.gh-doctor-details ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.gh-doctor-details li {
    position: relative;
    padding: 13px 16px 13px 40px;
    border-radius: 15px;
    background: #f8fcff;
    color: var(--gh-blue-dark);
    font-size: 14px;
    font-weight: 700;
}
.gh-doctor-details li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    color: var(--gh-pink);
    font-weight: 900;
}
@media (max-width: 900px) {
    .gh-doctor-profile,
    .gh-doctor-profile.reverse {
        grid-template-columns: 1fr;
    }
    .gh-doctor-profile.reverse .gh-doctor-photo {
        order: 0;
    }
    .gh-doctor-photo {
        height: 380px;
    }
}
@media (max-width: 576px) {
    .gh-doctor-section {
        padding: 70px 0;
    }
    .gh-doctor-profile {
        padding: 18px;
        border-radius: 28px;
    }
    .gh-doctor-photo {
        height: 320px;
        border-radius: 24px;
    }
    .gh-doctor-details h3 {
        font-size: 28px;
    }
    .gh-doctor-details ul {
        grid-template-columns: 1fr;
    }
}

.gh-services-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #fff4fb 100%);
}
.gh-services-head {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}
.gh-services-head span {
    display: inline-flex;
    padding: 8px 17px;
    border-radius: 100px;
    background: rgba(247,43,183,.08);
    color: var(--gh-pink);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 16px;
}
.gh-services-head h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--gh-blue-dark);
    margin-bottom: 16px;
}
.gh-services-head p {
    color: var(--gh-muted);
    font-size: 17px;
    line-height: 1.8;
}
.gh-service-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.gh-service-block {
    position: relative;
    min-height: 330px;
    padding: 34px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid rgba(0,93,168,.08);
    box-shadow: 0 18px 50px rgba(0,93,168,.07);
    overflow: hidden;
}
.gh-service-block::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(247,43,183,.07);
}
.gh-service-block.featured {
    background: linear-gradient(135deg, var(--gh-blue), var(--gh-blue-dark));
}
.gh-service-block.featured::after {
    background: rgba(255,255,255,.08);
}
.gh-service-block > span {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: var(--gh-pink);
    background: rgba(247,43,183,.10);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 26px;
}
.gh-service-block.featured > span {
    color: #ffffff;
    background: rgba(255,255,255,.15);
}
.gh-service-block h3 {
    position: relative;
    z-index: 2;
    color: var(--gh-blue-dark);
    font-size: 24px;
    line-height: 1.18;
    margin-bottom: 22px;
}
.gh-service-block.featured h3 {
    color: #ffffff;
}
.gh-service-block ul {
    position: relative;
    z-index: 2;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.gh-service-block li {
    position: relative;
    padding-left: 25px;
    color: var(--gh-muted);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
}
.gh-service-block li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gh-pink);
    font-weight: 900;
}
.gh-service-block.featured li {
    color: rgba(255,255,255,.84);
}
.gh-service-block.featured li::before {
    color: #ffffff;
}
@media (max-width: 1100px) {
    .gh-service-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .gh-services-section {
        padding: 70px 0;
    }
    .gh-service-blocks {
        grid-template-columns: 1fr;
    }
    .gh-service-block {
        min-height: auto;
        padding: 28px;
        border-radius: 28px;
    }
}

.gh-testimonials-section {
    padding: 50px 0;
    background: #ffffff;
}
.gh-testimonials-head {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}
.gh-testimonials-head span {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(247,43,183,.08);
    color: var(--gh-pink);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}
.gh-testimonials-head h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--gh-blue-dark);
    margin-bottom: 18px;
}
.gh-testimonials-head p {
    color: var(--gh-muted);
    font-size: 17px;
    line-height: 1.8;
}
.gh-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.gh-testimonial-card {
    position: relative;
    padding: 35px;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(0,93,168,.08);
    box-shadow: 0 18px 50px rgba(0,93,168,.07);
}
.gh-testimonial-card::before {
    content: "“";
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 90px;
    line-height: 1;
    color: rgba(247,43,183,.08);
    font-family: Georgia, serif;
}
.gh-testimonial-card.featured {
    background: linear-gradient(
        135deg,
        var(--gh-blue),
        var(--gh-blue-dark)
    );
    transform: translateY(-15px);
}
.gh-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #f7b500;
}
.gh-testimonial-card p {
    position: relative;
    z-index: 2;
    color: var(--gh-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 28px;
}
.gh-testimonial-user strong {
    display: block;
    color: var(--gh-blue-dark);
    font-size: 17px;
    margin-bottom: 4px;
}
.gh-testimonial-user span {
    color: var(--gh-pink);
    font-size: 13px;
    font-weight: 700;
}
.gh-testimonial-card.featured p,
.gh-testimonial-card.featured strong,
.gh-testimonial-card.featured span {
    color: #ffffff;
}
.gh-testimonial-card.featured::before {
    color: rgba(255,255,255,.12);
}
@media (max-width: 992px) {
    .gh-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .gh-testimonial-card.featured {
        transform: none;
    }
}
@media (max-width: 576px) {
    .gh-testimonials-section {
        padding: 70px 0;
    }
    .gh-testimonial-card {
        padding: 28px;
        border-radius: 24px;
    }
}

.gh-cta-strip {
    width: 100%;
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 430px;
    background: linear-gradient(135deg, var(--gh-blue-dark), var(--gh-blue));
    overflow: hidden;
}
.gh-cta-image {
    height: 100%;
    min-height: 430px;
}
.gh-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gh-cta-content {
    position: relative;
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.gh-cta-content::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.gh-cta-content::after {
    content: "";
    position: absolute;
    left: 8%;
    bottom: 0;
    width: 160px;
    height: 6px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, var(--gh-pink), #ff66cb);
}
.gh-cta-content span,
.gh-cta-content h2,
.gh-cta-content p,
.gh-cta-actions {
    position: relative;
    z-index: 2;
}
.gh-cta-content span {
    width: fit-content;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}
.gh-cta-content h2 {
    max-width: 720px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -1.6px;
    color: #ffffff;
    margin-bottom: 20px;
}
.gh-cta-content p {
    max-width: 720px;
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    line-height: 1.8;
}
.gh-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}
.gh-cta-primary,
.gh-cta-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 900;
}
.gh-cta-primary {
    background: linear-gradient(135deg, var(--gh-pink), #ff66cb);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(247,43,183,0.28);
}
.gh-cta-call {
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.18);
}
@media (max-width: 900px) {
    .gh-cta-strip {
        grid-template-columns: 1fr;
    }
    .gh-cta-image {
        min-height: 320px;
    }
    .gh-cta-content {
        padding: 55px 6%;
    }
}
@media (max-width: 520px) {
    .gh-cta-image {
        min-height: 260px;
    }
    .gh-cta-actions {
        flex-direction: column;
    }
    .gh-cta-primary,
    .gh-cta-call {
        width: 100%;
        justify-content: center;
    }
}

.gh-location-section {
    padding: 50px 0;
    background: linear-gradient(
        135deg,
        #f7fbff 0%,
        #ffffff 55%,
        #fff4fb 100%
    );
}
.gh-location-head {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
}
.gh-location-head span {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(247,43,183,.08);
    color: var(--gh-pink);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 18px;
}
.gh-location-head h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--gh-blue-dark);
    margin-bottom: 18px;
}
.gh-location-head p {
    color: var(--gh-muted);
    font-size: 17px;
    line-height: 1.8;
}
.gh-location-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 30px;
    align-items: stretch;
}
.gh-location-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.gh-location-card {
    display: flex;
    gap: 18px;
    padding: 28px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(0,93,168,.08);
    box-shadow: 0 18px 50px rgba(0,93,168,.06);
}
.gh-location-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(247,43,183,.08);
    color: var(--gh-pink);
    font-size: 22px;
}
.gh-location-card h3 {
    color: var(--gh-blue-dark);
    font-size: 20px;
    margin-bottom: 6px;
}
.gh-location-card p {
    color: var(--gh-muted);
    line-height: 1.7;
}
.gh-location-map {
    overflow: hidden;
    border-radius: 34px;
    min-height: 420px;
    box-shadow: 0 25px 70px rgba(0,93,168,.10);
}
.gh-location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
}
@media (max-width: 992px) {
    .gh-location-layout {
        grid-template-columns: 1fr;
    }
    .gh-location-map {
        min-height: 350px;
    }
}
@media (max-width: 576px) {
    .gh-location-section {
        padding: 70px 0;
    }
    .gh-location-card {
        padding: 22px;
        border-radius: 22px;
    }
    .gh-location-map,
    .gh-location-map iframe {
        min-height: 300px;
        border-radius: 26px;
    }
}

.gh-footer {
    background: #ffffff;
    padding: 40px 20px;
    border-top: 1px solid rgba(0, 93, 168, 0.08);
}
.gh-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.gh-footer-logo {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
}
.gh-footer-divider {
    width: 70px;
    height: 4px;
    margin: 22px auto;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        var(--gh-pink),
        var(--gh-blue)
    );
}
.gh-footer p {
    color: var(--gh-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.gh-footer span i {
    color: crimson;
}
@media (max-width: 576px) {
    .gh-footer {
        padding: 30px 15px;
    }
    .gh-footer-logo {
        height: 50px;
    }
    .gh-footer-divider {
        margin: 18px auto;
    }
    .gh-footer p {
        font-size: 13px;
    }
}

.gh-floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gh-float-whatsapp,
.gh-float-call {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 165px;
    height: 58px;
    padding: 0 22px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    transition: .3s ease;
}
.gh-float-whatsapp {
    background: #25D366;
    color: #ffffff;
}
.gh-float-call {
    background: linear-gradient(
        135deg,
        var(--gh-blue),
        var(--gh-blue-dark)
    );
    color: #ffffff;
}
.gh-float-whatsapp:hover,
.gh-float-call:hover {
    transform: translateY(-4px);
}
.gh-float-whatsapp i,
.gh-float-call i {
    font-size: 22px;
}
@media (max-width: 768px) {
    .gh-floating-actions {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    .gh-float-whatsapp,
    .gh-float-call {
        min-width: auto;
        width: 58px;
        height: 58px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
    .gh-float-whatsapp span,
    .gh-float-call span {
        display: none;
    }
    .gh-float-whatsapp i,
    .gh-float-call i {
        font-size: 24px;
    }
}
.gh-float-whatsapp {
    animation: ghWhatsappPulse 2.5s infinite;
}
@keyframes ghWhatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.45);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

.gh-thankyou {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(247,43,183,.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f7fbff 0%,
            #ffffff 55%,
            #fff5fb 100%
        );
}
.gh-thankyou-card {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    border-radius: 42px;
    background: #ffffff;
    border: 1px solid rgba(0,93,168,.08);
    box-shadow: 0 35px 90px rgba(0,93,168,.10);
}
.gh-thankyou-icon {
    width: 95px;
    height: 95px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            135deg,
            var(--gh-pink),
            #ff66cb
        );

    color: #ffffff;
    font-size: 38px;
    box-shadow: 0 20px 45px rgba(247,43,183,.25);
}
.gh-thankyou-card > span {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(247,43,183,.08);
    color: var(--gh-pink);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 20px;
}
.gh-thankyou-card h1 {
    color: var(--gh-blue-dark);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    margin-bottom: 20px;
}
.gh-thankyou-card p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--gh-muted);
    font-size: 17px;
    line-height: 1.9;
}
.gh-thankyou-info {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gh-thankyou-info div {
    padding: 24px;
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            #f7fbff,
            #fff5fb
        );
    border: 1px solid rgba(0,93,168,.07);
}
.gh-thankyou-info strong {
    display: block;
    color: var(--gh-pink);
    font-size: 22px;
    margin-bottom: 10px;
}
.gh-thankyou-info span {
    color: var(--gh-blue-dark);
    font-size: 14px;
    font-weight: 700;
}
.gh-thankyou-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.gh-thankyou-primary,
.gh-thankyou-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 900;
}
.gh-thankyou-primary {
    background:
        linear-gradient(
            135deg,
            var(--gh-pink),
            #ff66cb
        );
    color: #ffffff;
}
.gh-thankyou-secondary {
    border: 1px solid rgba(0,93,168,.12);
    color: var(--gh-blue-dark);
    background: #ffffff;
}
@media (max-width: 768px) {
    .gh-thankyou-card {
        padding: 40px 24px;
        border-radius: 28px;
    }
    .gh-thankyou-info {
        grid-template-columns: 1fr;
    }
    .gh-thankyou-actions {
        flex-direction: column;
    }
    .gh-thankyou-primary,
    .gh-thankyou-secondary {
        width: 100%;
    }
}

