

/* ================= LOCATION HERO ================= */
.location-hero {
    position: relative;
    min-height: 52vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.location-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.82) 100%);
}

.location-hero .container {
    position: relative;
    z-index: 2;
}

.location-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    color: #ccc;
    font-size: 15px;
}

.location-breadcrumb a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s ease;
}

.location-breadcrumb a:hover {
    color: #f7c600;
}

.location-breadcrumb .current {
    color: #f7c600;
    font-weight: 700;
}

.location-hero-title {
    color: #fff;
    font-size: 54px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 18px;
    max-width: 900px;
}

.location-hero-text {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.8;
    max-width: 820px;
    margin-bottom: 28px;
}

.location-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 26px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.location-btn--primary {
    background: #f7c600;
    color: #000;
}

.location-btn--primary:hover {
    background: #dfb300;
    color: #000;
}

.location-btn--dark {
    background: #111;
    color: #f7c600;
    border-color: #f7c600;
}

.location-btn--dark:hover {
    background: #1a1a1a;
    color: #fff;
}

.location-btn--ghost {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-color: rgba(255,255,255,0.1);
}

.location-btn--ghost:hover {
    border-color: #f7c600;
    color: #f7c600;
}

/* ================= MAIN CONTENT ================= */
.location-content-section {
    background: #0d0d0d;
    padding: 70px 0;
}

.location-intro-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid #1c1c1c;
    border-radius: 18px;
    padding: 35px;
    margin-bottom: 35px;
}

.location-section-title {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
}

.location-subtitle {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    margin: 50px 0 18px;
}

.location-text {
    color: #bbb;
    font-size: 18px;
    line-height: 1.85;
    margin-bottom: 18px;
}

/* ================= FEATURE HIGHLIGHT BOX ================= */
.location-highlight-box {
    background: #111;
    border-left: 4px solid #f7c600;
    border-radius: 12px;
    padding: 26px;
    margin-bottom: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.location-highlight-box h3 {
    color: #f7c600;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
}

.location-highlight-box p {
    color: #cfcfcf;
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
}

/* ================= ICON GRID ================= */
.location-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0 35px;
}

.location-icon-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid #1f1f1f;
    border-radius: 12px;
    padding: 18px;
    min-height: 100%;
}

.location-icon-item i {
    color: #f7c600;
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.location-icon-item p {
    margin: 0;
    color: #d0d0d0;
    font-size: 17px;
    line-height: 1.7;
}

/* ================= BENEFIT CARDS ================= */
.location-card-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 22px;
    margin-top: 25px;
}

.location-card {
    background: #111;
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #222;
    transition: 0.3s ease;
    height: 100%;
}

.location-card:hover {
    transform: translateY(-4px);
    border-color: #f7c600;
}

.location-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    background: rgba(247, 198, 0, 0.10);
    border: 1px solid rgba(247, 198, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.location-card-icon i {
    color: #f7c600;
    font-size: 30px;
}

.location-card h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.location-card p {
    color: #c5c5c5;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

/* ================= PROBLEM GRID ================= */
.location-problem-wrap {
    background: rgba(247, 198, 0, 0.05);
    border: 1px solid rgba(247, 198, 0, 0.14);
    border-radius: 16px;
    padding: 28px;
    margin: 30px 0;
}

.location-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.location-problem-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-problem-item i {
    color: #f7c600;
    font-size: 18px;
    margin-top: 5px;
}

.location-problem-item p {
    margin: 0;
    color: #d0d0d0;
    line-height: 1.7;
    font-size: 16px;
}

/* ================= PROCESS ================= */
.location-process {
    display: grid;
    gap: 18px;
    margin: 30px 0;
}

.location-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(247, 198, 0, 0.05);
    border-left: 4px solid #f7c600;
    border-radius: 14px;
    padding: 24px;
}

.location-step-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #f7c600;
    color: #000;
    font-weight: 800;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-step h3 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 8px;
}

.location-step p {
    color: #cfcfcf;
    margin: 0;
    line-height: 1.8;
    font-size: 16px;
}

/* ================= SIMPLE LIST ================= */
.location-simple-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.location-simple-list li {
    position: relative;
    padding-left: 28px;
    color: #d0d0d0;
    font-size: 17px;
    line-height: 1.7;
}

.location-simple-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #f7c600;
    position: absolute;
    left: 0;
    top: 2px;
}

