@import url('https://fonts.googleapis.com/css2?family=Elsie:wght@400;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --color-primary: #f9d69a;
    --color-secondary: #f09800;
    --color-f5b649: #f5b649;
    --color-c35105: #c35105;
    --color-f09800: #f09800;
    --color-181818: #181818;
    --color-f5f5f5: #f5f5f5;
    --color-fcf4e5: #fcf4e5;
    --color-c2c4c6: #c2c4c6;
    --color-000000: #000000;
    --color-ffffff: #ffffff;
    --font-style-normal: normal;
    --font-size-16: 16px;
    --font-size-17: 17px;
    --font-size-19: 19px;
    --font-size-22: 22px;
    --font-size-25: 25px;
    --font-size-26: 26px;
    --font-size-27: 27px;
    --font-size-33: 33px;
    --font-size-35: 35px;
    --font-size-38: 38px;
    --font-size-41: 41px;
    --font-size-45: 45px;
    --font-size-48: 48px;
    --font-size-50: 50px;
    --font-size-56: 54px;
    --font-size-60: 60px;
    --font-family-Poppins: "Poppins", sans-serif;
    --character-spacing-0: 0px;
    --line-height-22: normal;
    --line-height-25: 25px;
    --line-height-27: 27px;
    --line-height-30: 30px;
    --line-height-32: 32px;
    --line-height-35: 35px;
    --line-height-36: 36px;
    --line-height-43: 43px;
    --line-height-51: 51px;
    --line-height-60: normal;
    --line-height-66: 66px;
    --line-height-78: 78px;
    --line-height-inherit: inherit;
    --font-weight-Thin: 100;
    --font-weight-ExtraLight: 200;
    --font-weight-Light: 300;
    --font-weight-Regular: 400;
    --font-weight-Medium: 500;
    --font-weight-SemiBold: 600;
    --font-weight-Bold: 700;
    --font-weight-ExtraBold: 800;
    --font-weight-Black: 900;
    --font-weight-normal: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-family-Poppins);
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

a,
.btn,
button {
    outline: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s ease-out 0s;
}

a:focus,
.btn:focus,
button:focus,
.custom-select:focus,
.form-control:focus {
    outline: none;
    box-shadow: none;
}

.btn:hover,
a:hover,
button:hover {
    text-decoration: none;
    transition: all 0.5s ease-out 0s;
}

h2,
h3,
h4,
h5,
h6 {
    text-transform: normal;
    margin-bottom: 15px;
}

body {
    overflow-x: hidden;
    background: #ffffff;
    font-family: var(--font-family-Poppins);
}

a {
    text-decoration: none;
    font-size: 14px;
    /* color: black; */
}

.container {
    max-width: 1680px;
}

.big-title {
    font-size: 170px;
    color: white;
    font-family: "Elsie", serif;
    display: flex;
    justify-content: center;
}

.banner-title {
    font-size: 56px;
    font-weight: 700;
}

.main-title {
    font-size: 49px;
    font-weight: 700;
    margin-bottom: 0;
}

.main-subtitle {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
}
 .main-subtitle-small {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

.div-maintitle {
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 0;
}

.div-title {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 0;
}

.div-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

p {
    font-size: 19px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

.btn:hover {
    color: white;
    background: var(--color-f5b649);
    text-decoration: none;
    transition: all 0.5s ease-out 0s;
}

/* =====================
   HEADER / NAVBAR
===================== */
header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: var(--color-ffffff);
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

header.scrolled {
    position: fixed;
    background: var(--color-ffffff);
    box-shadow: 0 5px 20px #0000004d;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    z-index: 999;
    /* box-shadow: 0px 1px 12px 0px #ffffffab; */
}

header.scrolled .navbar-brand img {
    width: 150px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

.navbar-brand img {
    width: 220px;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
}

header li {
    font-size: 19px;
    margin: 0 10px;
    font-weight: 500;
}

.navbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: transparent;
    padding: 20px 0px;
    transition: all 0.3s ease;
}

.nav-button .btn {
    background: var(--color-secondary);
    color: white;
    padding: 15px 22px;
}

.navbar-expand-lg .offcanvas .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
    justify-content: space-around;
}

/* banner */
.banner-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: var(--color-primary);
    z-index: 0;
}

.banner-section {
    padding-top: 0;
    position: relative;
    z-index: 2;
    padding-left: 50px;
    padding-right: 50px;
    margin-left: auto;
    margin-right: auto;
}

