:root{

    --primary:#E91E63;
    --primary-dark:#C2185B;
    --primary-light:#FCE4EC;

    --text:#333333;
    --white:#ffffff;

    --bg:#FFF8FA;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;
    padding:0;
    margin:0;

}

section{

    padding:80px 0;

}

.section-title{

    font-size:42px;
    font-weight:700;
    text-align:center;
    margin-bottom:15px;

}

.section-subtitle{

    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
    color:#666;

}
.hero-section {

    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background:
    linear-gradient(
    135deg,
    #ffffff 0%,
    #fff3f7 50%,
    #ffe4ee 100%
    );

}

.hero-section::before {

    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    background: rgba(233,30,99,.08);

    border-radius: 50%;

    top: -250px;
    right: -250px;

}

.hero-content {

    position: relative;
    z-index: 2;

}

.hero-badge {

    display: inline-flex;

    padding: 10px 20px;

    background: #fff;

    border-radius: 50px;

    color: var(--primary);

    font-weight: 600;

    box-shadow: 0 10px 25px rgba(0,0,0,.08);

    margin-bottom: 20px;

}

.hero-content h1 {

    font-size: 58px;

    font-weight: 800;

    line-height: 1.1;

    color: #222;

    margin-bottom: 25px;

}

.hero-description {

    font-size: 18px;

    line-height: 1.8;

    color: #666;

    max-width: 650px;

    margin-bottom: 30px;

}

.hero-features {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 15px;

    margin-bottom: 35px;

}

.feature-item {

    background: #fff;

    padding: 15px 20px;

    border-radius: 12px;

    font-weight: 500;

    box-shadow: 0 5px 20px rgba(0,0,0,.05);

}

.hero-buttons {

    display: flex;
    gap: 15px;
    flex-wrap: wrap;

    margin-bottom: 40px;

}

.call-btn,
.appointment-btn {

    padding: 16px 30px;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s;

}

.call-btn {

    background: var(--primary);
    color: #fff;

}

.call-btn:hover {

    background: var(--primary-dark);
    color: #fff;

}

.appointment-btn {

    background: #fff;

    color: var(--primary);

    border: 2px solid var(--primary);

}

.appointment-btn:hover {

    background: var(--primary);

    color: #fff;

}

.hero-trust {

    display: flex;
    gap: 25px;
    flex-wrap: wrap;

}

.trust-box {

    background: #fff;

    padding: 18px 25px;

    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

}

.trust-box h3 {

    color: var(--primary);

    font-size: 28px;
    font-weight: 700;

    margin-bottom: 5px;

}

.hero-form-card {

    background: #fff;

    padding: 35px;

    border-radius: 24px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

    position: relative;
    z-index: 2;

}

.form-header {

    text-align: center;
    margin-bottom: 25px;

}

.form-header h3 {

    font-size: 28px;
    font-weight: 700;

}

.form-header p {

    color: #777;
    margin-top: 10px;

}

.custom-input {

    height: 58px;

    border-radius: 12px;

    border: 1px solid #e5e5e5;

    padding-left: 15px;

}

.custom-input:focus {

    border-color: var(--primary);

    box-shadow: 0 0 0 .15rem rgba(233,30,99,.15);

}

.submit-btn {

    width: 100%;

    height: 58px;

    border: none;

    border-radius: 12px;

    background: var(--primary);

    color: #fff;

    font-weight: 600;

    font-size: 18px;

    transition: .3s;

}

.submit-btn:hover {

    background: var(--primary-dark);

}

.form-contact {

    margin-top: 20px;
    text-align: center;

}

.form-contact a {

    color: var(--primary);
    font-weight: 700;

}

.doctor-image-wrapper {

    position: absolute;

    bottom: 0;
    right: 35%;

    z-index: 1;

}

