/* 
 * Dr. Rashmi Chanana Clinic - Global Stylesheet
 * Original CSS preserved + New Section Specific Classes
 */

:root {
    --primary-green: #1a5f4a;
    --primary-dark: #0d3d2e;
    --accent-gold: #c9a227;
    --accent-gold-light: #e8c547;
    --cream: #faf8f3;
    --cream-dark: #f0ebe0;
    --text-dark: #1a1a1a;
    --text-muted: #5a5a5a;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(26, 95, 74, 0.1);
    /*--shadow-medium: 0 8px 40px rgba(26, 95, 74, 0.15);*/
    --shadow-medium: 0px 7px 20px 0px rgba(26, 95, 74, 0.15);
    --shadow-strong: 0 15px 60px rgba(26, 95, 74, 0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Styles (Preserved) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* --- Custom Scrollbar (Preserved) --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* --- Preloader (Preserved) --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 120px;
    height: 120px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-text {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-top: 1rem;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* --- Top Bar (Preserved) --- */
.top-bar {
    background: var(--primary-dark);
    padding: 8px 0;
    font-size: 0.875rem;
}

.top-bar a {
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.top-bar a:hover {
    color: var(--accent-gold);
}

.top-bar i {
    color: var(--accent-gold);
}

/* --- Navigation (Preserved) --- */
.navbar {
    background: var(--white);
    padding: 0;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0;
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green) !important;
    padding: 15px 0;
}

.navbar-brand span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    font-family: 'Nunito', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 20px 15px !important;
    position: relative;
    transition: var(--transition-smooth);
}

/*.nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}*/

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-medium);
    border-radius: 10px;
    padding: 15px 0;
    min-width: 250px;
}

.dropdown-item {
    padding: 10px 25px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--primary-green);
    padding-left: 30px;
}

.dropdown-item i {
    color: var(--accent-gold);
    margin-right: 10px;
}

.navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-appointment {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    color: var(--text-dark) !important;
    border: none;
    padding: 12px 25px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    margin-left: 15px;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

/* --- Hero Section (Preserved + Slider Classes) --- */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.hero-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
    animation-delay: -5s;
}

