/* =====================================================
   Location Pages (Aluminium Windows in <City>)
   Shared styles for Derabassi, Kharar, Zirakpur,
   Chandigarh, Mohali, etc.
   ===================================================== */

/* ===== Intro ===== */
.loc-intro {
    padding: 100px 0 80px;
}

.loc-intro-areas {
    margin-top: 35px;
}

.loc-intro-areas h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
}

.loc-intro .areas-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.loc-intro .areas-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    background: var(--secondery-color);
    border: 1px solid #e6e9ec;
    border-radius: 30px;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
}

.loc-intro .areas-list li i {
    color: var(--accent-color);
    font-size: 16px;
}

/* ===== Window Types ===== */
.loc-types {
    padding: 90px 0;
    background: var(--secondery-color);
}

.loc-type-card {
    background: var(--white-color);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s ease;
}

.loc-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.loc-type-card figure {
    margin: 0;
    overflow: hidden;
    background: var(--secondery-color);
}

.loc-type-card figure img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    padding: 22px;
    transition: transform 0.5s ease;
}

.loc-type-card:hover figure img {
    transform: scale(1.06);
}

.loc-type-body {
    padding: 28px 26px 32px;
}

.loc-type-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.loc-type-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* ===== Benefits (Why aluminium is ideal) ===== */
.loc-benefits {
    padding: 90px 0;
}

.loc-benefit-box {
    display: flex;
    gap: 18px;
    padding: 26px;
    border: 1px solid #eaedf0;
    border-radius: 6px;
    height: 100%;
    background: var(--white-color);
    transition: all 0.4s ease;
}

.loc-benefit-box:hover {
    border-color: var(--accent-color);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.loc-benefit-box .icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(46, 89, 149, 0.10);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.loc-benefit-box h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.loc-benefit-box p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-color);
    margin: 0;
}

/* ===== Reasons (Why choose us) ===== */
.loc-reasons {
    padding: 90px 0;
    background: var(--secondery-color);
}

.loc-reason-box {
    display: flex;
    gap: 20px;
    padding: 28px;
    border: 1px solid #eaedf0;
    border-radius: 6px;
    height: 100%;
    transition: all 0.4s ease;
    background: var(--white-color);
}

.loc-reason-box:hover {
    border-color: var(--accent-color);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.loc-reason-box .icon-box {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--secondery-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loc-reason-box .icon-box img {
    max-width: 32px;
}

.loc-reason-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.loc-reason-box p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-color);
    margin: 0;
}

/* Compact reason list (bullet style for "why choose us" lists) */
.loc-reason-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.loc-reason-list li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    font-size: 17px;
    color: var(--text-color);
    font-weight: 500;
}

.loc-reason-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
    font-size: 18px;
}

/* Stat-style reason cards (icon + stat + label + description) */
.loc-reasons .loc-reason-card {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    background: var(--white-color);
    border: 1px solid #eaedf0;
    border-radius: 8px;
    padding: 42px 32px;
    writing-mode: horizontal-tb;
    transition: all 0.4s ease;
}

.loc-reasons .loc-reason-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.loc-reasons .loc-reason-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(46, 89, 149, 0.1);
    color: var(--accent-color);
    font-size: 26px;
}

.loc-reasons .loc-reason-stat {
    display: block;
    width: 100%;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    white-space: normal;
}

.loc-reasons .loc-reason-label {
    display: block;
    width: 100%;
    font-size: 19px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 8px 0 14px;
}

.loc-reasons .loc-reason-desc {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-color);
}

/* Safety net: if a text-split/animation script wraps individual
   characters or words in their own elements inside these cards,
   keep them inline so they don't stack one-per-line */
.loc-reasons .loc-reason-stat *,
.loc-reasons .loc-reason-label *,
.loc-reasons .loc-reason-desc * {
    display: inline-block;
}

/* ===== Recent Projects ===== */
.loc-projects {
    padding: 90px 0;
}

.loc-project-card {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.loc-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.loc-project-card:hover img {
    transform: scale(1.08);
}

.loc-project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(25, 35, 36, 0.85) 0%, rgba(25, 35, 36, 0) 60%);
}

.loc-project-overlay span {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.loc-project-overlay h3 {
    color: var(--white-color);
    font-size: 19px;
    font-weight: 700;
    margin: 0;
}

/* ===== Aluminium vs uPVC ===== */
.loc-compare {
    padding: 90px 0;
    background: var(--secondery-color);
}

.loc-compare-card {
    background: var(--white-color);
    border-radius: 8px;
    padding: 40px 34px;
    height: 100%;
    border: 1px solid #e6e9ec;
    transition: all 0.4s ease;
}

.loc-compare-card.highlight {
    border-color: var(--accent-color);
    box-shadow: 0 18px 40px rgba(46, 89, 149, 0.12);
}

.loc-compare-card .tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    margin-bottom: 14px;
}

.loc-compare-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.loc-compare-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.loc-compare-note {
    text-align: center;
    margin-top: 34px;
    font-size: 16px;
    color: var(--text-color);
}

/* ===== FAQ ===== */
.loc-faq {
    padding: 90px 0;
}

.loc-faq-item {
    border: 1px solid #e6e9ec;
    border-radius: 6px;
    margin-bottom: 16px;
    overflow: hidden;
    background: var(--white-color);
}

.loc-faq-q {
    width: 100%;
    text-align: left;
    background: var(--white-color);
    border: none;
    padding: 22px 26px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.loc-faq-q:hover {
    color: var(--accent-color);
}

.loc-faq-q i {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent-color);
    font-size: 16px;
}

.loc-faq-item.active .loc-faq-q i {
    transform: rotate(180deg);
}

.loc-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.loc-faq-a p {
    padding: 0 26px 22px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

/* ===== CTA ===== */
.loc-cta {
    padding: 80px 0;
    background: var(--accent-color);
}

.loc-cta .section-title h2,
.loc-cta .section-title h3 {
    color: var(--white-color);
}

.loc-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.7;
    margin: 18px 0 30px;
    max-width: 640px;
}

.loc-cta .btn-default {
    margin-right: 16px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .loc-intro {
        padding: 70px 0 50px;
    }

    .loc-reason-box,
    .loc-benefit-box {
        flex-direction: column;
    }

    .loc-cta .btn-default {
        margin: 0 8px 12px 0;
    }

    .loc-reasons .loc-reason-card {
        padding: 32px 24px;
    }

    .loc-reasons .loc-reason-stat {
        font-size: 32px;
    }
}