/* =========================================
   Loft About + Why Choose Us — loft-about.css
   ========================================= */

/* ─────────────────────────────────────────
   WIDGET 1: HERO / ABOUT SECTION
   ───────────────────────────────────────── */

.law-hero-section {
    background-color: #0d1f0f;
    padding: 60px 40px;
    width: 100%;
    box-sizing: border-box;
}

.law-hero-inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

/* LEFT */
.law-hero-left {
    flex: 1 1 45%;
    min-width: 0;
}

.law-top-label {
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 8px;
    line-height: 1.4;
}

.law-main-heading {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #3dc04a;
    line-height: 1.15;
    margin: 0 0 16px;
}

.law-divider {
    width: 80px;
    height: 3px;
    background: transparent;
    border-top: 3px solid #3dc04a;
    margin: 12px 0 20px;
}

.law-divider-light {
    width: 100%;
    border-top: 1px solid rgba(61,192,74,0.25);
    margin: 20px 0;
}

/* Badges */
.law-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin-bottom: 6px;
}

.law-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    min-width: 64px;
}

.law-badge-icon {
    font-size: 28px;
    color: #3dc04a;
    line-height: 1;
}

.law-badge-icon i,
.law-badge-icon svg {
    font-size: 26px;
    color: #3dc04a;
    fill: #3dc04a;
    width: 26px;
    height: 26px;
}

.law-badge-text {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    max-width: 72px;
}

/* Paragraphs */
.law-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.law-para {
    font-size: 15px;
    color: #ccddcc;
    line-height: 1.75;
    margin: 0;
}

/* RIGHT IMAGE GRID */
.law-hero-right {
    flex: 1 1 50%;
    min-width: 0;
}

.law-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.law-grid-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a3520;
    border-radius: 12px;
    border: 2px solid #3dc04a;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

/* ─────────────────────────────────────────
   WIDGET 2: WHY CHOOSE US SECTION
   ───────────────────────────────────────── */

.law-why-section {
    background-color: #071209;
    padding: 60px 40px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Subtle grid texture overlay */
.law-why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(61,192,74,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(61,192,74,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.law-why-inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Heading */
.law-why-heading {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.2;
}

.law-why-white { color: #ffffff; }
.law-why-green { color: #3dc04a; }

.law-why-divider {
    width: 60px;
    height: 3px;
    background: #3dc04a;
    margin-bottom: 28px;
    border-radius: 2px;
}

/* LEFT PANEL */
.law-why-left {
    flex: 1 1 42%;
    min-width: 0;
}

.law-why-person-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.law-person-img-wrap {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(61,192,74,0.3);
    background: #0d2414;
}

.law-person-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.law-why-text-col {
    flex: 1;
}

.law-why-desc {
    font-size: 15px;
    color: #ccddcc;
    line-height: 1.75;
    margin: 0;
}

/* Rating Box */
.law-rating-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #0d2414;
    border: 1px solid rgba(61,192,74,0.3);
    border-radius: 12px;
    padding: 18px 20px;
    margin-top: 4px;
}

.law-rating-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(61,192,74,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.law-rating-icon i {
    font-size: 20px;
    color: #3dc04a;
}

.law-rating-text {
    font-size: 14px;
    color: #ccddcc;
    line-height: 1.65;
    margin: 0;
}

.law-rating-highlight {
    color: #3dc04a;
    font-weight: 700;
}

/* RIGHT FEATURE GRID */
.law-why-right {
    flex: 1 1 55%;
    min-width: 0;
}

.law-feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.law-feat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #0d2414;
    border: 1px solid rgba(61,192,74,0.2);
    border-radius: 14px;
    padding: 18px 20px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.law-feat-card:hover {
    border-color: #3dc04a;
    transform: translateY(-3px);
}

.law-feat-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1f5c2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.law-feat-icon i,
.law-feat-icon svg {
    font-size: 22px;
    color: #3dc04a;
    fill: #3dc04a;
    width: 22px;
    height: 22px;
}

.law-feat-content {
    flex: 1;
    min-width: 0;
}

.law-feat-title {
    font-size: 15px;
    font-weight: 700;
    color: #3dc04a;
    margin: 0 0 4px;
    line-height: 1.3;
}

.law-feat-desc {
    font-size: 13px;
    color: #aaccaa;
    line-height: 1.5;
    margin: 0;
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
    .law-hero-inner,
    .law-why-inner {
        flex-direction: column;
        gap: 32px;
    }

    .law-hero-left,
    .law-hero-right,
    .law-why-left,
    .law-why-right {
        flex: 1 1 100%;
        width: 100%;
    }

    .law-feat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .law-hero-section,
    .law-why-section {
        padding: 40px 20px;
    }

    .law-img-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .law-grid-img {
        aspect-ratio: 1 / 1;
    }

    .law-badges {
        gap: 16px 20px;
    }

    .law-feat-grid {
        grid-template-columns: 1fr;
    }

    .law-why-person-row {
        flex-direction: column;
        align-items: center;
    }

    .law-person-img-wrap {
        width: 100px;
        height: 100px;
    }

    .law-main-heading {
        font-size: 26px;
    }

    .law-why-heading {
        font-size: 26px;
    }
}

/* Very small */
@media (max-width: 380px) {
    .law-img-grid {
        grid-template-columns: 1fr;
    }
}
