/* Lorain Page Styles */
.lorain-page {
    background: linear-gradient(#151d28, #0e4f6d);
    min-height: 100vh;
    color: #ffffff;
    padding: 160px 0 60px 0;
    font-family: 'Poppins', sans-serif;
}

.navbar {
    background: linear-gradient(#0b3f56,#0e4f6d) !important;
}

.lorain-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.location-header {
    text-align: center;
    margin-bottom: 50px;
}

.location-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #38bdf8;
    margin-bottom: 0;
    letter-spacing: 1px;
}

/* Contact and Map Section */
.contact-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-details p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.contact-details strong {
    color: #ffffff;
}

.map-container {
    position: relative;
    padding: 30px;
}

.map-container iframe {
    border-radius: 10px;
    width: 100%;
}

.directions-link {
    margin-top: 15px;
    text-align: center;
}

.get-directions-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50 !important;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.get-directions-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #2c3e50 !important;
}

/* Services Section */
.services-section {
    margin-bottom: 60px;
}

.services-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: #0e4f6d;
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.service-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50 !important;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.service-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #2c3e50 !important;
}

/* Doctors Section */
.doctors-section {
    margin-bottom: 60px;
}

.doctors-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.doctor-card {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    align-items: flex-start;
}

.doctor-image {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.doctor-info p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.appointment-cta {
    text-align: center;
    margin-top: 20px;
}

.appointment-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50 !important;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.appointment-btn:hover {
    transform: translateY(-2px);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

/* About Section */
.about-section {
    margin-bottom: 60px;
}

.about-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #38bdf8;
    margin: 30px 0 15px 0;
    letter-spacing: 0.5px;
}

.about-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 20px;
}

/* Office Photos Section */
.office-section {
    text-align: center;
}

.office-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.office-photos img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.office-photos img:hover {
    transform: scale(1.05);
}

.office-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .lorain-page {
        padding: 100px 0 40px 0;
    }

    .lorain-content {
        padding: 0 15px;
    }

    .location-title {
        font-size: 2rem;
    }

    .contact-map-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .doctor-card {
        flex-direction: column;
        text-align: center;
    }

    .doctor-image {
        margin: 0 auto;
    }

    .office-photos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .location-title {
        font-size: 1.8rem;
    }

    .services-section h3,
    .doctors-section h3,
    .about-section h3 {
        font-size: 1.2rem;
    }

    .office-photos {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}