/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ===== CSS Variables ===== */
:root {
    --primary: #1a6b4a;
    --primary-dark: #145539;
    --primary-light: #e8f5ee;
    --secondary: #2c8a62;
    --accent: #f0c040;
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-light: #7a7a8a;
    --bg-white: #ffffff;
    --bg-light: #f8fafb;
    --bg-section: #f0f4f3;
    --border-light: #e8eced;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Preloader ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--primary-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== Top Bar ===== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.top-bar a {
    color: #fff;
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--accent);
}

.top-bar .top-info {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar .top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .top-info i {
    font-size: 14px;
    color: var(--accent);
}

.top-bar .social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.top-bar .social-links a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}

.top-bar .social-links a:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* ===== Navbar ===== */
.navbar-area {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: top 0.3s ease, box-shadow 0.3s ease;
}

.navbar-area.scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
}

@media (max-width: 767px) {
    .navbar-area {
        position: sticky;
        top: 0;
    }

    .navbar-area .container {
        padding: 0px 12px !important;
    }
}

.navbar-area .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 15px;
}

.navbar-logo img {
    height: 48px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.nav-menu li a:hover,
.nav-menu li.active a {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-menu .btn-appointment {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(26, 107, 74, 0.3);
}

.nav-menu .btn-appointment:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 107, 74, 0.4);
    color: #fff !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
}

/* ===== Hero Section ===== */
.hero-section {
    background: url('../img/hero.jpg') no-repeat center center / cover;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 107, 74, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(240, 192, 64, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-content {
        margin-top: -60px;
    }
}

.hero-content .welcome-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 6px 20px;
    border-radius: var(--radius-xl);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content .qualifications {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease 0.3s both;
    font-family: 'Inter', sans-serif;
}

.hero-content .specialization {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-content .hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-height: 500px;
    object-fit: cover;
    border: 5px solid #fff;
}

.hero-image::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* ===== Buttons ===== */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26, 107, 74, 0.3);
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 107, 74, 0.4);
    color: #fff;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 107, 74, 0.3);
}

/* ===== Section Styles ===== */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 16px;
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-white);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-image .experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.experience-badge .text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.8;
}

.about-info-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.about-info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-info-list li i {
    color: var(--primary);
    font-size: 16px;
    width: 28px;
    height: 28px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== Services/Treatments Section ===== */
.treatments-section {
    background: var(--bg-section);
}

.treatment-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.treatment-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), #d4edda);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    transition: var(--transition);
}

.treatment-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.treatment-card .card-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.treatment-card:hover .card-icon i {
    color: #fff;
}

.treatment-card .treatment-img {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid var(--primary);
}

.treatment-card .treatment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}


.treatment-card .treatment-icon-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
    z-index: 2;
}

.treatment-card:hover .treatment-icon-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: scale(1.1);
}

.treatment-card .card-body {
    padding: 25px 25px 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.treatment-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.treatment-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Facilities Section ===== */
.facilities-section {
    background: var(--bg-white);
}

@media (min-width: 1200px) {

    .facilities-section .container,
    .treatments-section .container {
        max-width: 1350px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 1400px) {

    .facilities-section .container,
    .treatments-section .container {
        max-width: 1550px;
        padding-left: 45px;
        padding-right: 45px;
    }
}

.facility-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.facility-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.facility-card .facility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), #d4edda);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.facility-card .facility-icon i {
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.facility-card:hover .facility-icon i {
    color: #fff;
}

.facility-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.facility-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Appointment Section ===== */
.appointment-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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");
}

.appointment-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.appointment-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.appointment-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 30px;
}

.appointment-content .info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.appointment-content .info-box i {
    font-size: 22px;
    color: var(--accent);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.appointment-content .info-box h4 {
    color: #fff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 3px;
}

.appointment-content .info-box span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.appointment-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.appointment-form-card h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 107, 74, 0.1);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 4px 15px rgba(26, 107, 74, 0.3);
    transform: translateY(-2px);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: var(--bg-section);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-card .quote-icon {
    font-size: 40px;
    color: var(--primary-light);
    position: absolute;
    top: 20px;
    right: 25px;
}

