body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   Header Section
======================================== */
.site-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.language-btn {
    background: transparent;
    border: 1px solid #8F2B37;
    border-radius: 6px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: #8F2B37;
    color: #fff;
}

.language-btn .flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.language-btn i {
    font-size: 12px;
    color: #8F2B37;
    transition: all 0.3s ease;
}

.language-btn:hover i {
    color: #fff;
}

.language-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    transition: background 0.2s ease;
}

.language-item:hover {
    background: #F9FAFB;
}

.language-item.active {
    background: #8F2B371a;
    color: #8F2B37;
    font-weight: 600;
}

.language-item .flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 8px 15px;
    transition: all 0.3s ease;
    background-color: #A04F5C;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-style: solid;
    border-width: 0;
    border-radius: 6px 6px 6px 6px;
}

.header-phone i {
    font-size: 14px;
}

/* Header CTA Button */
.header-cta {
    text-decoration: none;
    padding: 8px 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    background-color: #A04F5C;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-style: solid;
    border-width: 0;
    border-radius: 6px 6px 6px 6px;
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url(https://medi-gyn.com/wp-content/uploads/2026/01/landing-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(41, 6, 11, 0.6);
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color:  #8F2B37;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.hero-title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.hero-title span{
    font-size: 36px;
}

.hero-description {
    font-size: 16px;
    color: #fff;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-buttons .btn {
    color: white;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
}

.hero-buttons .book-appointment {
    border: 2px solid #8F2B37;
    background: #fff;
    color: #8F2B37;
}

.hero-buttons .whatsapp {
    border: 2px solid #25D366;
    background: #25D366;
    color: white;
}

/* Stats Card */
.stats-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}


/* ========================================
   Services Section
======================================== */
.services-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
}

.section-intro {
    text-align: center;
    color: #000;
    font-size: 16px;
}

.service-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.service-pink {
    background-color: #c2a2a6;
}

.service-brown {
    background-color: #735458;
}

.service-maroon {
    background-color: #96545d;
}

.service-icon {
    margin-bottom: 24px;
}

.service-card h3 {
    color: #fff;
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    margin-bottom: 0;
}

/* ========================================
   Appointment Form Section 1
======================================== */

.appointment-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.appointment-form .form-group {
    position: relative;
}

.appointment-form .form-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 1;
}