.doctor-image {

    max-height: 700px;
    object-fit: contain;

}
@media(max-width:991px){

    .hero-section{
        padding:80px 0;
    }

    .hero-content h1{
        font-size:40px;
    }

    .doctor-image-wrapper{
        display:none;
    }

    .hero-features{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .hero-content h1{
        font-size:32px;
    }

    .hero-description{
        font-size:16px;
    }

    .hero-form-card{
        padding:25px;
    }

    .hero-trust{
        justify-content:center;
    }

}
.stats-section {

    position: relative;
    margin-top: -50px;
    z-index: 10;

}

.stats-wrapper {

    background: #ffffff;

    border-radius: 30px;

    padding: 40px;

    box-shadow:
    0 15px 50px rgba(0,0,0,.08);

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 25px;

}

.stat-card {

    text-align: center;

    padding: 25px 15px;

    border-radius: 20px;

    transition: all .35s ease;

    position: relative;

}

.stat-card:hover {

    transform: translateY(-8px);

    background: #fff7fa;

}

.stat-icon {

    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
    linear-gradient(
    135deg,
    #E91E63,
    #ff7bac
    );

    color: #fff;

    font-size: 28px;

    box-shadow:
    0 10px 25px rgba(233,30,99,.25);

}

.stat-card h3 {

    font-size: 42px;

    font-weight: 800;

    color: var(--primary);

    margin-bottom: 10px;

    line-height: 1;

}

.stat-card p {

    margin: 0;

    color: #666;

    font-size: 16px;

    font-weight: 500;

    line-height: 1.6;

}
@media(max-width:991px){

    .stats-wrapper{

        grid-template-columns: repeat(2,1fr);

        padding: 30px;

    }

}

@media(max-width:576px){

    .stats-section{

        margin-top:0;

        padding-top:30px;

    }

    .stats-wrapper{

        grid-template-columns:1fr;

        gap:20px;

        border-radius:20px;

        padding:25px;

    }

    .stat-card h3{

        font-size:34px;

    }

}
.doctor-section {

    background: #fff;
    position: relative;
    overflow: hidden;

}

.doctor-image-box {

    position: relative;
    text-align: center;

}

.image-bg {

    position: absolute;

    width: 350px;
    height: 350px;

    background: linear-gradient(
        135deg,
        #ffe4ee,
        #ffd4e6
    );

    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 1;

}

.doctor-profile-img {

    position: relative;

    z-index: 2;

    max-width: 100%;
    height: auto;

    filter: drop-shadow(
        0 20px 35px rgba(0,0,0,.15)
    );

}

.experience-badge {

    position: absolute;

    bottom: 40px;
    right: 20px;

    background: #fff;

    padding: 20px;

    border-radius: 20px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.1);

    z-index: 3;

}

.experience-badge h4 {

    color: var(--primary);

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 5px;

}

.experience-badge span {

    font-size: 14px;
    color: #666;

}

.section-tag {

    display: inline-block;

    background: var(--primary-light);

    color: var(--primary);

    padding: 10px 18px;

    border-radius: 50px;

    font-weight: 600;

    margin-bottom: 20px;

}

.doctor-content h2 {

    font-size: 48px;

    font-weight: 800;

    margin-bottom: 10px;

}

.doctor-content h5 {

    color: var(--primary);

    font-weight: 600;

    margin-bottom: 25px;

}

.doctor-content p {

    color: #666;

    line-height: 1.9;

    margin-bottom: 20px;

}

.doctor-highlights {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 15px;

    margin-top: 30px;

    margin-bottom: 35px;

}

.highlight-item {

    background: #fff7fa;

    padding: 15px 20px;

    border-radius: 12px;

    font-weight: 500;

}

.highlight-item i {

    color: var(--primary);

    margin-right: 10px;

}

.doctor-info-cards {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    margin-bottom: 35px;

}

.info-card {

    flex: 1;

    min-width: 150px;

    background: #fff;

    border-radius: 18px;

    padding: 25px;

    text-align: center;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

}

.info-card h3 {

    color: var(--primary);

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 10px;

}

.info-card p {

    margin: 0;
    color: #666;
    line-height: 1.4;

}

.doctor-cta-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 35px;

    border-radius: 12px;

    background: var(--primary);

    color: #fff;

    font-weight: 600;

    transition: .3s;

}

.doctor-cta-btn:hover {

    background: var(--primary-dark);

    color: #fff;

}
@media(max-width:991px){

    .doctor-content{
        text-align:center;
    }

    .doctor-highlights{
        grid-template-columns:1fr;
    }

    .doctor-content h2{
        font-size:38px;
    }

    .doctor-info-cards{
        justify-content:center;
    }

    .experience-badge{
        right:0;
        bottom:20px;
    }

}