.hero-shape:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, 30px) rotate(90deg);
    }

    50% {
        transform: translate(0, 60px) rotate(180deg);
    }

    75% {
        transform: translate(-30px, 30px) rotate(270deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-text {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-primary-custom {
    background: var(--accent-gold);
    color: var(--text-dark);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary-custom:hover {
    background: var(--accent-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
    color: var(--text-dark);
}

.btn-primary-custom i {
    margin-right: 10px;
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 13px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.btn-outline-custom i {
    margin-right: 10px;
}

.hero-image-container {
    position: relative;
    z-index: 2;
}

.hero-image-frame {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.hero-stat-text {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* NEW: Hero Slider Specific Classes */
.hero_slider-section .swiper-slide {
    display: flex;
    align-items: center;
}

.hero_slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.hero_slider-pagination .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero_slider-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-gold);
}

/* --- Floating Contact (Preserved) --- */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.floating-btn.call {
    background: var(--primary-green);
}

.floating-btn.whatsapp {
    background: #25d366;
}

/* --- Section Styling (Preserved) --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.875rem;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* --- About Section (Preserved) --- */
.about-section {
    background: var(--white);
}

.about-image-container {
    position: relative;
}

.about-image {
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    width: 100%;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.about-experience-badge .number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.1), rgba(26, 95, 74, 0.05));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.25rem;
    margin-right: 15px;
}

.about-feature h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.about-feature p {
    font-size: 0.9rem;
    margin: 0;
}

/* --- Services Section (Preserved) --- */
.services-section {
    background: var(--cream);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--cream-dark);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.service-card h4 {
    color: var(--primary-dark);
    font-size: 1.35rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.service-link:hover {
    color: var(--accent-gold);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* --- Treatments Section (Preserved) --- */
.treatments-section {
    background: var(--white);
}

.treatment-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.treatment-tab {
    background: transparent;
    border: 2px solid var(--cream-dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: 'Nunito', sans-serif;
}

.treatment-tab:hover,
.treatment-tab.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--white);
}

.treatment-content {
    display: none;
}

.treatment-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.treatment-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    transition: var(--transition-smooth);
}

.treatment-card:hover {
    box-shadow: var(--shadow-soft);
}

.treatment-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.treatment-card h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.treatment-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- Doctor Section (Preserved) --- */
.doctor-section {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.doctor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.doctor-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.doctor-image-wrapper {
    position: relative;
}

.doctor-image {
    border-radius: 30px;
    box-shadow: var(--shadow-strong);
    max-width: 100%;
}

.doctor-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
}

.doctor-name {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
}

.doctor-title {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.doctor-text {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.doctor-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
}

.doctor-qual {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.doctor-qual i {
    margin-right: 8px;
    color: var(--accent-gold);
}

.doctor-features {
    margin-top: 30px;
}

.doctor-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.doctor-feature i {
    color: var(--accent-gold);
    margin-right: 15px;
    font-size: 1.25rem;
}

/* --- Testimonials Section (Preserved + Slider Classes) --- */
.testimonials-section {
    background: var(--cream);
}

.testimonial-card {
    background: var(--white);
    border-radius: 25px;
    padding: 35px;
    height: 100%;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.testimonial-quote {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 4rem;
    color: var(--cream-dark);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-info h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.testimonial-rating {
    color: var(--accent-gold);
    margin-top: 5px;
}

/* NEW: Testimonial Slider Specific Classes */
.testimonials_slider-wrapper {
    padding-bottom: 60px;
}

.testimonials_slider-pagination {
    bottom: 20px !important;
}

.testimonials_slider-pagination .swiper-pagination-bullet {
    background: var(--primary-green);
    opacity: 0.3;
}

.testimonials_slider-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-gold);
}

.testimonial_item--video {
    position: relative;
}

.testimonial_video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 5;
}

.testimonial_video-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary-green);
}

/* --- Products Section (Preserved) --- */
.products-section {
    background: var(--white);
}

.product-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
}

.product-content {
    padding: 25px;
}

.product-category {
    color: var(--accent-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 10px 0;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
}

/* --- FAQ Section (Preserved) --- */
.faq-section {
    background: var(--cream);
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: var(--primary-green);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-green);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s, padding 0.4s;
}

.faq-answer.active {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-muted);
    margin: 0;
}

/* --- Blog Section (Preserved) --- */
.blog-section {
    background: var(--white);
}

.blog-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-image i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.blog-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    color: var(--primary-green);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 10px 0;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.blog-link i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* --- Gallery Section (Preserved + Fancybox Classes) --- */
.gallery-section {
    background: var(--cream);
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 95, 74, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    color: var(--white);
    margin: 0;
}

/* --- Counter Section (Preserved) --- */
.counter-section {
    background: var(--white);
    padding: 80px 0;
}

.counter-item {
    text-align: center;
}

.counter-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.counter-label {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 10px;
}

/* --- Contact Section (Preserved) --- */
.contact-section {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    position: relative;
}

.contact-card {
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: var(--shadow-strong);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 20px;
}

.contact-info-content h5 {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-info-content p,
.contact-info-content a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0;
    transition: var(--transition-smooth);
}

.contact-info-content a:hover {
    color: var(--primary-green);
}

.contact-form .form-control {
    background: var(--cream);
    border: 2px solid transparent;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.contact-form .form-control:focus {
    background: var(--white);
    border-color: var(--primary-green);
    box-shadow: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: none;
}

/* --- Footer (Preserved) --- */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.7;
    font-family: 'Nunito', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-text {
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.75rem;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--accent-gold);
    margin-right: 15px;
    font-size: 1.25rem;
    margin-top: 3px;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* --- Page Header / Breadcrumb (Preserved + Enhanced) --- */
.page-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-nav a,
.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-nav a:hover {
    color: var(--accent-gold);
}

.breadcrumb-nav .separator {
    color: var(--accent-gold);
}

/* NEW: Breadcrumb With Background Image */
.page-header_with-bg {
    background: linear-gradient(rgba(13, 61, 46, 0.9), rgb(13 61 46 / 0%)), url('../../img/A01.webp') center/cover no-repeat;
}

.breadcrumb_bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.9) 0%, rgba(13, 61, 46, 0.95) 100%);
    z-index: 1;
}

