/* --------------------------------------------------
   GLOBAL RESET & BASE STYLES
-------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f9fc;
    color: #1a1a1a;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
.header {
    background: #003366;
    border-bottom: 1px solid #00284d;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    height: 60px;
    width: auto;
}

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

/* NAVIGATION */
.header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.header nav a {
    font-weight: bold;
    color: #ffffff;
    transition: 0.2s;
}

.header nav a:hover {
    color: #66b3ff;
}

.header nav a.active {
    color: #66b3ff;
    text-decoration: underline;
}

/* --------------------------------------------------
   HERO SECTION
-------------------------------------------------- */
.hero {
    background:
        linear-gradient(
            rgba(0, 102, 204, 0.7),
            rgba(0, 102, 204, 0.7)
        ),
        url('/assets/images/4222026LOGO.png') center/contain no-repeat;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* UPGRADED HERO */
.hero-upgraded {
    background:
        linear-gradient(
            rgba(0, 60, 130, 0.55),
            rgba(0, 60, 130, 0.55)
        ),
        url('/assets/images/pool-water.jpg') center/cover no-repeat;
    padding: 140px 0;
    text-align: center;
    color: white;
}

.hero-upgraded h1 {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.4);
}

.hero-upgraded .tagline {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */
.btn-primary {
    background: #007bff;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: bold;
    display: inline-block;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #005fcc;
}

.btn-secondary {
    background: #ffffff;
    color: #007bff;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: bold;
    border: 2px solid #007bff;
    display: inline-block;
    transition: 0.2s;
}

.btn-secondary:hover {
    background: #007bff;
    color: white;
}

/* Review buttons */
.btn-google,
.btn-facebook,
.btn-website-review {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    color: white;
    transition: 0.2s;
}

.btn-google { background: #4285F4; }
.btn-google:hover { background: #2a64c7; }

.btn-facebook { background: #1877F2; }
.btn-facebook:hover { background: #0f5dc8; }

.btn-website-review { background: #003366; }
.btn-website-review:hover { background: #00509e; }

/* --------------------------------------------------
   SERVICES PREVIEW
-------------------------------------------------- */
.services-preview {
    padding: 70px 0;
    text-align: center;
}

.services-preview h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #004c99;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card h3 {
    margin-bottom: 10px;
    color: #003366;
}

.service-card .price {
    margin-top: 12px;
    font-weight: bold;
    color: #003366;
}

/* service icons */
.service-icon {
    width: 42px;
    height: 42px;
    display: block;
    margin: 0 auto 15px auto;
    fill: #003366;
}

.service-icon svg {
    width: 42px;
    height: 42px;
    fill: #007bff;
    transition: 0.25s ease;
}

.service-card:hover .service-icon svg {
    fill: #66b3ff;
}

/* --------------------------------------------------
   FULL SERVICES PAGE
-------------------------------------------------- */
.services-full {
    padding: 60px 0;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    border-left: 6px solid #007bff;
}

.service-item h2 {
    color: #004c99;
    margin-bottom: 10px;
}

/* --------------------------------------------------
   REVIEWS
-------------------------------------------------- */
.reviews-preview {
    background: #eef6ff;
    padding: 70px 0;
    text-align: center;
}

.reviews-preview h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #004c99;
}

.reviews-container {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.reviews-full {
    padding: 60px 0;
}

.reviews-list {
    display: grid;
    gap: 20px;
}

.review-card-full {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 6px solid #007bff;
}

.review-card-full h3 {
    margin-bottom: 8px;
    color: #004c99;
}

.review-card-full .verified {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: bold;
}

.review-cta {
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* --------------------------------------------------
   CONTACT PAGE
-------------------------------------------------- */
.contact-section {
    padding: 60px 0;
}

.contact-section h2 {
    text-align: center;
    color: #004c99;
    margin-bottom: 30px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: auto;
}

.contact-form label {
    font-weight: bold;
    margin-top: 15px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.form-status {
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
}

.contact-info h3 {
    color: #004c99;
    margin-bottom: 10px;
}

/* --------------------------------------------------
   PAGE HERO
-------------------------------------------------- */
.page-hero {
    background: #007bff;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* --------------------------------------------------
   MAP SECTION
-------------------------------------------------- */
.map-section {
    padding: 60px 0;
    text-align: center;
}

.map-section h2 {
    color: #004c99;
    margin-bottom: 10px;
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer {
    background: #003366;
    color: white;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-section h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
    color: #66b3ff;
}

.footer-section a {
    display: block;
    color: #cfe6ff;
    margin-bottom: 8px;
    transition: 0.2s;
}

.footer-section a:hover {
    color: white;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #cfe6ff;
    transition: 0.2s;
}

.social-icon:hover {
    color: white;
}

.social-icon svg {
    fill: currentColor;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .header nav ul {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .footer-section a {
        margin-bottom: 12px;
    }

    .hero-upgraded {
        padding: 100px 0;
    }

    .hero-upgraded h1 {
        font-size: 2.4rem;
    }

    .hero-upgraded .tagline {
        font-size: 1.2rem;
    }
}
/* Premium Review Section */
.premium-reviews {
    text-align: center;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.review-card.premium {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
}

.review-stars {
    color: #f4b400; /* gold stars */
    font-size: 20px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    font-size: 14px;
}

.review-author .verified {
    background: #e8f0fe;
    color: #1a73e8;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 12px;
    margin-left: 5px;
}

.review-btn {
    margin-top: 30px;
    display: inline-block;
}