.home-banner {
    width: 100%;
    height: 800px;
    border-radius: 28px;
    overflow: hidden;
    background-image: url('../images/banner/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    padding: 50px 50px 50px;
    position: relative;
}

.home-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.26);
    z-index: 1;
}

.home-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.575) 30%, transparent 50%);
    z-index: 1;
}

.home-banner>* {
    position: relative;
    z-index: 2;
}

.home-banner .lady {
    position: relative;
    width: 100%;
    height: auto;
}

.home-banner .lady img {
    position: absolute;
    /* top: 50%; */
    left: 54%;
    transform: translate(-50%, -84%);
}

.hero-bg h2 {
    display: flex;
    justify-content: space-evenly;
}

.circle-shape {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.circle-shape img {
    position: relative;
    display: block;
    opacity: 0.3;
    width: 250px;
    height: 250px;
    right: 180px;
    animation: rotateCircle 8s linear infinite;
}

.hero-content {
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    padding-bottom: 10px;
    padding-top: 23px;
    z-index: 99;
}

/* =====================
   FREE GUIDE SECTION
===================== */
.free-guide {
    position: relative;
    background: var(--color-primary);
    /* padding: 80px 0; */
    padding-bottom: 80px;
    z-index: 0;
}

.guide-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

.guide-para p {
    color: #5c5c5c;
}

.row .form-control,
.row .form-select {
    background-color: var(--color-f5b649);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: black;
    padding: 21px 20px;
    height: auto;
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.form-check-input:checked {
    background-color: var(--color-f09800);
    border-color: var(--color-f09800);
}

.form-check-input {
    border: 1px solid var(--color-f09800);
}

.health-guide {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
}

.custom-radio input {
    display: none;
}

.custom-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-16);
    cursor: pointer;
}

.custom-radio span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #cfd6dd;
    display: inline-block;
    position: relative;
    background: #fff;
}

.custom-radio span::after {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--color-f09800);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.2s ease;
}

.custom-radio input:checked+span {
    border-color: var(--color-c35105);
}

.custom-radio input:checked+span::after {
    transform: translate(-50%, -50%) scale(1);
}

.custom-radio input:not(:checked)+span::after {
    transform: translate(-50%, -50%) scale(1);
    background: #d1d1d1;
}

.custom-radio-group {
    gap: 70px;
    padding-bottom: 20px;
}

.nav-button .btn {
    background: var(--color-secondary);
    color: white;
    padding: 15px 22px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: color 0.3s ease;
}

.nav-button .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-c35105);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.pdf-card-btn ::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-c35105);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-button .btn:hover::before {
    transform: scaleX(1);
}

.nav-button .btn:hover {
    color: #ffffff;
    background: var(--color-secondary);
    /* box-shadow: 0 20px 25px -5px rgba(185, 98, 16, 0.466); */
}

.pdf-card-btn:hover {
    color: #ffffff;
    background: var(--color-secondary);
    box-shadow: 0 20px 25px -5px rgba(185, 98, 16, 0.466);
}

.free-guide .nav-button .btn {
    background: var(--color-c35105);
    font-size: 21px;
    padding: 15px 150px;
}