.appointment-form .form-control {
    padding: 14px 16px 14px 45px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.appointment-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.appointment-form textarea.form-control {
    padding: 14px 16px;
    resize: vertical;
}

.appointment-form .form-control:focus {
    border-color: var(--primary-pink);
    box-shadow: 0 0 0 3px rgba(232, 76, 124, 0.1);
    outline: none;
}

.form-submit-btn {
    width: 100%;
    background: #8F2B37;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}

.form-submit-btn i {
    margin-right: 8px;
}

/* ========================================
   Therapy Section
======================================== */
.therapy-section {
    padding: 0 0 80px 0;
    background: white;
}

.therapy-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #000;
}

.therapy-subtitle {
    font-size: 18px;
    color: #8F2B37;
    margin-bottom: 15px;
    font-weight: 600;
}

.therapy-description {
    color: #000;
    font-size: 16px;
}

/* ========================================
   Appointment Section 2
======================================== */
.appointment-section-2 {
    background: #F9FAFB;
    padding: 80px 0;
}

.appointment-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.appointment-text {
    color: #000;
    font-size: 16px;
    margin-bottom: 32px;
}

.appointment-form-2 .form-control {
    padding: 14px 20px;
    border: 1px solid #000;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.appointment-form-2 select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.appointment-form-2 .form-control:focus {
    border-color: #003B5C;
    box-shadow: 0 0 0 3px rgba(0, 59, 92, 0.1);
    outline: none;
}

.appointment-form-2 textarea.form-control {
    resize: vertical;
}

.btn-appointment {
    width: 100%;
    background: #8F2B37;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

/* ========================================
   Google Reviews Section
======================================== */
.google-reviews-section {
    padding-bottom: 80px;
    position: relative;
}

.reviews-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

/* Slick Slider Customization */
.reviews-slider .slick-slide {
    padding: 20px;
    margin: 10px;
}

.reviews-slider .slick-list {
    margin: 0 -15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #A04F5C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.reviewer-details h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #000;
}

.review-time {
    font-size: 13px;
    color: #6B7280;
    margin: 0;
}

.google-logo {
    width: 60px;
    height: auto;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 15px;
}

.review-stars i.fa-star {
    color: #FFA500;
    font-size: 14px;
}

.review-stars i.verified {
    color: #3B82F6;
    font-size: 14px;
    margin-left: 5px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-text.expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.read-more-btn {
    background: none;
    border: none;
    color: #6B7280;
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    font-weight: 500;
}

.read-more-btn:hover {
    color: #000;
}

/* Slick Navigation Arrows */
.reviews-slider .slick-prev,
.reviews-slider .slick-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff !important;
    border: 1px solid #E5E7EB;
    z-index: 10;
    transition: all 0.3s ease;
}

.reviews-slider .slick-prev:hover,
.reviews-slider .slick-next:hover {
    background: #F3F4F6 !important;
    border-color: #D1D5DB;
}

.reviews-slider .slick-prev {
    left: 0;
}

.reviews-slider .slick-next {
    right: 0;
}

.reviews-slider .slick-prev:before,
.reviews-slider .slick-next:before {
    content: '';
    display: none;
}

.reviews-slider .slick-prev i,
.reviews-slider .slick-next i {
    color: #6B7280;
    font-size: 16px;
}

.view-all-btn{
    text-align: center;
    margin-top: 10px;
}

.view-all-btn a{
    background-color: #A04F5C;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-style: solid;
    border-width: 0;
    border-radius: 6px 6px 6px 6px;
    padding: 8px 15px;
    text-decoration: none;
}

/* ========================================
   Testimonial Video Section
======================================== */
.testimonial-video-section {
    padding: 80px 0;
    background: #8F2B37;
    color: white;
}

.testimonial-title {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-button:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: #8F2B37;
    font-size: 30px;
    margin-left: 5px;
}

/* ========================================
   Ready for Consultation Section
======================================== */
.consultation-section {
    padding: 0 0 80px 0;
}

.consultation-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.consultation-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: #000;
    line-height: 1.8;
}

.consultation-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.consultation-buttons .btn {
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #8F2B37;
    color: #8F2B37;
}

.consultation-buttons .btn i {
    margin-right: 10px;
}

.consultation-buttons .whatsapp {
    border: 2px solid #25D366;
    background: #25D366;
    color: white;
}

/* ========================================
   Responsive Design
======================================== */

@media (max-width: 767px){
    .hero-section {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 10px;
    }

    .hero-title span{
        font-size: 22px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 15px;
        max-width: 100%;
    }

    .appointment-form-card{
        padding: 20px;
    }

    .form-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .badge-custom{
        margin-bottom: 15px;
    }

    .services-section{
        padding: 30px 0;
    }

    .section-title{
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .section-intro{
        font-size: 14px;
        margin-bottom: 0px;
    }

    .section-intro p{
        margin-bottom: 0;
    }

    .service-card {
        padding: 15px;
        height: 100%;
    }

    .service-card h3{
        font-size: 14px;
    }

    .service-icon img{
        width: 70px;
        height: 70px;
        object-fit: contain;
    }

    .service-icon {
        margin-bottom: 10px;
    }

    .therapy-section{
        padding: 0 0 30px 0;
    }

    .therapy-title{
        font-size: 22px;
        margin-bottom: 10px;
    }

    .therapy-subtitle{
        font-size: 16px;
        margin-bottom: 5px;
    }

    .therapy-description{
        font-size: 14px;
        margin-bottom: 0px;
    }

    .appointment-title{
        font-size: 24px;
        margin-bottom: 15px;
    }

    .google-reviews-section{
        padding-bottom: 30px;
    }

    .reviews-slider{
        padding: 0 15px;
    }

    .appointment-section-2{
        padding: 30px 0 0;
    }

    .appointment-section-2 img{
        display: none;
    }

    .header-content {
        /* flex-direction: column; */
        gap: 15px;
    }

    .header-right {
        /* flex-direction: column; */
        /* width: 100%; */
        gap: 5px;
    }

    .header-phone,
    .header-cta {
        text-align: center;
        justify-content: center;
    }

    .header-phone{
        width: 135px;
        padding: 8px;
        font-size: 11px;
    }

    .header-cta{
        width: 147px;
        font-size: 11px;
        padding: 8px;
    }

    .logo img {
        height: auto;
        width: 70px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .therapy-section.second .row.align-items-center .col-lg-6:first-child{
        order: 1;
    }

    .therapy-section .img-fluid{
        margin-bottom: 10px;
    }

    .consultation-section{
        padding: 0 0 30px 0;
    }

    .consultation-title{
        font-size: 24px;
        margin-bottom: 10px;
    }

    .consultation-text{
        font-size: 14px;
        margin-bottom: 20px;
    }

    .consultation-text br{
        display: none;
    }

    .consultation-buttons .btn{
        padding: 12px;
        font-size: 14px;
    }
}

/* ========================================
   Footer Section
======================================== */
.site-footer {
    background: #EAEAEA;
    padding: 30px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-text p {
    margin: 0;
    color: #000;
    font-size: 14px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #8F2B37;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #7a2530;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(143, 43, 55, 0.3);
}

/* ========================================
   Utility Classes
======================================== */
.text-primary {
    color: var(--primary-pink) !important;
}

.bg-light {
    background-color: var(--background-light) !important;
}

/* Loading State */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-pink);
    outline-offset: 2px;
}
