﻿* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
}

/* ===== Header ===== */
header {
    background: linear-gradient(90deg, #ffffff, #f9f9f9);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

    header img {
        height: 60px;
    }

nav {
    display: flex;
    gap: 22px;
}

    nav a {
        position: relative;
        text-decoration: none;
        font-weight: 600;
        color: #333;
        font-size: 15px;
        padding: 6px 0;
    }

        nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 3px;
            background: #c4161c;
            transition: width 0.3s ease;
            border-radius: 3px;
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        nav a:hover,
        nav a.active {
            color: #c4161c;
        }

/* ===== Page Title ===== */
.page-title {
    background: linear-gradient(135deg, #c4161c, #7a0f12);
    color: #fff;
    text-align: center;
    padding: 18px 10px;
}

    .page-title h1 {
        margin: 0;
        font-size: 32px;
    }

    .page-title p {
        margin-top: 8px;
        font-size: 16px;
    }

/* ===== Container ===== */
.container {
    max-width: 95%;
    margin: auto;
    padding: 40px 20px;
}

/* ===== Contact Cards ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    text-align: center;
}

    .contact-card h3 {
        color: #c4161c;
        margin-bottom: 8px;
    }

    .contact-card p {
        font-size: 16px;
        margin: 6px 0;
    }

/* ===== Social Links ===== */
.social-links a {
    display: block;
    margin: 10px 0;
    padding: 12px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
}

.youtube {
    background: #FF0000;
}

.facebook {
    background: #1877F2;
}

.google {
    background: #34A853;
}

/* ===== Review Us Section ===== */
.review-box {
    background: linear-gradient(135deg, #ffffff, #fff5f5);
    border-radius: 14px;
    padding: 35px 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    text-align: center;
}

    .review-box h2 {
        color: #c4161c;
        margin-bottom: 10px;
    }

.review-stars {
    font-size: 28px;
    color: #FFD700;
    margin-bottom: 10px;
}

.review-box p {
    font-size: 16px;
    margin-bottom: 20px;
}

.review-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.review-btn {
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.review-google {
    background: #34A853;
}

.review-facebook {
    background: #1877F2;
}

/* ===== Map ===== */
.map-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

    .map-box h2 {
        color: #c4161c;
        text-align: center;
        margin-bottom: 20px;
    }

iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 10px;
}

/* ===== Footer ===== */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 18px;
    font-size: 14px;
    margin-top: 40px;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    z-index: 1000;
}

/* ================================
   SEO Content Section Styling
   (Gallery / Contact Pages)
================================ */

.seo-content {
    max-width: 95%;
    margin: 30px auto;
    padding: 25px 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

    /* Headings */
    .seo-content h1 {
        font-size: 28px;
        color: #1f2937;
        margin-bottom: 15px;
        border-left: 5px solid #2563eb; /* Blue accent */
        padding-left: 12px;
    }

    .seo-content h2 {
        font-size: 22px;
        color: #111827;
        margin-top: 30px;
        margin-bottom: 12px;
    }

    /* Paragraph text */
    .seo-content p {
        font-size: 16px;
        line-height: 1.75;
        color: #374151;
        margin-bottom: 14px;
    }

/* Highlight keywords */
.seo-highlight {
    color: #2563eb;
    font-weight: 600;
}

/* Contact details block */
.contact-info {
    margin-top: 20px;
    padding: 18px;
    background: #f3f4f6;
    border-left: 5px solid #16a34a;
    border-radius: 6px;
}

    .contact-info p {
        margin: 6px 0;
        font-size: 15px;
    }

/* Buttons / links */
.seo-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

    .seo-content a:hover {
        text-decoration: underline;
    }

/* FAQ section */
.faq-item {
    margin-bottom: 15px;
}

    .faq-item strong {
        display: block;
        color: #111827;
        margin-bottom: 5px;
    }


/* ===== MEDIA QUERIES (RECTIFIED) ===== */
@media (max-width: 768px) {
    /* We removed the header and nav overrides to keep the master layout */

    .container {
        padding: 20px 10px;
    }

    .about-card {
        padding: 20px;
    }

        .about-card p {
            font-size: 15px;
            text-align: left; /* Better readability on small screens */
        }

    .intro-section {
        padding: 15px 18px;
    }
}