.free-guide .nav-button .btn ::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-c35105);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.guide-right {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.guide-right img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.health-guide {
    padding-top: 90px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: flex-start;
}

.health-benifits {
    background: white;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heal-img {
    animation: rotateCircle 8s linear infinite;
}

.heal-img img {
    height: 150px;
    width: 150px;
}

/* =====================
   PAIN SECTION
===================== */
.pain-section-bg {
    background: var(--color-f09800);
    padding: 40px 50px;
    position: relative;
    border-radius: 24px;
    margin: 0 50px;
}

.pain-point-slide img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pain-slide {
    background: #f3ad33;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    width: 90%;
    align-items: center;
    height: 440px;
    overflow: hidden;
}

.pain-slide p {
    padding: 25px;
    text-align: center;
}

.pain-p {
    font-size: 17px;
}

.pain-section::before {
    content: '';
    position: absolute;
    top: 0;
    width: 110%;
    height: 60%;
    background: var(--color-primary);
    z-index: -1;
}

.root-cause {
    background: #fff;
    padding: 60px 0;
}

.root-cause .main-title {
    margin-bottom: 40px;
}

.left-cause {
    margin-right: -50px;
}

.right-cause {
    margin-left: -50px;
}

.causes-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 30px;
}

.causes-inner-1 {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 70px;
}

.causes-inner-1 .cause-content {
    text-align: left;
}

.root-cause :first-child .causes-inner {
    flex-direction: row-reverse;
    text-align: right;
}

.cause-icons {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f5a623;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cause-icons img {
    width: 50px;
    height: 50px;
}

.root-cause {
    text-align: center;
}

.root-cause h2 {
    color: var(--color-c35105);
}

.root-cause img {
    max-width: 100%;
    height: auto;
}

.center-img {
    position: relative;
}

.center-img>img {
    position: relative;
    z-index: 2;
}

.center-img .circle-shape {
    position: absolute;
    top: 30%;
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.center-img .circle-shape img {
    width: 350px;
    height: 350px;
    opacity: 1;
    right: 0;
    animation: rotateCircle 8s linear infinite;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* counter */
.counter-sec {
    background: var(--color-primary);
    height: 270px;
    margin: 50px;
    padding: 50px 0;
    border-radius: 24px;
}

.counter-sec h2 {
    font-size: 113px;
    color: var(--color-c35105);
    margin: 0;
}

.values {
    padding: 0 180px;
}

.counter-circle img {
    animation: rotateCircle 8s linear infinite;
    height: 200px;
    position: absolute;
    margin-left: 15px;
}

.counter-circle-2 img {
    animation: rotateCircle 8s linear infinite;
    height: 280px;
    position: absolute;
    right: 40px;
    margin-top: -400px;
}

/* heal */
.heal-icons {
    margin-bottom: 20px;
}

.healing .main-title {
    margin-bottom: 50px;
}

.healing span {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 40px;
}

.healped-approach {
    position: relative;
    text-align: center;
}

.healped-approach h2 {
    padding-bottom: 40px;
    display: inline-block;
    margin: 0 auto;
    font-weight: 400;
}

.healped-approach::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    height: 565px;
    width: 54%;
    border-radius: 50%;
    background: var(--color-c35105);
    z-index: -1;
}

.left-heal {
    transform: translateX(100px);
}

.right-heal {
    transform: translateX(-100px);
}

.doctor {
    position: relative;
    padding: 15px;
    border-radius: 15px;
    margin-right: 50px;
    background: #f09800;
    z-index: 1;
}

.healing-team {
    position: relative;
    background: #fcf4e5;
}

.healing-left {
    position: relative;
}

.doctor-img {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.healing-team-content {
    position: relative;
    background: var(--color-primary);
    padding: 40px;
    padding-top: 15px;
    padding-left: 80px;
    margin-left: -79px;
    text-align: justify;
}

.healing-content {
    font-weight: 600;
}

.healing-team-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 0;
    height: 20%;
    background: var(--color-primary);
    z-index: 0;
}

.healing-right {
    padding-top: 100px;
    padding-left: 124px;
    align-items: center;
    justify-content: center;
}

.location {
    font-family: var(--font-family-Poppins);
    color: #c35105;
}

i.fa-solid.fa-location-dot.d-flex {
    font-size: 25px;
    gap: 10px;
}

.healing-right .main-title {
    padding-bottom: 40px;
}

.healing-team::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 300px;
    height: 300px;
    background-image: url('../images/icon/Shape-4.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: rotateCircle 8s linear infinite;
}

/* testimonial */
.testimonial-head {
    padding-bottom: 40px;
}

.testimonials-section {
    padding: 5rem 1rem 4rem;
    text-align: center;
    overflow: hidden;
}

.testimonials-section .swiper {
    max-width: 1100px;
    margin: 0 auto;
    overflow: visible;
}

.testimonials-section .swiper-slide {
    border-radius: 20px;
    padding: 2.5rem 2rem;
    background: #ffeadc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    transition: background 0.4s ease;
    cursor: pointer;
}

.testimonials-section .swiper-wrapper {
    display: flex;
    align-items: center;
}

.testimonials-section .swiper-slide-active {
    background: var(--color-primary);
    min-height: 400px;
    justify-content: center;
    align-items: center;
}

.testimonials-section .swiper {
    overflow: visible;
}

.tc-text {
    line-height: 1.55;
    color: #5a3522;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.tc-text.expanded {
    display: block;
    overflow: visible;
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
}

.testimonials-section .author {
    justify-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonials-section .author-avatar {
    width: 44px;
    height: 44px;
    font-size: 14px;
}

.tc-position {
    font-style: italic;
    font-weight: 200;
}

.read-more-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a7c59;
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-block;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.read-more-btn:hover {
    color: #2d5c3a;
}

.swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: #fff;
    color: #333;
    top: 50%;
    left: 0;
}

.swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: #fff;
    color: #333;
    top: 50%;
    right: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: #f5f5f5;
    border-color: #aaa;
}

/* video     */
.smile-gallery-swiper {
    padding-right: 0px;
}

.video-card {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    height: auto;
    border: 5px solid var(--color-secondary);
    cursor: pointer;
    pointer-events: auto;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* PLAY */

.play-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* FADED */
.gallery-faded {
    opacity: 0.4;
}

/* NAV */
/* 
.gallery-nav {
    position: absolute;
    bottom: -60px;
    right: 0;
    display: flex;
    gap: 14px;
} */

.gallery-prev,
.gallery-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #fff;
    /* color: #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* HOVER */
.video-card:hover img {
    transform: scale(1.08);
}

.video-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.video-lightbox.active {
    display: block;
    margin: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(900px, 90%);
    aspect-ratio: 16 / 9;
    transform: translate(-50%, -50%);
    background: #000;
    border-radius: 16px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.video-trigger:hover .play-icon {
    transform: scale(1.1);
}

.play-icon {
    transition: transform 0.3s ease;
}

/* gallery-section */
.gallery-section {
    background: url(../images/gallery-bg.jpg)center center/cover no-repeat;
    padding-bottom: 0 !important;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gallery-header {
    margin-bottom: 150px;
}

.gallery-swiper {
    margin-bottom: -100px;
}

.gallery-nav i {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* gallery-section */
/* ================================
   Popup Overlay
================================ */
.submit {
    border-radius: 10px;
    color: white;
    position: relative;
    z-index: 0;
    background: var(--color-secondary);
    padding: 15px 22px;
    overflow: hidden;
    transition: color 0.3s;
}

.quote-form .custom-radio-group {
    gap: 20px;
}

.quote-form .custom-radio {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.quote-form .custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.quote-form .custom-radio span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #333;
    border-radius: 50%;
}

/* Checked state */
.quote-form .custom-radio input:checked~span {
    background-color: #007bff;
    border-color: #007bff;
}

.quote-form .custom-radio span::after {
    content: "";
    position: absolute;
    display: none;
}

.quote-form .custom-radio input:checked~span::after {
    display: block;
}

.quote-form .custom-radio span::after {
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.quote-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.quote-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================================
   Popup Box
================================ */
.quote-box {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    max-width: 520px;
    width: 90%;
    padding: 35px 30px;
    border-radius: 16px;
    position: relative;
    transform: translateY(50px) scale(0.95);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-overlay.active .quote-box {
    transform: translateY(0) scale(1);
}

/* ================================
   Close Button
================================ */
.quote-close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 26px;
    border: none;
    background: none;
    color: var(--color-000000);
    cursor: pointer;
}

/* ================================
   Header
================================ */
.quote-header h2 {
    font-size: 28px;
    color: var(--color-145511);
    margin-bottom: 5px;
}

.quote-header p {
    color: var(--color-282828);
    font-size: 14px;
    margin-bottom: 25px;
}


/* ================================
   Form Layout
================================ */
.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* Submit */
.submit-btn {
    background: var(--color-c35105);
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* ================= RADIO (SCOPED) ================= */

.quote-form .travel-section .custom-radio-group {
    gap: 25px;
}

.quote-form .travel-section .custom-radio {
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.quote-form .travel-section .custom-radio input {
    position: absolute;
    opacity: 0;
}

.quote-form .travel-section .custom-radio span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    border: 2px solid #555;
    border-radius: 50%;
    background: #fff;
}

.quote-form .travel-section .custom-radio input:checked~span {
    background: #28a745;
    border-color: #28a745;
}

.quote-form .travel-section .custom-radio span::after {
    content: "";
    position: absolute;
    display: none;
}

.quote-form .travel-section .custom-radio input:checked~span::after {
    display: block;
}

.quote-form .travel-section .custom-radio span::after {
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

/* Full width fields */
.form-group.full {
    grid-column: 1 / -1;
}

.form-group.full h4 {
    font-size: 14px;
    text-align: center;
}

.travel-radio-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

.form-group .travel-radio {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 16px;
}

.form-group .travel-radio input {
    position: absolute;
    opacity: 0;
}

.travel-radio span {
    position: absolute;
    left: 0;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 2px solid #007bff;
    border-radius: 50%;
    transition: 0.3s;
}

.travel-radio input:checked+span {
    background: #007bff;
    box-shadow: inset 0 0 0 4px #fff;
}

.travel-radio span {
    pointer-events: none;
    /* IMPORTANT */
}

/* ================================
   Form Fields
================================ */
.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 12px;
    border-radius: 8px;
    border: 1px solid var(--color-c2c4c6);
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--color-000000);
}

.form-group textarea {
    resize: none;
}

/* ================================
   Floating Labels
================================ */
.form-group label {
    position: absolute;
    top: 50%;
    left: 12px;
    color: var(--color-c35105);
    font-size: 13px;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 0 6px;
    pointer-events: none;
    transition: 0.3s ease;
}

.form-group textarea+label {
    top: 18px;
    transform: none;
}

/* Active Label */
.form-group input:focus+label,
.form-group input:valid+label,
.form-group textarea:focus+label,
.form-group textarea:valid+label,
.form-group select:focus+label,
.form-group select:valid+label {
    top: -7px;
    font-size: 11px;
    color: var(--color-f09800);
}

/* Focus Border */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-c35105);
}

/* ================================
   Submit Button
================================ */
.quote-btn {
    grid-column: 1 / -1;
    background-color: var(--color-468d42);
    color: #ffffff;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: var(--color-145511);
    color: var(--color-ffffff);
}

/* return-to-top */
#return-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    background: var(--color-f09800);
    color: var(--color-ffffff);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

#return-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#return-to-top img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

#return-to-top:hover {
    background: var(--color-f5b649);
}

.sticky-social-btn {
    width: 45px;
    height: 45px;
    position: fixed;
    right: 20px;
    bottom:80px;
    padding: 10px 15px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    transition: background-color 0.3s;
    border: 1px solid #ffffff;
    align-items: center;
    justify-content: center;
}

/* footer */
.footer {
    background-color: #c35105;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
    font-family: 'Raleway', sans-serif;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 15px;
    /* left: -10px; */
    width: 150px;
    height: 150px;
    background-image: url('../images/icon/Shape-4.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: rotateCircle 8s linear infinite;
}

.footer-col h4 {
    color: #f5a623;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 17px;
    line-height: 1.7;
}

.contact-item a {
    color: #fff;
    font-size: var(--font-size-17);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item img {
    width: 22px;
    height: 20px;
    margin-top: 3px;
    object-fit: contain;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #f5a623;
}

.footer-social ul {
    display: flex;
    flex-direction: row;
    padding-top: 20px;
    gap: 10px;
}

.footer-social i {
    font-size: 20px;
}

.footer-social ul li a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-f5f5f5);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-social ul li a:hover {
    background: var(--color-ffffff);
    color: #fff !important;
}

.footer-social ul li a:hover i {
    color: var(--color-c35105);
}

.pdf-card {
    background-image: url('../images/footer.jpg');
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
}

.card-button a {
    color: #fff;
    font-size: 21px;
    font-weight: bold;
    display: flex;
    margin: 20px;
    width: 92%;
    background: #f5a623;
    border-radius: 15px;
    flex-direction: column;
    overflow: hidden;
    padding: 15px;
}

.pdf-card-body {
    padding: 16px 18px 20px;
    width: 100%;
    height: auto!important;
    background: rgba(0, 0, 0, 0.799);
    position: relative;
    z-index: 2;
}

.pdf-card-title {
    color: white;
    font-style: italic;
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 20px;
}

.pdf-card-subtitle {
    color: var(--color-secondary);
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pdf-card-btn {
    display: inline-block;
    background: #fff;
    color: var(--color-c35105);
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 21px;
    padding: 15px 42px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

/* .pdf-card-btn:hover {
    background: #f5a623;
    color: #1a1a2e;
} */

.footer-divider {
    border: none;
    width: 60%;
    border-top: 1px solid rgba(255, 255, 255, 0.733);
    margin: 10px 10px 20px;
}

.footer-bottom {
    padding: 0 0 24px;
    font-size: 19px !important;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom a {
    color: #f5a623;
    font-size: 19px;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}