.testimonial-card .stars {
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
}

.testimonial-card .reviewer-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
}

.testimonial-card .reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

/* ===== Stats Section ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.stat-item .stat-label {
    font-size: 14px;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

/* ===== Contact/Map Section ===== */
.contact-section {
    background: var(--bg-white);
}

.contact-info-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 30px;
    height: 100%;
}

.contact-info-card .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-info-card .contact-item:last-child {
    margin-bottom: 0;
}

.contact-info-card .contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-card .contact-item h4 {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-card .contact-item p,
.contact-info-card .contact-item a {
    font-size: 14px;
    color: var(--text-light);
}

.contact-info-card .contact-item a:hover {
    color: var(--primary);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: none;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer p {
    font-size: 14px;
    line-height: 1.8;
}

.footer .footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-links li a i {
    font-size: 10px;
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
}

.footer-bottom a {
    color: var(--accent);
}

/* ===== Floating Buttons ===== */
.floating-btns {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.float-btn.whatsapp {
    background: #25d366;
    animation-delay: 0.3s;
}

.float-btn.call {
    background: #2585d3;
}

/* Call Button - Left Side */
.float-btn-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: #2585d3;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.float-btn-left:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        gap: 5px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 16px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        margin-top: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-image .experience-badge {
        right: 10px;
        bottom: 10px;
    }

    .about-info-list {
        grid-template-columns: 1fr;
    }

    .appointment-content h2 {
        font-size: 2rem;
    }
}

/* Mobile Hero Background Image */
.hero-bg-mobile {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 60%;
    /* 1388x555 is 2.5:1 ratio */
    background: url('../img/hero.jpg') no-repeat center center / cover;
}

/* Mobile Welcome Text */
.welcome-text-mobile {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.welcome-text-mobile .welcome-sub {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.welcome-text-mobile .welcome-title {
    font-size: 22px;
    font-weight: 800;
    color: #333;
    margin: 0;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .top-bar .top-info {
        justify-content: center;
        gap: 10px;
        font-size: 12px;
    }

    .top-bar .social-links {
        justify-content: center;
        margin-top: 8px;
    }

    .hero-section {
        background: #ecedf2;
        height: auto;
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }

    .hero-section::before {
        display: none;
    }

    .hero-section::after {
        display: none;
    }

    .hero-section .container {
        padding: 20px 15px 40px;
        z-index: 2;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content .qualifications {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .hero-content .specialization {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .hero-content .hero-btns {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-content .hero-btns a {
        flex: 1 1 auto;
        padding: 8px 14px;
        font-size: 12px;
        text-align: center;
        justify-content: center;
    }

    .nav-menu .btn-appointment {
        padding: 8px 16px;
        font-size: 13px;
    }

    .btn-submit {
        padding: 12px;
        font-size: 14px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .stat-item .stat-number {
        font-size: 2.2rem;
    }

    .appointment-form-card {
        padding: 25px 20px;
    }

    .floating-btns {
        bottom: 20px;
        right: 15px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content .qualifications {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .hero-content .specialization {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .about-content h2 {
        font-size: 1.35rem;
    }

    .hero-image img {
        max-height: 350px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }
}

/* ===== Owl Carousel Custom ===== */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-carousel .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light) !important;
    margin: 0 5px;
    transition: var(--transition);
    border: none;
}

.owl-carousel .owl-dot.active {
    background: var(--primary) !important;
    width: 30px;
    border-radius: 20px;
}

.owl-carousel .owl-nav button {
    width: 45px;
    height: 45px;
    background: var(--bg-white) !important;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 18px !important;
    color: var(--text-dark) !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary) !important;
    color: #fff !important;
    box-shadow: var(--shadow-md);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -20px;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 150px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 998;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== Phone Number Bar (Mobile) ===== */
.phone-bar-mobile {
    display: none;
    background: var(--primary-light);
    padding: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.phone-bar-mobile a {
    color: var(--primary);
}

@media (max-width: 767px) {
    .phone-bar-mobile {
        display: none;
    }

    .top-bar {
        display: none;
    }

    .about-image img {
        height: 380px;
    }

    .back-to-top {
        bottom: 85px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .float-btn-left {
        bottom: 20px;
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 100px 0 60px;
    color: #fff;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header .breadcrumbs {
    font-size: 14px;
    opacity: 0.9;
}

.page-header .breadcrumbs a {
    color: #fff;
    font-weight: 500;
}

.page-header .breadcrumbs span {
    margin: 0 8px;
    opacity: 0.6;
}

@media (max-width: 991px) {
    .page-header {
        margin-top: 0;
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* ===== Detailed Facility Cards ===== */
.facility-card-detailed {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 30px;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.facility-card-detailed:hover {
    border-color: var(--secondary);
    border-left-color: var(--secondary);
    box-shadow: 0 10px 30px rgba(26, 107, 74, 0.1);
    transform: translateY(-5px);
}

.facility-card-detailed .card-header-detailed {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.facility-card-detailed .facility-icon-detailed {
    width: 55px;
    height: 55px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: var(--transition);
    flex-shrink: 0;
}

.facility-card-detailed:hover .facility-icon-detailed {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.facility-card-detailed h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
}

.facility-card-detailed p {
    font-size: 14.5px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 0;
    text-align: left;
}

/* ===== Read More Buttons ===== */
.btn-read-more {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    margin-top: 15px;
    font-family: 'Inter', sans-serif;
}

.btn-read-more:hover {
    color: var(--secondary);
    gap: 10px;
}

/* ===== Treatment Detail Section ===== */
.treatment-detail-section {
    background: var(--bg-white);
}

.treatment-detail-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.treatment-detail-section .intro-p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
}

.treatment-detail-section h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.treatment-detail-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-sm);
}

.treatment-detail-section .detail-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 25px;
    height: 100%;
    transition: var(--transition);
}

.treatment-detail-section .detail-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.treatment-detail-section .detail-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
}

.treatment-detail-section .detail-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 0;
}

.treatment-detail-section .detail-list {
    list-style: none;
    padding-left: 0;
}

.treatment-detail-section .detail-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-body);
}

.treatment-detail-section .detail-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary);
    font-size: 16px;
}

.treatment-detail-section .cta-box {
    margin-top: 50px;
    background: linear-gradient(135deg, var(--primary-light), #e8f5ee);
    border: 1px solid rgba(26, 107, 74, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.treatment-detail-section .cta-box h3 {
    margin-top: 0;
    font-size: 1.75rem;
    color: var(--primary-dark);
}

.treatment-detail-section .cta-box h3::after {
    display: none;
}

.treatment-detail-section .cta-box p {
    font-size: 16px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 25px;
}

/* ===== Premium Toast Notification Styles ===== */
.toastify {
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.toast-premium {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    padding: 16px 20px;
    min-width: 320px;
    max-width: 420px;
    border-left: 6px solid #1a6b4a;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: toastSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-premium.toast-error {
    border-left-color: #e74c3c;
}

.toast-premium .toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #e8f5ee;
    color: #1a6b4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.toast-premium.toast-error .toast-icon {
    background: #fadbd8;
    color: #e74c3c;
}

.toast-premium .toast-content {
    flex-grow: 1;
}

.toast-premium .toast-content h5 {
    margin: 0 0 4px 0;
    font-size: 14.5px;
    font-weight: 700;
    color: #1a1a2e;
}

.toast-premium .toast-content p {
    margin: 0;
    font-size: 13px;
    color: #4a4a5a;
    line-height: 1.4;
}

@keyframes toastSlideIn {
    from {
        transform: translate3d(100%, 0, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

/* ===== Contact Page Info Card ===== */
.contact-info-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--bg-section);
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item>i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-body);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-item a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary);
}

@media (max-width: 767px) {
    .contact-info-card {
        padding: 22px 18px;
    }

    .contact-item>i {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}