@media(max-width:576px){

    .doctor-content h2{
        font-size:30px;
    }

    .info-card{
        min-width:100%;
    }

    .experience-badge{

        position:relative;

        margin-top:20px;

        display:inline-block;

        right:auto;
        bottom:auto;

    }

}
.services-section {

    background: linear-gradient(
        180deg,
        #fff,
        #fff7fa
    );

    position: relative;
}

.section-heading {

    text-align: center;
    margin-bottom: 60px;
}

.section-description {

    max-width: 750px;
    margin: 20px auto 0;
    color: #666;
    line-height: 1.8;
}

.service-card {

    background: #fff;

    border-radius: 24px;

    padding: 35px 25px;

    height: 100%;

    text-align: center;

    transition: .4s;

    position: relative;

    overflow: hidden;

    border: 1px solid #ffe1eb;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

}

.service-card:hover {

    transform: translateY(-10px);

    box-shadow:
    0 20px 40px rgba(233,30,99,.15);

}

.service-card:hover .service-icon {

    transform: scale(1.1);
}

.service-icon {

    width: 80px;
    height: 80px;

    margin: auto;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
    linear-gradient(
        135deg,
        #E91E63,
        #ff80ab
    );

    color: #fff;

    font-size: 30px;

    margin-bottom: 25px;

    transition: .3s;
}

.service-card h3 {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 15px;

    color: #222;
}

.service-card p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 0;
}

.services-cta {

    margin-top: 70px;

    text-align: center;

    background: #fff;

    border-radius: 30px;

    padding: 50px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

}

.services-cta h3 {

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 15px;
}

.services-cta p {

    color: #666;

    margin-bottom: 25px;
}

.service-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 35px;

    background: var(--primary);

    color: #fff;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s;
}

.service-btn:hover {

    background: var(--primary-dark);

    color: #fff;
}
@media(max-width:991px){

    .services-cta{

        padding:40px 25px;

    }

    .services-cta h3{

        font-size:28px;

    }

}

@media(max-width:576px){

    .section-heading{

        margin-bottom:40px;

    }

    .service-card{

        padding:30px 20px;

    }

    .services-cta{

        padding:35px 20px;

    }

    .services-cta h3{

        font-size:24px;

    }

}
.why-us-section {

    background: #ffffff;

    position: relative;

    overflow: hidden;

}

.why-image-card {

    position: relative;

    border-radius: 30px;

    overflow: hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

}

.hospital-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 30px;

}

.hospital-badge {

    position: absolute;

    top: 25px;

    left: 25px;

    z-index: 2;

    background: rgba(255,255,255,.95);

    padding: 12px 20px;

    border-radius: 50px;

    font-weight: 600;

    color: var(--primary);

    box-shadow:
    0 10px 30px rgba(0,0,0,.1);

}

.why-content {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.why-feature {

    display: flex;

    gap: 20px;

    align-items: flex-start;

    background: #fff7fa;

    padding: 25px;

    border-radius: 20px;

    transition: .3s;

}

.why-feature:hover {

    transform: translateX(8px);

    background: #fff1f6;

}

.why-icon {

    min-width: 70px;

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background:
    linear-gradient(
    135deg,
    #E91E63,
    #ff80ab
    );

    color: #fff;

    font-size: 28px;

    box-shadow:
    0 10px 25px rgba(233,30,99,.2);

}

.why-feature h4 {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 8px;

    color: #222;

}

.why-feature p {

    margin: 0;

    color: #666;

    line-height: 1.8;

}
@media(max-width:991px){

    .why-image-card{

        max-width:650px;

        margin:auto;

    }

}

@media(max-width:576px){

    .why-feature{

        flex-direction:column;

        text-align:center;

    }

    .why-icon{

        margin:auto;

    }

    .hospital-badge{

        left:15px;

        right:15px;

        text-align:center;

        font-size:14px;

    }

}
.reviews-section {

    background: linear-gradient(
        180deg,
        #fff7fa,
        #ffffff
    );

    position: relative;

}

.review-card {

    background: #ffffff;

    border-radius: 25px;

    padding: 35px;

    height: 100%;

    position: relative;

    transition: .3s;

    border: 1px solid #ffe1eb;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

}

.review-card:hover {

    transform: translateY(-10px);

    box-shadow:
    0 20px 40px rgba(233,30,99,.12);

}

.review-stars {

    font-size: 24px;

    color: #ffb400;

    margin-bottom: 20px;

    letter-spacing: 3px;

}

.review-text {

    color: #666;

    line-height: 1.9;

    margin-bottom: 30px;

    min-height: 130px;

}

.review-user {

    display: flex;

    align-items: center;

    gap: 15px;

}

.review-avatar {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
    linear-gradient(
    135deg,
    #E91E63,
    #ff80ab
    );

    color: #fff;

    font-size: 24px;

    font-weight: 700;

}

.review-user h5 {

    margin-bottom: 5px;

    font-size: 18px;

    font-weight: 700;

}

.review-user span {

    color: #888;

    font-size: 14px;

}

.review-trust-banner {

    margin-top: 70px;

    background:
    linear-gradient(
    135deg,
    #E91E63,
    #ff6fa3
    );

    border-radius: 30px;

    padding: 50px;

    color: #fff;

    box-shadow:
    0 20px 40px rgba(233,30,99,.25);

}

.review-trust-banner h3 {

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 12px;

}

.review-trust-banner p {

    margin: 0;

    opacity: .95;

}

.review-cta-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 35px;

    border-radius: 12px;

    background: #fff;

    color: var(--primary);

    font-weight: 700;

    transition: .3s;

}