/* --- CTA Section (Preserved) --- */
.cta-section {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-text {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 25px;
}

.cta-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.cta-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 95, 74, 0.3);
}

.cta-btn i {
    margin-right: 10px;
}

/* --- Why Choose Us (Preserved) --- */
.why-section {
    background: var(--white);
}

.why-card {
    text-align: center;
    padding: 30px;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.1), rgba(26, 95, 74, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--primary-green);
    position: relative;
}

.why-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px dashed var(--cream-dark);
    border-radius: 50%;
}

.why-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Booking Modal (Preserved) --- */
.modal-content {
    border-radius: 25px;
    border: none;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: var(--white);
    border-radius: 25px 25px 0 0;
    border: none;
    padding: 25px 30px;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 30px;
}

.booking-form .form-control,
.booking-form .form-select {
    background: var(--cream);
    border: 2px solid transparent;
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background: var(--white);
    border-color: var(--primary-green);
    box-shadow: none;
}

/* --- Animations (Preserved) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Back to Top (Preserved) --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

/* --- Responsive (Preserved) --- */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 15px;
        box-shadow: var(--shadow-medium);
        margin-top: 15px;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-link {
        padding: 12px 0 !important;
    }

    .nav-link::after {
        bottom: 5px;
    }

    .btn-appointment {
        margin: 15px 0 0;
        display: inline-block;
    }

    .hero-section {
        text-align: center;
    }

    .hero-text {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        margin-top: 50px;
    }

    .about-experience-badge {
        right: 0;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 60px 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .about-experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }

    .contact-card {
        padding: 30px;
    }

    .floating-contact {
        bottom: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}



/* --- 1. Smooth Slide Up Animation (20px) --- */
/* Apply this class to sections or elements you want to animate */
.reveal {
    opacity: 0;
    transform: translateY(20px); /* Moved up 20px initially */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0); /* Slides up to original position */
}

/* Staggered animation for inner elements (optional but recommended) */
.reveal .reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.active .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* Add delay classes for staggered effect */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }


/* --- 2. Animated Navigation Dropdowns (All Devices) --- */

/* Dropdown Menu Animation */
.navbar .dropdown-menu {
    display: block; /* Keep block to allow transition */
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px); /* Start slightly lower */
    transition: all 0.3s ease-in-out;
    border: none;
    box-shadow: var(--shadow-medium);
    border-radius: 10px;
    padding: 15px 0;
    min-width: 250px;
}

/* Show state (Triggered by JS or Bootstrap but styled here) */
.navbar .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0); /* Slide up into position */
}

/* Dropdown Toggle Arrow Animation */
.navbar .dropdown-toggle::after {
    display: inline-block;
    font-family: "bootstrap-icons" !important;
    content: "\F282"; /* Bi-chevron-down */
    border: none;
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    vertical-align: middle;
}

/* Rotate arrow when open */
.navbar .nav-item.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Mobile Dropdown Specifics */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        /* In mobile, it should slide down naturally within the collapsible container */
        transform: translateY(0);
        max-height: 0;
        padding: 0 15px;
        overflow: hidden;
        box-shadow: none;
        background: transparent;
    }

    .navbar .dropdown-menu.show {
        max-height: 500px; /* Arbitrary large height */
        padding: 10px 15px;
        visibility: visible;
        opacity: 1;
    }
    
    .navbar .dropdown-item {
        padding: 10px 15px;
    }
}

/* --- 3. Google Map Section --- */
.google-map-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.google-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%); /* Stylish dark map effect */
    transition: filter 0.5s ease;
}
.google-map-section:hover iframe {
    filter: none; /* Color on hover */
}
.map-overlay-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    text-align: center;
    width: 300px;
}