/* =========================================
   INDEX PAGE CONTENT PREMIUM STYLES
   ========================================= */

/* --- About Us Premium Section --- */
.about-premium-section {
    padding: 100px 0;
    background: #fdfdfd;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h4 {
    color: #468a3c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 10px;
}

.about-header h2 {
    font-size: 40px;
    color: #0D210B;
    font-weight: 800;
    letter-spacing: -1px;
}

.about-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1.2;
    min-width: 350px;
}

.lead-text {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Dr Highlight Box */
.dr-highlight {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border-left: 6px solid #5AAC4E;
    margin: 35px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.dr-info h3 {
    font-size: 22px;
    color: #0D210B;
    font-weight: 700;
    margin-bottom: 10px;
}

.dr-info p {
    font-size: 15px;
    margin-bottom: 20px;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.impact-item {
    text-align: center;
    padding: 15px 10px;
    background: #f9fbf9;
    border-radius: 12px;
}

.impact-num {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #468a3c;
    margin-bottom: 5px;
}

.impact-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #555;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.closing-text {
    font-style: italic;
    color: #444;
}

/* Premium Image Stack */
.about-image-premium {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.image-stack {
    position: relative;
}

.main-about-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.about-image-premium:hover .main-about-img {
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #5AAC4E;
    color: white;
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(90, 172, 78, 0.4);
    animation: float 4s ease-in-out infinite;
}

.exp-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
}

.exp-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mv-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #5AAC4E;
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-card h3 {
    color: #0D210B;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-card h3 i {
    color: #5AAC4E;
}

/* --- Treatments 18-Grid Section --- */
.treatments-18-section {
    padding: 80px 0;
    background: white;
}

.treatments-grid-18 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.treatment-card-18 {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.treatment-card-18:hover {
    border-color: #5AAC4E;
    box-shadow: 0 15px 35px rgba(90, 172, 78, 0.15);
    transform: translateY(-5px);
}

.t-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e3fcec 0%, #dbf5e4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #5AAC4E;
    font-size: 28px;
    transition: all 0.3s ease;
}

.treatment-card-18:hover .t-icon-box {
    background: #5AAC4E;
    color: white;
    transform: rotateY(180deg);
}

.treatment-card-18 h3 {
    font-size: 18px;
    color: #0D210B;
    margin-bottom: 10px;
    font-weight: 600;
}

.treatment-card-18 p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* --- Why Choose Us Comparison Section --- */
.why-choose-wrapper {
    padding: 100px 0;
    background: #f4f8f4;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.comparison-col {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.comparison-col.c-green {
    border-top: 6px solid #5AAC4E;
}

.comparison-col.c-dark {
    border-top: 6px solid #0D210B;
}

.comparison-col h3 {
    font-size: 26px;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    color: #555;
    font-size: 16px;
    padding: 12px;
    background: #fdfdfd;
    border-radius: 8px;
    border: 1px solid #f5f5f5;
    transition: transform 0.2s;
}

.check-list li:hover {
    transform: translateX(8px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #eee;
}

.check-list li i {
    margin-right: 15px;
    font-size: 20px;
}

.c-green .check-list li i {
    color: #5AAC4E;
}

.c-dark .check-list li i {
    color: #0D210B;
}

/* --- Slogan Banner Premium --- */
.slogan-banner {
    background: linear-gradient(135deg, #0D210B 0%, #1a4217 60%, #5AAC4E 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.3);
}

.slogan-banner::before {
    content: '\f46d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 350px;
    color: rgba(255, 255, 255, 0.04);
    transform: rotate(-20deg);
}

.slogan-item h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.5;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* --- Testimonial Carousel Premium (Redesigned) --- */
.testimonial-section {
    padding: 100px 0;
    background-color: #f8fbff;
    position: relative;
    /* Subtle geometric pattern */
    background-image: radial-gradient(#5AAC4E 0.5px, transparent 0.5px), radial-gradient(#5AAC4E 0.5px, #f8fbff 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

.testimonial-carousel-premium {
    margin: 0 -15px;
    /* Negative margin to counteract slide padding */
    padding: 30px 0;
}

/* Slick Slide Setup */
.testimonial-carousel-premium .slick-slide {
    padding: 15px;
    /* Spacing between cards */
    height: auto;
}

.testimonial-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft, deep shadow */
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

/* Decorative huge quote icon background */
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(90, 172, 78, 0.05);
    z-index: -1;
    transform: rotate(-10deg);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(90, 172, 78, 0.15);
    /* Greenish shadow on hover */
}

/* Avatar Styling */
.testimonial-header {
    position: relative;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: #e0f2f1;
    color: #5AAC4E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 15px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0D210B;
    margin-bottom: 5px;
}

.testimonial-rating i {
    color: #ffa726;
    font-size: 12px;
}

.testimonial-text {
    font-size: 15px;
    color: #555;
    font-style: italic;
    line-height: 1.8;
}

/* --- Carousel Navigation Buttons (FIXED) --- */
.testimonial-carousel-premium .slick-arrow {
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 20;
    /* High z-index */
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #5AAC4E;
    /* Icon color */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #5AAC4E;
    cursor: pointer;
}

.testimonial-carousel-premium .slick-arrow:hover {
    background: #5AAC4E;
    color: #fff;
    box-shadow: 0 10px 20px rgba(90, 172, 78, 0.3);
}

/* CRITICAL: Hide default Slick pseudo-elements to prevent double buttons */
.testimonial-carousel-premium .slick-prev::before,
.testimonial-carousel-premium .slick-next::before {
    content: none !important;
    display: none !important;
}

.testimonial-carousel-premium .slick-prev {
    left: -25px;
}

.testimonial-carousel-premium .slick-next {
    right: -25px;
}

/* Dots Styling */
.testimonial-carousel-premium .slick-dots {
    bottom: -40px;
}

.testimonial-carousel-premium .slick-dots li button:before {
    font-size: 12px;
    color: #cbd5e0;
    opacity: 1;
}

.testimonial-carousel-premium .slick-dots li.slick-active button:before {
    color: #5AAC4E;
    font-size: 14px;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .about-content-wrapper {
        flex-direction: column;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slogan-item h2 {
        font-size: 26px;
    }

    .testimonial-carousel-premium .slick-arrow {
        display: none !important;
        /* Hide arrows on mobile */
    }

    .testimonial-carousel-premium {
        padding-bottom: 40px;
    }
}

/* --- Locations Premium Section (Ultra Attractive) --- */
.locations-premium-section {
    padding: 120px 0;
    background: #f8fbff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    /* Soft mesh background interaction */
    background-image:
        radial-gradient(at 0% 0%, hsla(112, 38%, 93%, 1) 0, transparent 50%),
        radial-gradient(at 100% 100%, hsla(112, 38%, 90%, 1) 0, transparent 50%);
}

/* Header Styling - Attractive */
.locations-premium-section .section-header-custom {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.locations-premium-section .section-header-custom h2 {
    font-size: 48px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    background: linear-gradient(135deg, #0D210B 0%, #5AAC4E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    letter-spacing: -1px;
}

/* Decorative Line */
.locations-premium-section .section-header-custom h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: #5AAC4E;
    margin: 15px auto 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(90, 172, 78, 0.3);
}

.locations-premium-section .section-header-custom p {
    font-size: 18px !important;
    color: #555 !important;
    max-width: 650px;
    margin: 10px auto 0 !important;
    font-weight: 400;
    line-height: 1.6;
}

/* Decorative background circle */
.locations-premium-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(90, 172, 78, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.location-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    /* Deep, soft shadow */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.location-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(90, 172, 78, 0.15);
    /* Green glow lift */
    border-color: #5AAC4E;
}

/* Map Area - Immersive */
.map-wrapper {
    width: 100%;
    height: 380px;
    position: relative;
    border-bottom: 5px solid #5AAC4E;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(0%) contrast(105%);
    /* Crisp map */
}

/* Details Card */
.location-details {
    padding: 40px;
    background: #fff;
    position: relative;
}

/* Header Design */
.loc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.loc-title h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

/* Feature Badge (Main Branch) */
.loc-badge {
    background: linear-gradient(135deg, #5AAC4E, #3d8b32);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(90, 172, 78, 0.3);
}

/* Rating Badge */
.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff9e6;
    color: #b7791f;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

.rating-badge i {
    color: #ffd700;
    /* Gold Star */
}

/* Info Icons & Text */
.loc-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.loc-info-list li {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    align-items: flex-start;
}

/* Animated Icons */
.loc-info-list li i {
    color: #5AAC4E;
    font-size: 20px;
    margin-top: 4px;
    width: 24px;
    transition: transform 0.3s;
}

.location-card:hover .loc-info-list li i {
    transform: scale(1.1);
}

/* Contact Actions */
.loc-actions {
    display: flex;
    gap: 15px;
}

.btn-directions {
    flex: 2;
    text-align: center;
    padding: 16px;
    background: linear-gradient(45deg, #5AAC4E, #43a047);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(90, 172, 78, 0.3);
    position: relative;
    overflow: hidden;
}

/* Button Shine Effect */
.btn-directions::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-directions:hover::before {
    left: 100%;
}

.btn-directions:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(90, 172, 78, 0.4);
    color: #fff;
}

.btn-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #4a5568;
    font-size: 22px;
    transition: all 0.3s;
    background: white;
}

.btn-call:hover {
    border-color: #5AAC4E;
    color: #5AAC4E;
    transform: rotate(10deg);
}

@media (max-width: 991px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 300px;
    }

    .loc-header {
        flex-direction: column;
        gap: 10px;
    }
}