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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.7;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: #1876c9;
}

/* Navigation */
.navbar {
    background: #fff;
    padding: 15px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Merriweather', serif;
    font-size: 1.4em;
    color: #1876c9;
    text-decoration: none;
    font-weight: 700;
}

.logo span {
    color: #1876c9;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-phone-btn {
    background-color: #1876c9;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-phone-btn:hover {
    background-color: #145a9e;
    transform: translateY(-2px);
}

.nav-appointment-btn {
    background-color: #fff;
    color: #1876c9 !important;
    border: 2px solid #1876c9;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s;
}

.nav-appointment-btn:hover {
    background-color: #1876c9;
    color: #fff !important;
}

.nav-links a:hover,
.nav-links a.active {
    color: #1876c9;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #1876c9;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(24, 118, 201, 0.92), rgba(41, 128, 185, 0.88)),
                url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=1200') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: #fff;
    padding: 180px 20px 100px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-small {
    min-height: 40vh;
    padding: 150px 20px 60px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.25em;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.button {
    display: inline-block;
    background-color: #1876c9;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(24, 118, 201, 0.4);
}

.button:hover {
    background-color: #145a9e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 118, 201, 0.5);
}

.button-outline {
    background: transparent;
    border: 2px solid #fff;
    box-shadow: none;
}

.button-outline:hover {
    background: #fff;
    color: #1876c9;
}

/* Sections */
.section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.section-full {
    padding: 80px 20px;
    max-width: 100%;
}

.section-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.section.alt, .section-full.alt {
    background-color: #f8f9fa;
}

.section h2, .section-full h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
}

.section h3 {
    font-size: 1.6em;
    margin-bottom: 20px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #1876c9;
    margin-bottom: 10px;
    font-size: 1.2em;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #1876c9;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.service-item h4 {
    color: #1876c9;
    margin-bottom: 10px;
}

.service-detail {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.service-detail h3 {
    color: #1876c9;
    margin-bottom: 15px;
    border-bottom: 2px solid #1876c9;
    padding-bottom: 10px;
}

.service-detail ul {
    margin-left: 20px;
    margin-top: 15px;
}

.service-detail li {
    margin-bottom: 8px;
}

/* Team */
.team-member {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    align-items: flex-start;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 4px solid #1876c9;
}

.team-info h4 {
    color: #1876c9;
    font-size: 1.3em;
    margin-bottom: 5px;
}

.team-info .title {
    color: #1876c9;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Wound Care */
.wound-care-highlight {
    background: linear-gradient(135deg, #1876c9, #2980b9);
    color: #fff;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.wound-care-highlight h3 {
    color: #fff;
    margin-bottom: 15px;
}

.wound-care-highlight em {
    display: block;
    font-style: italic;
    border-left: 3px solid #fff;
    padding-left: 20px;
    margin: 20px 0;
}

.wound-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
    list-style: none;
}

.wound-services li {
    padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.wound-services li::before {
    content: "* ";
    color: #fff;
    font-weight: bold;
}

.wound-services-light li {
    background: #f8f9fa;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-box h3 {
    margin-bottom: 25px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-detail .icon {
    font-size: 1.5em;
    margin-right: 15px;
    color: #1876c9;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #1876c9;
}

.contact-form button {
    background-color: #1876c9;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.contact-form button:hover {
    background-color: #145a9e;
}

/* Map */
.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1876c9, #2980b9);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #1876c9;
    color: #fff;
    padding: 50px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    display: block;
}

.footer-section a {
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff !important;
    font-size: 1.2em;
    transition: all 0.3s;
    margin-bottom: 0 !important;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.8;
}

/* Utility */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

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

    .nav-phone-btn,
    .nav-appointment-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        text-align: center;
    }
}
