﻿/* ================= LOCATION PAGE ================= */

.location-page {
    width: 90%;
    margin: 40px auto;background: var(--brand);
    padding: 1.5rem;border-radius:5px;
 
}

/* HERO */
.location-hero {
    text-align: justify;
    margin-bottom: 40px;
}

.location-hero h1 {
    color: var(--h2);
    font-size: clamp(2rem, 2.5vw, 3rem);
    margin-bottom: 15px;
}

.location-hero .intro {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}


/* CONTENT */
.location-content {
    background: #111;
    padding: 25px;
    border-radius: 10px;
    color: var(--p-card);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* GRID INSIGHT + PROBLEM */
.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.location-card {
    background: var(--bg-card-services);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 15px rgba(138, 0, 255, 0.1);
}

.location-card h3 {
    color: var(--h3);
    margin-bottom: 10px;
}

.location-card p {
    color: var(--p-card);
}

/* SECTIONS */
.location-section {
      color: var(--h3);
    margin-bottom: 30px;
}

.faq-section h3 {
    color: var(--h3);
    margin-bottom: 15px;
}
 
/* TAG LIST (trades/services) */
.tag-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list li {
    background: #111;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--text-main);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
    transition: 0.2s;
}

.tag-list li:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
}

 

 
   .internal-links {
            margin-top: 40px;
            margin-bottom: 40px;
            padding: 20px;
            background: #111;
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.08);
        }

            .internal-links h3 {
                color: #fff;
                margin-bottom: 15px;
                font-size: 18px;
            }

            .internal-links ul {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
                gap: 10px;
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .internal-links li a {
                display: block;
                padding: 10px;
                background: #1a1a1a;
                color: #fff;
                text-decoration: none;
                border-radius: 8px;
                text-align: center;
                transition: 0.2s;
            }

                .internal-links li a:hover {
                    background: #d4af37;
                    color: #000;
                }
            .internal-links a.active {
                background: var(--gold);
                color: #000;
                font-weight: bold;
            }
        .breadcrumb {
            font-size: 0.9rem;
            margin-bottom: 15px;
            color: var(--text-muted);
        }

            .breadcrumb a {
                color: var(--gold);
                text-decoration: none;
            }

                .breadcrumb a:hover {
                    text-decoration: underline;
                }

            .breadcrumb span {
                color: #000;
                font-weight: 500;
            }
            .nearby-areas {
            margin: 40px 0;
            padding: 20px;
            background: var(--bg-card-services);
            border-radius: 10px;
            text-align: center;
        }

            .nearby-areas h3 {
                color: var(--gold);
                margin-bottom: 15px;
            }

            .nearby-areas ul {
                list-style: none;
                padding: 0;
            }

            .nearby-areas li {
                display: inline-block;
                margin: 5px;
            }

            .nearby-areas a {
                padding: 8px 12px;
                background: #111;
                color: #fff;
                border-radius: 6px;
                text-decoration: none;
            }

                .nearby-areas a:hover {
                    background: var(--gold);
                    color: #000;
                }
      .faq-accordion {
    max-width: 100%;
    margin: auto;
}

/* ITEM CARD */
.faq-item {
    background: #0f0f0f;
    border: 1px solid rgba(6, 74, 74, 0.35);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;

    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* hover lift effect */
.faq-item:hover {
    transform: translateY(-2px);
    border-color: #064a4a;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: #064a4a;
    color: #d4af37; /* gold accent */
    border: none;
    text-align: left;
    font-size: 1.05rem;
    cursor: pointer;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: background 0.2s ease;
}

/* hover question */
.faq-question:hover {
    background: #085a5a;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;

    padding: 0 20px;
    color: #dcdcdc;
    background: #0b0b0b;
}

/* ACTIVE STATE */
.faq-item.active {
    transform: translateY(-4px);
    border-color: #0B6E6E;
    box-shadow: 0 10px 25px rgba(11, 110, 110, 0.25);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
}

/* ICON ROTATION */
.icon {
    transition: transform 0.3s ease;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}
.cta-section {
    background: linear-gradient(135deg, #0f3d2e, #1f6f4a);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 60px auto;
    max-width: 80%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.cta-inner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-inner p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #f4c542;
    color: #1a1a1a;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.cta-button:hover {
    background: #ffd76a;
    transform: translateY(-2px);
}