.review-cta-btn:hover {

    transform: translateY(-3px);

    color: var(--primary);

}
@media(max-width:991px){

    .review-text{
        min-height:auto;
    }

    .review-trust-banner{
        text-align:center;
    }

    .review-cta-btn{
        margin-top:20px;
    }

}

@media(max-width:576px){

    .review-card{
        padding:25px;
    }

    .review-trust-banner{
        padding:35px 25px;
    }

    .review-trust-banner h3{
        font-size:26px;
    }

    .review-stars{
        font-size:20px;
    }

}
.faq-section {

    background: #ffffff;

    position: relative;

}

.faq-wrapper {

    max-width: 950px;

    margin: auto;

}

.accordion-item {

    border: none;

    margin-bottom: 20px;

    border-radius: 18px !important;

    overflow: hidden;

    box-shadow:
    0 8px 25px rgba(0,0,0,.06);

}

.accordion-button {

    background: #fff;

    padding: 25px;

    font-size: 18px;

    font-weight: 600;

    color: #222;

    box-shadow: none !important;

}

.accordion-button:not(.collapsed) {

    background: #fff7fa;

    color: var(--primary);

}

.accordion-button:focus {

    box-shadow: none;

    border: none;

}

.accordion-body {

    padding: 25px;

    color: #666;

    line-height: 1.9;

    background: #fff;

}

.accordion-button::after {

    filter: hue-rotate(300deg);

}

.faq-cta-box {

    margin-top: 70px;

    text-align: center;

    padding: 50px;

    border-radius: 30px;

    background:
    linear-gradient(
    135deg,
    #fff7fa,
    #ffe4ee
    );

}

.faq-cta-box h3 {

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 15px;

}

.faq-cta-box p {

    color: #666;

    margin-bottom: 25px;

}

.faq-call-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 35px;

    border-radius: 12px;

    background: var(--primary);

    color: #fff;

    font-weight: 600;

    transition: .3s;

}

.faq-call-btn:hover {

    background: var(--primary-dark);

    color: #fff;

}
@media(max-width:768px){

    .accordion-button{

        font-size:16px;

        padding:20px;

    }

    .accordion-body{

        padding:20px;

    }

    .faq-cta-box{

        padding:35px 25px;

    }

    .faq-cta-box h3{

        font-size:28px;

    }

}

@media(max-width:576px){

    .faq-cta-box h3{

        font-size:24px;

    }

    .faq-call-btn{

        width:100%;

    }

}
.appointment-section {

    position: relative;

    background:
    linear-gradient(
        135deg,
        #E91E63,
        #ff80ab
    );

    overflow: hidden;

}

.appointment-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    top: -200px;
    right: -200px;

}

.appointment-wrapper {

    position: relative;

    z-index: 2;

}

.appointment-content {

    color: #fff;

}

.appointment-tag {

    display: inline-block;

    background: rgba(255,255,255,.15);

    padding: 10px 18px;

    border-radius: 50px;

    margin-bottom: 20px;

    font-weight: 600;

}

