* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

ul,
li {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

.main {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.common-heading {
    color: #868686;
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 55px;
    text-transform: uppercase;
}

/* Header */
.header {
    width: 90%;
    padding: 19px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 300px;
    background: #FFF;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
}

.header img {
    width: 168px;
    height: auto;
    object-fit: cover;
}

.header nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.header nav ul {
    display: flex;
    gap: 30px;
}

.header ul a {
    color: #868686;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.btn a {
    display: inline-flex;
    padding: 18px 24px;
    border-radius: 89px;
    background: #C0C0C0;
    position: relative;
    z-index: 5;
}

.btn a span {
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.btn a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #EECCDA 0%, #FFB9D6 100%);
    opacity: 0;
    z-index: 1;
    transition: ease all 0.4s;
}

.btn a:hover::before {
    opacity: 1;
}





/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    max-height: 900px;
    border-radius: 0 0 30px 30px;
    background-image: url('../images/Gyneco_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    overflow: hidden;
    position: relative;
    z-index: 9;
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 70px 12% 35px 70px;
    position: relative;
    z-index: 8;
}

.hero-content h1 {
    color: #868686;
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px;
    text-transform: uppercase;
}

.hero-content h3 {
    color: #868686;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    max-width: 507px;
    margin: 10px 0;
}

.hero-content p {
    color: #868686;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    max-width: 545px;
    margin-bottom: 40px;
}

.hero-content>div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: #F6F6F6;
    filter: blur(150px);
    position: absolute;
    top: 0;
    right: 35%;
    z-index: 7;
}

.hero-content video {
    width: 340px;
    height: 500px;
    border-radius: 200px;
    flex-shrink: 0;
}

.hero-content .video-wrapper {
    width: 260px;
    height: 370px;
    border-radius: 200px;
    flex-shrink: 0;
    overflow: hidden;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Floating icons */
.whatsapp-btn,
.call-btn {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
    right: 20px;
}



.whatsapp-btn:hover,
.call-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn img {
    width: 30px;
    height: 30px;
}

.call-btn {
    background-color: #C0C0C0;
    height: fit-content;
    width: fit-content;
    color: #000;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    display: flex;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 12px;
    text-transform: capitalize;
    left: 20px;
    transition: transform 0.3s;
}

.call-btn img {
    width: 20px;
    height: auto;
}

/* About Dr Maria */
.about-section {
    width: 100%;
    padding: 70px;
    display: flex;
    gap: 20px;
}

.dr-img {
    width: 46%;
}

.dr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.about-content {
    width: 54%;
    border-radius: 30px;
    padding: 40px 50px;
    background: #F5F5F5;
}

.about-content .common-heading {
    margin-bottom: 12px;
    line-height: 48px;
}

.about-content h3 {
    color: #868686;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    max-width: 599px;
    margin-bottom: 20px;
}

.about-content p {
    color: #868686;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    max-width: 645px;
    margin-bottom: 20px;
}

.about-content .btn {
    margin-top: 20px;
}

/* Google Reviews */
.reviews-section {
    width: 100%;
    padding: 50px 70px;
    background: rgba(252, 225, 213, 0.30);
}

.reviews-section .common-heading {
    margin-bottom: 36px;
}

.review-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 30px;
    background: #FFF;
}

.user-details {
    width: 100%;
    display: flex;
    gap: 16px;
}

.user-details img:first-of-type {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 40px;
}

.user-details>div {
    width: 100%;
}

.user-details h6 {
    color: #868686;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 8px;
}

.user-details p {
    color: rgba(0, 0, 0, 0.50);
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
}

.user-details img:last-of-type {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.review-wrapper>p {
    color: #868686;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

.reviews-section .splide__arrow--next {
    right: unset;
    left: calc(50% + 30px);
}

.reviews-section .splide__arrow--prev {
    left: calc(50% - 30px);
}

.reviews-section .splide__arrow {
    width: 3em;
    height: 3em;
    background: #fff;
    opacity: 1;
    display: none;
    transform: translateX(-50%);
}


.show-toggle {
    color: #868686;
    font-weight: 500;
    cursor: pointer;
    margin-left: 4px;
    transition: 0.3s ease;
}

.show-toggle:hover {
    color: #000;
}

.show-toggle.expanded {
    color: #000;
}

.review-text {
    transition: all 0.3s ease;
}


/* Choose Section */
.choose-section {
    width: 100%;
    padding: 70px;
    display: flex;
    align-items: center;
    gap: 70px;
}

.choose-section>div {
    width: 100%;
}

.choose-section>div>img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.choose-content {
    max-width: 550px;
}

.choose-content .common-heading {
    margin-bottom: 32px;
    max-width: 499px;
    line-height: 50px;
}

.points-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.points-wrapper img {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.points-wrapper>div {
    display: flex;
    gap: 32px;
    align-items: center;
}

.points-wrapper p {
    color: #868686;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/* Procedure Section */
.procedure-section {
    width: 100%;
    padding: 50px 70px;
    background: rgba(252, 225, 213, 0.70);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.procedure-section h3 {
    color: #868686;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 55px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.procedure-section h6 {
    color: #868686;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase;
    max-width: 870px;
}

.procedure-divider {
    width: 300px;
    height: 1px;
    background: #868686;
    margin: 30px 0 16px;
}

.procedure-section p {
    color: #868686;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

/* Expect Section */
.expect-section {
    width: 100%;
    padding: 70px 70px 100px;
}

.expect-section .common-heading {
    text-align: center;
    margin-bottom: 36px;
}

.expect-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.expect-content>div>img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 30px;
}

.expect-content h4 {
    color: #868686;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-transform: uppercase;
    margin: 20px 0;
}

.expect-content .points-wrapper {
    gap: 10px;
    margin-bottom: 0;
}

.expect-content .points-wrapper>div {
    gap: 16px;
}

.expect-content .points-wrapper>div p {
    max-width: 342px;
}

/* About Gyneco */
.about-gyneco {
    width: 100%;
    padding: 50px 70px;
    background-image: url('../images/about-gyneco.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.about-gyneco-content {
    width: 100%;
    border-radius: 30px;
    background: rgba(253, 249, 244, 0.85);
    backdrop-filter: blur(7px);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-gyneco-content .common-heading {
    margin-bottom: 20px;
}

.about-gyneco-content p {
    color: #868686;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    max-width: 936px;
    margin-bottom: 22px;
}

.about-content .btn {
    margin-top: 14px;
}

/* Image Slider */
.image-slider {
    width: 100%;
    padding: 50px 0 70px;
}

.image-slider img {
    width: 100%;
    border-radius: 30px;
}

.image-slider .splide__arrow {
    width: 40px;
    height: 40px;
    object-fit: cover;
    background: #fff;
    opacity: 1;
    flex-shrink: 0;
}

.image-slider .splide__arrow img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    padding: 0 70px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-section .common-heading {
    margin-bottom: 32px;
}

.faq-wrapper {
    width: 100%;
    max-width: 859px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.faq {
    width: 100%;
    padding: 26px 42px 26px 32px;
    border-radius: 16px;
    background: #F5F5F5;
    display: flex;
    gap: 16px;
    cursor: pointer;
}

.faq img {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    transition: transform 0.3s ease;
}

.faq.active img {
    transform: rotate(180deg);
}

.faq h3 {
    color: #868686;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 135%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq p {
    color: #868686;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 166%;
    padding-top: 16px;
}

.faq.active .faq-answer {
    max-height: 300px;
}

/* Consultaion Section */
.consultation-section {
    width: 100%;
    padding: 50px 70px;
    display: flex;
    justify-content: space-between;
    background-image: url('../images/Bougainvillea.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.consultation-section>div {
    width: 100%;
}

.form-heading {
    max-width: 440px;
}

.form-heading .common-heading {
    max-width: 436px;
    margin: 50px 0 24px;
    color: #fff;
}

.form-heading p {
    color: #FFF;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.form-wrapper {
    max-width: 750px;
    border-radius: 30px;
    background: #FFF;
}

.form-wrapper form {
    width: 100%;
    padding: 36px 36px 43px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.form-wrapper form input,
.form-wrapper form select,
.form-wrapper form textarea {
    width: 100%;
    padding: 20px 24px 17px;
    border-radius: 30px;
    background: #F7F9F9;
    border: transparent;
    outline: none;
    color: rgba(0, 0, 0, 0.50);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-wrapper form input::placeholder,
.form-wrapper form select::placeholder,
.form-wrapper form textarea::placeholder,
.fake-placeholder {
    color: rgba(0, 0, 0, 0.50);
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-wrapper form div {
    width: 100%;
    display: flex;
    gap: 14px;
}

.form-wrapper form textarea {
    height: 200px;
    resize: none;
}

.form-wrapper form button {
    display: inline-flex;
    padding: 18px 24px;
    border-radius: 89px;
    background: #C0C0C0;
    position: relative;
    z-index: 5;
    margin-top: 4px;
}

.form-wrapper form button span {
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.form-wrapper form button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #EECCDA 0%, #FFB9D6 100%);
    opacity: 0;
    z-index: 1;
    transition: ease all 0.4s;
}

.form-wrapper form button:hover::before {
    opacity: 1;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-wrapper form .datetime-wrapper {
    display: block;
    position: relative;
}

.datetime-wrapper input {
    width: 100%;
    position: relative;
    z-index: 2;
    color: transparent;
}

/* hide calendar icon */
.datetime-wrapper input::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 20px;
    width: 100%;
    cursor: pointer;
}

/* fake placeholder */
.fake-placeholder {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: 0.2s;
    z-index: 9;
}

#datetime-error {
    color: red;
    margin-top: 5px;
    display: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
}

/* Footer */
.footer {
    width: 100%;
    padding: 50px 70px 70px;
}

.footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.footer-logo img {
    width: 272px;
    height: auto;
    object-fit: cover;
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.contact-info h6 {
    color: #868686;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-info p {
    color: #868686;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-bottom: 24px;
}

.contact-info p:first-of-type {
    max-width: 276px;
}

.contact-info a {
    color: #868686;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.social-links h6 {
    color: #868686;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 29px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.social-links div {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 60px;
    background: #FCE1D5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.social-links a img {
    width: 100%;
    height: 100%;
}