/* ================= TRUST STRIP ================= */
.location-trust-strip {
    background: linear-gradient(135deg, rgba(247,198,0,0.10) 0%, rgba(247,198,0,0.04) 100%);
    border: 1px solid rgba(247,198,0,0.25);
    border-radius: 16px;
    padding: 30px;
    margin: 45px 0;
}

.location-trust-strip h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
}

.location-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.location-badge {
    background: rgba(247,198,0,0.12);
    border: 1px solid rgba(247,198,0,0.4);
    color: #fff;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ================= CASE STUDY ================= */
.location-case-study {
    background: #111;
    border-left: 4px solid #f7c600;
    border-radius: 12px;
    padding: 28px;
    margin-top: 30px;
}

.location-case-study h3 {
    color: #f7c600;
    font-size: 24px;
    margin-bottom: 16px;
}

.location-case-study p {
    color: #ccc;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.location-case-study p:last-child {
    margin-bottom: 0;
}

/* ================= FAQ ================= */
.faq-section {
    padding: 70px 0 30px;
    background: #0d0d0d;
}

.faq-header {
    margin-bottom: 35px;
}

.faq-label {
    color: #f7c600;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
}

.faq-title {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.faq-accordion {
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid #222;
    border-radius: 14px;
    background: #111;
    overflow: hidden;
}

.faq-question {
    position: relative;
    padding: 22px 56px 22px 22px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
}

.faq-arrow {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-right: 2px solid #f7c600;
    border-bottom: 2px solid #f7c600;
    transform: translateY(-60%) rotate(45deg);
    transition: 0.3s ease;
}

.faq-answer {
    display: none;
    padding: 0 22px 22px;
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-arrow {
    transform: translateY(-35%) rotate(-135deg);
}

/* ================= OTHER SERVICES ================= */
.services-section {
    background: #000;
    padding: 70px 0;
}

.services-title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 35px;
}

.service-box {
    background: #111;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateY(-4px);
    border-color: #f7c600;
}

.service-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-link {
    display: inline-block;
    margin-top: 12px;
    color: #f7c600;
    font-weight: 700;
    text-decoration: none;
}

.service-link:hover {
    color: #fff;
}

/* ================= CTA ================= */
.cta-service {
    background: #111;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-text {
    color: #ccc;
    font-size: 18px;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 28px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f7c600;
    color: #000;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #ddb200;
    color: #000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1199px) {
    .location-hero-title {
        font-size: 46px;
    }

    .location-section-title,
    .location-subtitle,
    .faq-title,
    .consult-v2-title,
    .cta-title,
    .services-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .location-hero {
        min-height: auto;
        padding: 100px 0 70px;
    }

    .location-hero-title {
        font-size: 40px;
    }

    .location-card-grid,
    .location-problem-grid,
    .location-simple-list,
    .location-icon-grid,
    .consult-v2-wrapper {
        grid-template-columns: 1fr;
    }

    .location-intro-card,
    .consult-v2-left,
    .consult-v2-right {
        padding: 28px;
    }

    .location-section-title,
    .location-subtitle,
    .faq-title,
    .consult-v2-title,
    .cta-title,
    .services-title {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .location-content-section,
    .services-section,
    .cta-service,
    .consult-v2-section,
    .faq-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .location-hero {
        padding: 90px 0 60px;
    }

    .location-hero-title {
        font-size: 32px;
    }

    .location-hero-text,
    .location-text,
    .cta-text {
        font-size: 16px;
        line-height: 1.75;
    }

    .location-section-title,
    .location-subtitle,
    .faq-title,
    .consult-v2-title,
    .cta-title,
    .services-title {
        font-size: 26px;
    }

    .location-step {
        flex-direction: column;
    }

    .location-btn,
    .cta-btn,
    .consult-v2-btn {
        width: 100%;
    }

    .location-hero-actions {
        flex-direction: column;
    }

    .location-highlight-box,
    .location-trust-strip,
    .location-case-study,
    .location-card,
    .service-box {
        padding: 22px;
    }
}

@media (max-width: 575px) {
    .location-breadcrumb {
        font-size: 13px;
    }

    .location-hero-title {
        font-size: 28px;
    }

    .location-section-title,
    .location-subtitle,
    .faq-title,
    .consult-v2-title,
    .cta-title,
    .services-title {
        font-size: 24px;
    }

    .location-card h3,
    .location-step h3,
    .location-highlight-box h3,
    .service-title {
        font-size: 20px;
    }

    .location-intro-card,
    .consult-v2-left,
    .consult-v2-right {
        padding: 22px 18px;
    }
}