/* General Body Styles */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #3a3a3a;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.top-bar {
    background-color: #00a859;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

.top-bar a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

.main-header {
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #00a859;
    text-transform: uppercase;
}

.header-actions {
    display: flex;
    align-items: center;
}

.btn {
    display: inline-block;
    background: #f7941d;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #f7941d;
    border: 1px solid #f7941d;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: #f7941d;
    color: #fff;
}

/* Hero Section */
.hero {
    background: #00a859;
    background: linear-gradient(45deg, #00a859 0%, #007d4f 100%);
    padding: 80px 0;
    position: relative;
}

.hero-box {
    background: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #ffffff;
    padding: 40px;
    max-width: 500px;
    border-radius: 8px;
    color: white;
}

.hero-box h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin: 0 0 20px 0;
}

/* Sections */
.section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.service-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card img, .cabinet-card img, .doctor-card img {
   display: none;
}

.service-card-content {
    padding: 25px;
    text-align: center;
}

.service-card-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    color: #2c3e50;
}

.service-card-footer {
    padding: 20px 25px;
    border-top: 1px solid #e9e9e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card-footer .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00a859;
}

/* Price List Section */
.price-list-section {
    background-color: #f9f9f9;
}

.price-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 40px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.price-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.price-item::before {
    content: '✔';
    color: #00a859;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.5rem;
}

.price-list-cta {
    text-align: center;
}

/* Doctors Section */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.doctor-card .icon {
    font-size: 3rem;
    color: #00a859;
    margin-bottom: 20px;
}

.doctor-card h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
}

.doctor-card .specialty {
    color: #777;
    margin-bottom: 15px;
}

/* Cabinets Section */
.cabinets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cabinet-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cabinet-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cabinet-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.cabinet-card-content {
    padding: 25px;
    text-align: center;
}

.cabinet-card-content h3 {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    color: #2c3e50;
}


/* Why Us Section */
.why-us-section {
    background-color: #f9f9f9;
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-us-card {
    background: #fff;
    border: 1px solid #eafaf3;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    border-top: 5px solid #00a859;
}

.why-us-card .icon {
    font-size: 2.5rem;
    color: #00a859;
    margin-bottom: 20px;
    display: inline-block;
    background-color: #eafaf3;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
}

.why-us-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

/* Contact / Map Section */
.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.contact-details {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.contact-details h3 {
    margin: 0 0 20px 0;
}

.contact-details p {
    margin: 0 0 15px 0;
}

.map-container {
    height: 400px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid #34495e;
    padding-top: 20px;
    font-size: 14px;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-actions {
        display: none; /* Hide buttons on smaller screens, can be replaced with a burger menu */
    }
    .top-bar .container, .main-header .container {
        flex-direction: column;
        gap: 15px;
    }
    nav {
        border-top: 1px solid #3d8f71;
        padding-top: 10px;
        width: 100%;
        text-align: center;
    }
    nav a {
        margin: 0 10px;
    }
    .hero-box {
        max-width: 100%;
        text-align: center;
        padding: 30px;
    }
    .contact-map-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.5rem;
    }
    .hero-box h1 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .price-list {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .top-bar {
       display: none;
    }
    .main-header .container {
        justify-content: center;
    }
     .main-header .logo {
        margin-bottom: 15px;
    }
} 