.appointment-content h2 {

    font-size: 52px;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 20px;

}

.appointment-content p {

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 30px;

    opacity: .95;

}

.appointment-benefits {

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 15px;

    margin-bottom: 35px;

}

.benefit-item {

    background: rgba(255,255,255,.12);

    padding: 15px 20px;

    border-radius: 12px;

    backdrop-filter: blur(8px);

}

.benefit-item i {

    margin-right: 10px;

}

.appointment-contact {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}

.appointment-call-btn,
.appointment-whatsapp-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 16px 30px;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s;

}

.appointment-call-btn {

    background: #fff;

    color: var(--primary);

}

.appointment-whatsapp-btn {

    background: #25D366;

    color: #fff;

}

.appointment-call-btn:hover,
.appointment-whatsapp-btn:hover {

    transform: translateY(-3px);

    color: inherit;

}

.appointment-form-card {

    background: #fff;

    border-radius: 30px;

    padding: 40px;

    box-shadow:
    0 25px 50px rgba(0,0,0,.15);

}

.form-title {

    text-align: center;

    margin-bottom: 25px;

}

.form-title h3 {

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 10px;

}

.form-title p {

    color: #666;

}

.appointment-input {

    height: 58px;

    border-radius: 12px;

    border: 1px solid #e5e5e5;

    padding-left: 15px;

}

.appointment-input:focus {

    border-color: var(--primary);

    box-shadow:
    0 0 0 .15rem rgba(233,30,99,.15);

}

.appointment-submit-btn {

    width: 100%;

    height: 58px;

    border: none;

    border-radius: 12px;

    background: var(--primary);

    color: #fff;

    font-size: 18px;

    font-weight: 600;

    transition: .3s;

}

.appointment-submit-btn:hover {

    background: var(--primary-dark);

}

.form-note {

    margin-top: 20px;

    text-align: center;

    color: #666;

    font-size: 14px;

}

.form-note i {

    color: var(--primary);

    margin-right: 8px;

}
@media(max-width:991px){

    .appointment-content{

        text-align:center;

    }

    .appointment-benefits{

        grid-template-columns:1fr;

    }

    .appointment-contact{

        justify-content:center;

    }

    .appointment-content h2{

        font-size:38px;

    }

}

@media(max-width:576px){

    .appointment-content h2{

        font-size:30px;

    }

    .appointment-form-card{

        padding:25px;

    }

    .appointment-call-btn,
    .appointment-whatsapp-btn{

        width:100%;

    }

}
/* =========================
   STICKY CALL BUTTON
========================= */

.sticky-call {

    position: fixed;

    left: 20px;
    bottom: 20px;

    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(
        135deg,
        #E91E63,
        #ff80ab
    );

    color: #fff;

    padding: 14px 22px;

    border-radius: 60px;

    font-weight: 600;

    box-shadow:
    0 10px 30px rgba(233,30,99,.35);

    transition: .3s;

    animation: pulseCall 2s infinite;

}

.sticky-call:hover {

    transform: translateY(-3px);

    color: #fff;

}

.sticky-call i {

    font-size: 18px;

}

/* =========================
   STICKY WHATSAPP BUTTON
========================= */

.sticky-whatsapp {

    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #25D366;

    color: #fff;

    padding: 14px 22px;

    border-radius: 60px;

    font-weight: 600;

    box-shadow:
    0 10px 30px rgba(37,211,102,.35);

    transition: .3s;

    animation: pulseWhatsapp 2s infinite;

}

.sticky-whatsapp:hover {

    transform: translateY(-3px);

    color: #fff;

}

.sticky-whatsapp i {

    font-size: 22px;

}

/* =========================
   ANIMATIONS
========================= */

@keyframes pulseCall {

    0% {

        box-shadow:
        0 0 0 0 rgba(233,30,99,.5);

    }

    70% {

        box-shadow:
        0 0 0 15px rgba(233,30,99,0);

    }

    100% {

        box-shadow:
        0 0 0 0 rgba(233,30,99,0);

    }

}

