/* CSS Variables */

:root {
    --teal-primary: #008080;
    --teal-dark: #006666;
    --teal-light: #00a3a3;
    --soft-green: #7fbf7f;
    --light-green: #d4f0d4;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}


/* Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

.section-header h2 {
    color: var(--teal-dark);
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: var(--teal-primary);
    border: 2px solid var(--teal-primary);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-primary) 100%);
}

.cta-button.secondary:hover {
    background: var(--teal-primary);
    color: white;
}


/* Header Styles */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--teal-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--teal-dark);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}


/* Mobile Navigation - Side Menu from Right */

@media screen and (max-width: 768px) {
    .header {
        padding: 12px 0;
    }
    .logo-img {
        height: 40px;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        gap: 0;
    }
    .nav-list.active {
        right: 0;
    }
    .nav-list::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    .nav-list.active::before {
        opacity: 1;
        pointer-events: all;
    }
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    .nav-item:last-child {
        border-bottom: none;
    }
    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
        width: 100%;
        color: var(--text-dark);
    }
    .nav-link:hover,
    .nav-link.active {
        color: var(--teal-primary);
        background: none;
    }
    .nav-link::after {
        display: none;
    }
    /* Hamburger Animation */
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--teal-primary);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
        background: var(--teal-primary);
    }
    /* Close button style for mobile */
    .nav-list::after {
        content: '✕';
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        color: var(--text-light);
        cursor: pointer;
        transition: var(--transition);
        z-index: 1000;
    }
    .nav-list::after:hover {
        color: var(--teal-primary);
        transform: scale(1.1);
    }
}

@media screen and (max-width: 480px) {
    .nav-list {
        width: 250px;
        padding: 70px 25px 25px;
    }
    .logo-img {
        height: 35px;
    }
    .nav-link {
        font-size: 1rem;
        padding: 12px 0;
    }
    .header {
        padding: 10px 0;
    }
}


/* Body scroll lock when menu is open */

body.menu-open {
    overflow: hidden;
}


/* Smooth transitions for mobile */

@media (prefers-reduced-motion: reduce) {
    .nav-list,
    .nav-list::before,
    .bar {
        transition: none;
    }
}


/* Enhanced touch targets for mobile */

@media screen and (max-width: 768px) {
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


/* Backdrop overlay */

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Home Section */

.home-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 150px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.home-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-heading {
    font-size: 3.5rem;
    color: var(--teal-dark);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.home-subheading {
    font-size: 1.8rem;
    color: var(--teal-primary);
    margin-bottom: 30px;
    font-weight: 600;
}

.home-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.home-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.home-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.home-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 102, 102, 0.8));
    color: white;
    padding: 30px;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.home-image:hover .image-overlay {
    transform: translateY(0);
}

.home-image:hover .home-img {
    transform: scale(1.05);
}

.image-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.image-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
}


/* About Section */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    color: var(--teal-dark);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-paragraphs p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

.tagline-container {
    background: var(--light-green);
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border-left: 4px solid var(--teal-primary);
}

