/*
========================
   General Styles
========================
*/
:root {
    --primary-color: #2b828d;
    --secondary-color: #a1bdc9;
    --text-color: #333;
    --light-color: #fff;
    --dark-color: #222;
    --border-color: #e9e9e9;
    --box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fafafb;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color:  --primary-color;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.section-padding {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
}

.section-header p {
    font-size: 16px;
    color: var(--text-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-light {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.text-center {
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    height: 48px;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(43, 130, 141, 0.2);
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-check {
    margin-bottom: 20px;
}

.form-check-input {
    margin-right: 8px;
}

/*
========================
   Header Styles
========================
*/
.site-header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header {
    background-color: var(--primary-color);
    padding: 10px 0;
    color: var(--light-color);
}

.header-contact-info {
    display: block;
}


.contact-info div {
    margin-left: 20px;
}

.contact-info a {
    color: var(--primary-color);
}

.contact-info i {
    margin-right: 5px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 0;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a:hover,
.main-nav .active a {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav .active a::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}



/*
========================
   Hero Section Styles
========================
*/
.hero-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-btns .btn {
    margin-right: 15px;
    margin-bottom: 15px;
}

.hero-image {
    text-align: center;
}

/*
========================
   Services Section Styles
========================
*/
.services-section {
    padding: 80px 0;
}

.service-card {
    background-color: var(--light-color);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
}

.service-icon img {
    max-width: 100%;
    max-height: 100%;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    color: var(--text-color);
}

/*
========================
   About Section Styles
========================
*/
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-content {
    padding: 20px;
}

.about-content p {
    margin-bottom: 25px;
}

.about-features {
    margin-top: 30px;
}

.feature {
    display: flex;
    margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--light-color);
    font-size: 24px;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 14px;
    margin-bottom: 0;
}

/*
========================
   Testimonials Section Styles
========================
*/
.testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-style: italic;
    font-size: 16px;
    position: relative;
    padding: 0 20px;
}

.testimonial-text p::before,
.testimonial-text p::after {
    content: '"';
    font-size: 30px;
    color: var(--primary-color);
    position: absolute;
}

.testimonial-text p::before {
    left: 0;
    top: -10px;
}

.testimonial-text p::after {
    right: 0;
    bottom: -10px;
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-color);
}

.rating {
    margin-top: 10px;
}

.rating i {
    color: #ffc107;
    margin-right: 2px;
}

/*
========================
   CTA Section Styles
========================
*/
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--light-color);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--light-color);
    margin-bottom: 30px;
}

/*
========================
   Footer Styles
========================
*/
.site-footer {
    background-color: #f8f9fa;
    padding-top: 80px;
}

.footer-widgets {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo img {
    max-height: 50px;
    margin-right: 10px;
}

.footer-logo h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
}

.footer-widget h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.contact-info {
    margin-top: 0;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
   
    margin-right: 10px;
    font-size: 16px;
    margin-top: 4px;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
}

.social-links {
    text-align: left;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

/*
========================
   Page Banner Styles
========================
*/
.page-banner {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: var(--light-color);
}

.page-banner-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 16px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 10px;
    color: var(--light-color);
}

.breadcrumb-item a {
    color: var(--light-color);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

/*
========================
   About Page Styles
========================
*/
.about-overview {
    padding: 80px 0;
}

.about-experience {
    display: flex;
    margin-top: 30px;
}

.experience-item {
    text-align: center;
    margin-right: 30px;
}

.experience-item h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.why-choose-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.feature-box {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box .feature-icon {
    margin: 0 auto 20px;
}

.our-team {
    padding: 80px 0;
}

.team-member {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-info span {
    display: block;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.team-social {
    margin-top: 15px;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--secondary-color);
}

.clinic-gallery {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
}

/*
========================
   Services Page Styles
========================
*/
.services-overview {
    padding: 60px 0 30px;
}

.service-detail-item {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service-detail-content {
    padding: 20px;
}

.service-detail-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-detail-content p {
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin-bottom: 25px;
}

.service-detail-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-detail-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

/*
========================
   Appointment Page Styles
========================
*/
.appointment-section {
    padding: 80px 0;
}

.appointment-info {
    padding-right: 30px;
}

.appointment-benefits {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-icon i {
    color: var(--light-color);
    font-size: 24px;
}

.benefit-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.appointment-form-wrapper {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.appointment-form-wrapper h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-item {
    background-color: var(--light-color);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.appointment-success, .contact-success {
    padding: 60px 0;
    text-align: center;
}

.success-message {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    max-width: 600px;
    margin: 0 auto;
}

.success-message i {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.success-message p {
    margin-bottom: 25px;
}

/*
========================
   Contact Page Styles
========================
*/
.contact-section {
    padding: 80px 0;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--light-color);
    font-size: 24px;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.social-links h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.social-links ul {
    display: flex;
}

.social-links ul li {
    margin-right: 10px;
}

.contact-form-wrapper {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.map-section {
    padding: 30px 0 80px;
}

.google-map {
    height: 450px;
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/*
========================
   Responsive Styles
========================
*/
@media screen and (max-width: 991px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--light-color);
        padding: 80px 20px 30px;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .main-nav.show {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav li {
        margin: 10px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .appointment-info {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-info {
        justify-content: center;
    }

    .footer-widget {
        width: 100%;
    }

    .footer-bottom {
        text-align: center;
    }

    .social-links {
        text-align: center;
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .section-header h2 {
        font-size: 28px;
    }

    .page-banner-content h1 {
        font-size: 28px;
    }

    .top-header {
        padding: 5px 0;
    }

    .contact-info div {
        margin-left: 15px;
    }

    .logo img {
        max-height: 50px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .service-card, .feature-box, .testimonial-card {
        padding: 20px;
    }

    .appointment-form-wrapper, .contact-form-wrapper {
        padding: 25px;
    }

    .about-experience {
        flex-wrap: wrap;
    }

    .experience-item {
        width: 50%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .service-detail-content {
        margin-top: 30px;
    }

    .service-detail-content h3 {
        font-size: 24px;
    }
}

@media screen and (max-width: 575px) {
    .btn {
        padding: 10px 20px;
    }

    .feature-icon, .benefit-icon, .contact-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i, .benefit-icon i, .contact-icon i {
        font-size: 20px;
    }

    .experience-item {
        width: 100%;
    }

    .team-info {
        padding: 20px;
    }

    .testimonial-text p {
        padding: 0 15px;
    }

    .faq-item {
        padding: 15px 20px;
    }
}


.header-contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-color); /* optional, if top bar has dark background */
}

.header-contact-info span {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

.header-contact-info i {
    margin-right: 5px;
}