@keyframes pulseWhatsapp {

    0% {

        box-shadow:
        0 0 0 0 rgba(37,211,102,.5);

    }

    70% {

        box-shadow:
        0 0 0 15px rgba(37,211,102,0);

    }

    100% {

        box-shadow:
        0 0 0 0 rgba(37,211,102,0);

    }

}
@media(max-width:768px){

    .sticky-call,
    .sticky-whatsapp{

        bottom: 0;

        border-radius: 0;

        justify-content: center;

        width: 50%;

        padding: 15px;

    }

    .sticky-call{

        left: 0;

    }

    .sticky-whatsapp{

        right: 0;

    }

    body{

        padding-bottom: 60px;

    }

}
/* =========================
   HEADER
========================= */

.main-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 999;

    background: rgba(255,255,255,.95);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(0,0,0,.05);

    transition: .3s;

}

.navbar {

    padding: 15px 0;

}

.brand-logo {

    display: flex;
    align-items: center;
    gap: 12px;

}

.logo-icon {

    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(
        135deg,
        #E91E63,
        #ff80ab
    );

    color: #fff;

    font-size: 20px;

}

.logo-text h5 {

    margin: 0;

    font-size: 18px;

    font-weight: 700;

    color: #222;

}

.logo-text span {

    font-size: 12px;

    color: #666;

}

.navbar-nav {

    gap: 15px;

}

.nav-link {

    color: #333;

    font-weight: 500;

    transition: .3s;

}

.nav-link:hover {

    color: var(--primary);

}

.header-actions {

    display: flex;
    align-items: center;
    gap: 15px;

}

.header-phone {

    color: var(--primary);

    font-weight: 600;

}

.header-phone i {

    margin-right: 8px;

}

.header-btn {

    background: var(--primary);

    color: #fff;

    padding: 12px 22px;

    border-radius: 10px;

    font-weight: 600;

    transition: .3s;

}

.header-btn:hover {

    background: var(--primary-dark);

    color: #fff;

}
@media(max-width:991px){

    .navbar-collapse{

        background:#fff;

        margin-top:15px;

        padding:20px;

        border-radius:15px;

        box-shadow:
        0 10px 30px rgba(0,0,0,.08);

    }

    .navbar-nav{

        margin-bottom:20px;
    }

    .header-actions{

        flex-direction:column;

        align-items:stretch;
    }

    .header-phone,
    .header-btn{

        text-align:center;
    }

}
.popup-overlay {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,.75);

    display: none;

    align-items: center;
    justify-content: center;

    z-index: 999999;

    padding: 20px;

}

.popup-box {

    width: 100%;
    max-width: 500px;

    background: #fff;

    border-radius: 25px;

    padding: 35px;

    animation: popupAnim .4s ease;

}

.popup-header {

    text-align: center;

    margin-bottom: 25px;

}

.popup-badge {

    display: inline-block;

    background: #FCE4EC;

    color: #E91E63;

    padding: 8px 16px;

    border-radius: 50px;

    font-weight: 600;

    margin-bottom: 15px;

}

.popup-header h2 {

    font-size: 34px;

    font-weight: 700;

    margin-bottom: 10px;

}

.popup-header p {

    color: #666;

}

.popup-box input,
.popup-box select {

    width: 100%;

    height: 55px;

    margin-bottom: 15px;

    border: 1px solid #ddd;

    border-radius: 12px;

    padding: 0 15px;

}

.popup-box button {

    width: 100%;

    height: 55px;

    border: none;

    border-radius: 12px;

    background: #E91E63;

    color: #fff;

    font-weight: 600;

    font-size: 18px;

}

@keyframes popupAnim {

    from {

        opacity: 0;
        transform: scale(.8);

    }

    to {

        opacity: 1;
        transform: scale(1);

    }

}
/* =========================
   TOP BAR
========================= */

.top-bar{

    background:#E91E63;

    color:#fff;

    padding:10px 0;

    font-size:14px;

}

.top-bar-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.top-contact{

    display:flex;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

}

.top-contact a{

    color:#fff;

    text-decoration:none;

}

.top-contact i{

    margin-right:8px;

}

.top-social{

    display:flex;

    align-items:center;

    gap:10px;

}

.top-social a{

    width:36px;

    height:36px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

}

.top-social a:hover{

    background:#fff;

    color:#E91E63;

    transform:translateY(-3px);

}
@media(max-width:768px){

    .top-bar{

        display:none;

    }

}
.form-message{

    margin-top:12px;

    font-size:14px;

    font-weight:500;

}