.tagline {
    color: var(--teal-dark);
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.core-values h3 {
    color: var(--teal-dark);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.values-list {
    list-style: none;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-item:hover {
    background: var(--light-gray);
    transform: translateX(10px);
}

.value-item i {
    font-size: 1.8rem;
    color: var(--teal-primary);
    margin-top: 5px;
    flex-shrink: 0;
}

.value-content h4 {
    color: var(--teal-dark);
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.value-content p {
    color: var(--text-light);
    margin: 0;
}


/* Services Section */

.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    color: var(--teal-dark);
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--teal-primary);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: var(--teal-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature-tag {
    background: var(--light-green);
    color: var(--teal-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.promise-box {
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow);
    text-align: left;
}

.promise-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.promise-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.promise-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}


/* Responsive Design for Services Section */

@media screen and (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    .services-header h2 {
        font-size: 2.2rem;
    }
    .services-header p {
        font-size: 1.1rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .service-card {
        padding: 30px 25px;
    }
    .promise-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 40px 30px;
    }
}

@media screen and (max-width: 480px) {
    .services-header h2 {
        font-size: 1.8rem;
    }
    .services-header p {
        font-size: 1rem;
    }
    .service-card {
        padding: 25px 20px;
    }
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    .service-icon i {
        font-size: 1.8rem;
    }
    .service-card h3 {
        font-size: 1.3rem;
    }
    .promise-box {
        padding: 30px 25px;
    }
    .promise-content h3 {
        font-size: 1.5rem;
    }
    .promise-content p {
        font-size: 1rem;
    }
}


/* Our Team Section */

.team-section {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.doctor-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.doctor-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

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

.doctor-card:hover .doctor-image img {
    transform: scale(1.1);
}

.doctor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 102, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.doctor-card:hover .doctor-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-dark);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--teal-primary);
    color: white;
    transform: translateY(-3px);
}

.doctor-info {
    padding: 30px;
}

.doctor-info h3 {
    color: var(--teal-dark);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.specialty {
    color: var(--teal-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.experience {
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.expertise,
.education {
    margin-bottom: 20px;
}

.expertise h4,
.education h4 {
    color: var(--teal-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.expertise ul {
    list-style: none;
    padding-left: 0;
}

.expertise li {
    padding: 5px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.expertise li::before {
    content: '✓';
    color: var(--teal-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.education p {
    color: var(--text-light);
    margin: 0;
}

.team-cta {
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    color: white;
    padding: 50px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.team-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.team-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}


/* Why Choose Us Section */

.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--teal-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    color: white;
    padding: 60px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-banner h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}


/* Gallery Section */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 102, 102, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.gallery-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}


/* Testimonials Section */

.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 20px;
}

.testimonial-content {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--teal-light);
    position: absolute;
    top: 20px;
    left: 30px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--teal-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--teal-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--teal-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--teal-primary);
    transform: scale(1.2);
}

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonials-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
}


/* Contact Section */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h3 {
    color: var(--teal-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.address {
    font-weight: 600;
    color: var(--teal-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
    margin: 10px 0;
}

.get-there {
    color: var(--soft-green);
    font-weight: 600;
    margin-top: 15px;
    font-size: 1rem;
}

.phone-link,
.email-link {
    color: var(--teal-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.phone-link:hover,
.email-link:hover {
    color: var(--teal-dark);
    text-decoration: underline;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.hour-item span:last-child {
    color: var(--text-light);
    font-weight: 500;
}

.hour-item.holiday {
    background: rgba(0, 102, 102, 0.08);
    padding: 12px 15px;
    border-radius: 10px;
    margin-top: 10px;
    border-left: 4px solid var(--teal-primary);
}

.hour-item.holiday span {
    font-weight: 700;
    color: var(--teal-dark);
}

.tagline-card {
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
}

.tagline-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tagline-icon i {
    font-size: 1.8rem;
    color: white;
}

.tagline-card p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

.social-links h3 {
    color: var(--teal-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--teal-primary);
    color: white;
    transform: translateY(-3px);
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--teal-dark);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: var(--text-dark);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-primary);
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
}

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

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    position: relative;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline-block;
}


/* Floating Icons */

.floating-icons-left {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-whatsapp,
.floating-message {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-icon,
.message-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.message-icon {
    background: linear-gradient(135deg, var(--soft-green) 0%, var(--teal-primary) 100%);
}

.floating-whatsapp:hover .whatsapp-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.floating-message:hover .message-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-dark) 100%);
}

.whatsapp-icon i,
.message-icon i {
    font-size: 1.5rem;
    color: white;
}

.whatsapp-tooltip,
.message-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--teal-dark);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-right: 15px;
    opacity: 0;
    transform: translateY(-50%) translateX(10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-tooltip::after,
.message-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--teal-dark);
}

.floating-whatsapp:hover .whatsapp-tooltip,
.floating-message:hover .message-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }
}


/* Footer */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-section h5 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 20px;
}

.clinic-description {
    color: #bdc3c7;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.contact-item i {
    color: var(--teal-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

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

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

.footer-nav li {
    margin-bottom: 12px;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--teal-light);
    padding-left: 5px;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer .social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer .social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer .social-icon:hover {
    background: var(--teal-primary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: #bdc3c7;
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-btn {
    background: var(--teal-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--teal-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: #bdc3c7;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-bottom-link:hover {
    color: var(--teal-light);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--teal-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

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


/* Responsive Design */

@media screen and (max-width: 1024px) {
    .home-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .home-heading {
        font-size: 2.5rem;
    }
    .home-subheading {
        font-size: 1.5rem;
    }
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .home-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .promise-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .floating-icons-left {
        left: 20px;
        bottom: 20px;
    }
    .whatsapp-icon,
    .message-icon {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .home-heading {
        font-size: 2rem;
    }
    .home-subheading {
        font-size: 1.3rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    .tagline-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .contact-form-container {
        padding: 25px;
    }
    .floating-icons-left {
        left: 15px;
        bottom: 15px;
    }
    .whatsapp-icon,
    .message-icon {
        width: 45px;
        height: 45px;
    }
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}