@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Inter:wght@400;500;600&family=Playfair+Display:wght@400;600&display=swap');

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
header {
    background-color: #004C97;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
}

.tagline {
    color: #FFC700;
    font-size: 0.85rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #FFC700;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    background-image: url('background1.png');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 76, 151, 0.4),
        rgba(0, 76, 151, 0.6)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFC700;
}

.hero-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Info Section */
.info-section {
    background-color: #FFC700;
    padding: 4rem 0;
}

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

.info-section h2 {
    color: #004C97;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: #004C97;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #FFC700;
    padding-bottom: 0.5rem;
}

.info-card p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
}

.services-list {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 2;
}

.note {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

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

.day {
    font-weight: 600;
    color: #004C97;
}

.time {
    color: #333;
}

/* Reviews Section */
.reviews-section {
    background-color: #004C97;
    padding: 4rem 0;
    color: #fff;
}

.reviews-section h2 {
    color: #FFC700;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.review-header h3 {
    color: #004C97;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.review-text {
    color: #333;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.9;
    font-weight: 400;
    position: relative;
    padding-left: 1.5rem;
}

.review-text::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #FFC700;
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    line-height: 1;
    opacity: 0.6;
}

.review-text::after {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: #FFC700;
    position: absolute;
    right: -0.5rem;
    bottom: -2rem;
    line-height: 1;
    opacity: 0.6;
}

/* Footer */
footer {
    background-color: #004C97;
    color: #fff;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav {
        gap: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .info-section h2,
    .reviews-section h2 {
        font-size: 2rem;
    }

    .info-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 45px;
    }

    .logo-text h1 {
        font-size: 1.3rem;
    }

    .tagline {
        font-size: 0.75rem;
    }

    nav a {
        font-size: 0.85rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

