/* =============================================
   About Section - Custom Styles
   ============================================= */

/* About Section Label */
.about-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8922a;
    margin-bottom: 10px;
    display: block;
}

/* About Heading */
.about-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 18px;
    font-family: "Poppins", sans-serif;
}

.about-heading span {
    color: #c8922a;
}

/* About Description */
.about-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Stats Row */
.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
    margin-bottom: 30px;
}

.about-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 120px;
}

.about-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #c8922a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-stat-icon i {
    font-size: 20px;
    color: #c8922a;
}

.about-stat-text .stat-number {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
    font-family: "Poppins", sans-serif;
}

.about-stat-text .stat-label {
    font-size: 13px;
    color: #777;
    margin-top: 2px;
    display: block;
}

/* CTA Button */
.about-cta-btn {
    display: inline-block;
    padding: 14px 34px;
    background-color: #c8922a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.about-cta-btn:hover {
    background-color: #a87520;
    color: #fff;
    text-decoration: none;
}

/* About Image */
.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 767px) {
    .about-heading {
        font-size: 26px;
    }

    .about-stats {
        gap: 16px;
    }

    .about-stat-item {
        min-width: calc(50% - 10px);
    }

    .about-stat-text .stat-number {
        font-size: 22px;
    }
}

@media (max-width: 400px) {
    .about-stat-item {
        min-width: 100%;
    }
}

/* =============================================
   Apex City - Project Section (v2)
   ============================================= */

/* Section wrapper */
.apex-project-section {
    background: #f4f6f9;
    padding: 70px 0 0;
}

/* Section Header */
.apex-section-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 15px;
}

.apex-section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8922a;
    margin-bottom: 10px;
    position: relative;
    padding: 0 30px;
}

.apex-section-tag::before,
.apex-section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 22px;
    height: 2px;
    background: #c8922a;
}

.apex-section-tag::before { left: 0; }
.apex-section-tag::after  { right: 0; }

.apex-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: "Poppins", sans-serif;
    line-height: 1.25;
    margin: 0;
}

.apex-section-title span {
    color: #c8922a;
}

/* ---- Banner Wrap ---- */
.apex-banner-wrap {
    display: flex;
    align-items: stretch;
    min-height: 520px;
    overflow: hidden;
}

/* ---- Left: Image Column ---- */
.apex-img-col {
    width: 55%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.apex-img-top {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.apex-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.apex-img-top:hover img {
    transform: scale(1.04);
}

/* Status badge */
.apex-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #c8922a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.apex-badge i {
    font-size: 8px;
    animation: apexPulse 1.4s infinite;
}

@keyframes apexPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

/* Bottom thumbnails */
.apex-img-bottom-row {
    display: flex;
    height: 150px;
    gap: 3px;
    margin-top: 3px;
}

.apex-img-sm {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.apex-img-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.apex-img-sm:hover img {
    transform: scale(1.07);
}

.apex-img-overlay-wrap .apex-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    gap: 6px;
    transition: background 0.3s ease;
}

.apex-img-overlay-wrap .apex-img-overlay i {
    font-size: 22px;
}

.apex-img-overlay-wrap .apex-img-overlay span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.apex-img-overlay-wrap .apex-img-overlay:hover {
    background: rgba(200, 146, 42, 0.82);
    color: #fff;
    text-decoration: none;
}

/* ---- Right: Detail Column ---- */
.apex-detail-col {
    flex: 1;
    background: #002f2e;
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

/* Project title block */
.apex-detail-head {
    margin-bottom: 16px;
}

.apex-proj-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    font-family: "Poppins", sans-serif;
    margin: 0 0 8px;
    line-height: 1.2;
}

.apex-proj-loc {
    font-size: 13px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
}

.apex-proj-loc i {
    color: #c8922a;
}

/* Description */
.apex-proj-desc {
    font-size: 14px;
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 22px;
    border-left: 3px solid #c8922a;
    padding-left: 14px;
}

/* Feature tags */
.apex-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}

.apex-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ddd;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.25s ease;
}

.apex-tag i {
    color: #c8922a;
    font-size: 11px;
}

.apex-tag:hover {
    background: rgba(200, 146, 42, 0.18);
    border-color: #c8922a;
    color: #fff;
}

/* Stats strip */
.apex-stats-strip {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 28px;
}

.apex-stat {
    flex: 1;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.apex-stat strong {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    font-family: "Poppins", sans-serif;
}

.apex-stat span {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apex-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.apex-running-dot {
    color: #4ade80 !important;
}

/* Buttons */
.apex-btn-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.apex-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: #c8922a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.apex-btn-gold:hover {
    background: #a87520;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.apex-btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.35);
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.apex-btn-dark:hover {
    background: #fff;
    color: #1a1a2e;
    border-color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* =============================================
   Apex City - Responsive
   ============================================= */

@media (max-width: 991px) {
    .apex-banner-wrap {
        flex-direction: column;
        min-height: auto;
    }

    .apex-img-col {
        width: 100%;
    }

    .apex-img-top img {
        height: 300px;
    }

    .apex-img-bottom-row {
        height: 120px;
    }

    .apex-detail-col {
        padding: 36px 32px;
    }

    .apex-section-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .apex-project-section {
        padding: 50px 0 0;
    }

    .apex-section-title {
        font-size: 24px;
    }

    .apex-img-top img {
        height: 240px;
    }

    .apex-img-bottom-row {
        height: 95px;
    }

    .apex-detail-col {
        padding: 28px 20px;
    }

    .apex-proj-title {
        font-size: 24px;
    }

    .apex-stats-strip {
        flex-direction: column;
        gap: 0;
    }

    .apex-stat {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 12px 16px;
    }

    .apex-stat:last-child {
        border-bottom: none;
    }

    .apex-stat-divider {
        display: none;
    }

    .apex-btn-row {
        flex-direction: column;
    }

    .apex-btn-gold,
    .apex-btn-dark {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================
   Amenities Section
   ============================================= */

.am-section {
    background: #fff;
    padding: 60px 0 70px;
    border-top: 1px solid #f0f0f0;
}

/* Header */
.am-header {
    margin-bottom: 48px;
}

.am-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8922a;
    margin-bottom: 10px;
}

.am-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: "Poppins", sans-serif;
    margin: 0;
    line-height: 1.2;
}

/* Grid */
.am-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid #efefef;
    border-left: 1px solid #efefef;
}

/* Each item */
.am-item {
    width: 12.5%;           /* 8 items in one row */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px 16px 30px;
    border-right: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    cursor: default;
    transition: background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.am-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #c8922a;
    transition: width 0.35s ease;
}

.am-item:hover {
    background: #fffaf3;
}

.am-item:hover::after {
    width: 60%;
}

/* Icon circle */
.am-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #c8922a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: background 0.3s ease, transform 0.3s ease;
    background: transparent;
}

.am-icon-wrap i {
    font-size: 24px;
    color: #c8922a;
    transition: color 0.3s ease;
}

.am-item:hover .am-icon-wrap {
    background: #c8922a;
    transform: translateY(-4px);
}

.am-item:hover .am-icon-wrap i {
    color: #fff;
}

/* Label */
.am-label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    text-align: center;
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
    transition: color 0.3s ease;
}

.am-item:hover .am-label {
    color: #c8922a;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .am-item {
        width: 25%;   /* 4 per row */
    }
}

@media (max-width: 575px) {
    .am-item {
        width: 33.333%;   /* 3 per row */
        padding: 26px 10px 22px;
    }

    .am-icon-wrap {
        width: 54px;
        height: 54px;
    }

    .am-icon-wrap i {
        font-size: 20px;
    }

    .am-title {
        font-size: 24px;
    }
}

@media (max-width: 380px) {
    .am-item {
        width: 50%;   /* 2 per row */
    }
}


/* =============================================
   Gallery Section
   ============================================= */

.gallery-section {
    background: #fff;
    padding: 70px 0 50px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 36px;
}

.gallery-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8922a;
    margin-bottom: 10px;
}

.gallery-title {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: "Poppins", sans-serif;
    margin: 0;
}

/* 5-column grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.07);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-overlay i {
    font-size: 28px;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-btn-wrap {
    text-align: center;
}

.gallery-view-btn {
    display: inline-block;
    padding: 13px 38px;
    background: #1a1a2e;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.5px;
}

.gallery-view-btn:hover {
    background: #c8922a;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-grid .gallery-item:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 575px) {
    .gallery-section {
        padding: 50px 0 36px;
    }
    .gallery-title {
        font-size: 26px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .gallery-grid .gallery-item:nth-child(n+3) {
        display: none;
    }
}

/* =============================================
   New Testimonials Section
   ============================================= */

.new-testimonial-section {
    background: #f8f9fb;
    padding: 70px 0 80px;
    border-top: 1px solid #efefef;
}

.new-testi-header {
    text-align: center;
    margin-bottom: 44px;
}

.new-testi-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8922a;
    margin-bottom: 10px;
}

.new-testi-title {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: "Poppins", sans-serif;
    margin: 0;
}

/* Slider wrapper */
.new-testi-slider-wrap {
    position: relative;
    padding: 0 50px;
}

.new-testi-swiper {
    overflow: hidden;
}

/* Card */
.new-testi-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 28px 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.new-testi-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

/* Stars */
.new-testi-stars {
    display: flex;
    gap: 3px;
}

.new-testi-stars i {
    color: #f5a623;
    font-size: 16px;
}

/* Text */
.new-testi-text {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin: 0;
    flex: 1;
}

/* Author */
.new-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
    margin-top: auto;
}

.new-testi-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #c8922a;
}

.new-testi-author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: "Poppins", sans-serif;
}

.new-testi-author-info span {
    font-size: 12px;
    color: #999;
}

/* Nav arrows */
.new-testi-prev,
.new-testi-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.new-testi-prev { left: 0; }
.new-testi-next { right: 0; }

.new-testi-prev i,
.new-testi-next i {
    font-size: 18px;
    color: #1a1a2e;
    transition: color 0.3s ease;
}

.new-testi-prev:hover,
.new-testi-next:hover {
    background: #c8922a;
    border-color: #c8922a;
}

.new-testi-prev:hover i,
.new-testi-next:hover i {
    color: #fff;
}

/* Override default swiper nav */
.new-testi-swiper .swiper-button-prev,
.new-testi-swiper .swiper-button-next {
    display: none;
}

/* Responsive */
@media (max-width: 991px) {
    .new-testi-slider-wrap {
        padding: 0 44px;
    }
}

@media (max-width: 575px) {
    .new-testimonial-section {
        padding: 50px 0 60px;
    }
    .new-testi-title {
        font-size: 26px;
    }
    .new-testi-slider-wrap {
        padding: 0 36px;
    }
    .new-testi-card {
        padding: 22px 18px 20px;
    }
}

/* =============================================
   Site Visit CTA Section
   ============================================= */

.site-visit-section {
   
    padding: 36px 0;
}

.site-visit-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.site-visit-text {
    flex-shrink: 0;
}

.site-visit-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    font-family: "Poppins", sans-serif;
    margin: 0 0 4px;
    line-height: 1.3;
}

.site-visit-text p {
    font-size: 13px;
    color: #aaa;
    margin: 0;
}

.site-visit-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    flex-wrap: wrap;
}

.site-visit-form input,
.site-visit-form select {
    flex: 1;
    min-width: 140px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.07);
    color: #fff;
    font-size: 13px;
    border-radius: 5px;
    outline: none;
    font-family: "Poppins", sans-serif;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.site-visit-form input::placeholder {
    color: #aaa;
}

.site-visit-form select option {
    background: #1a1a2e;
    color: #fff;
}

.site-visit-form input:focus,
.site-visit-form select:focus {
    border-color: #c8922a;
}

.site-visit-form button {
    padding: 12px 28px;
    background: #c8922a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.site-visit-form button:hover {
    background: #a87520;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .site-visit-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .site-visit-form {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .site-visit-section {
        padding: 30px 0;
    }
    .site-visit-text h3 {
        font-size: 18px;
    }
    .site-visit-form {
        flex-direction: column;
    }
    .site-visit-form input,
    .site-visit-form select,
    .site-visit-form button {
        width: 100%;
        flex: none;
    }
}

/* =============================================
   Banking Partners Section
   ============================================= */

.banking-section {
    background: #fff;
    padding: 50px 0 60px;
    border-top: 1px solid #f0f0f0;
}

.banking-header {
    text-align: center;
    margin-bottom: 32px;
}

.banking-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8922a;
    position: relative;
    padding: 0 36px;
}

.banking-tag::before,
.banking-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28px;
    height: 2px;
    background: #c8922a;
}

.banking-tag::before { left: 0; }
.banking-tag::after  { right: 0; }

.banking-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 50px;
}

.banking-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.banking-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-3px);
}

.banking-logo-item img {
    max-height: 44px;
    max-width: 130px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Responsive */
@media (max-width: 767px) {
    .banking-logos {
        gap: 24px 36px;
    }
    .banking-logo-item img {
        max-height: 36px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .banking-section {
        padding: 36px 0 44px;
    }
    .banking-logos {
        gap: 20px 28px;
    }
    .banking-logo-item img {
        max-height: 30px;
        max-width: 80px;
    }
}


/* =============================================
   Gallery Page – Full Redesign
   ============================================= */

.pg-gallery-section {
    background: #f8f9fb;
    padding: 70px 0 80px;
}

/* Header */
.pg-gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.pg-gallery-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8922a;
    margin-bottom: 10px;
    position: relative;
    padding: 0 32px;
}

.pg-gallery-tag::before,
.pg-gallery-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 2px;
    background: #c8922a;
}

.pg-gallery-tag::before { left: 0; }
.pg-gallery-tag::after  { right: 0; }

.pg-gallery-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: "Poppins", sans-serif;
    margin: 0 0 12px;
    line-height: 1.2;
}

.pg-gallery-title span {
    color: #c8922a;
}

.pg-gallery-sub {
    font-size: 15px;
    color: #777;
    margin: 0;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Filter Tabs ---- */
.pg-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.pg-filter-btn {
    padding: 10px 26px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.pg-filter-btn:hover {
    border-color: #c8922a;
    color: #c8922a;
}

.pg-filter-btn.active {
    background: #c8922a;
    border-color: #c8922a;
    color: #fff;
    box-shadow: 0 4px 14px rgba(200, 146, 42, 0.35);
}

/* ---- Gallery Grid (CSS Grid masonry-style) ---- */
.pg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 14px;
}

/* Normal item */
.pg-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #ddd;
}

/* Wide item spans 2 columns */
.pg-item-wide {
    grid-column: span 2;
}

/* Tall item spans 2 rows */
.pg-item-tall {
    grid-row: span 2;
}

.pg-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.pg-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.pg-gallery-item:hover img {
    transform: scale(1.07);
}

/* Overlay */
.pg-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.pg-gallery-item:hover .pg-item-overlay {
    opacity: 1;
}

.pg-overlay-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: #fff;
}

.pg-overlay-content i {
    font-size: 22px;
    color: #c8922a;
}

.pg-overlay-content span {
    font-size: 13px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    line-height: 1.3;
}

/* Fade-in animation for filter */
@keyframes pgFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

/* ---- Lightbox ---- */
.pg-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.pg-lightbox-modal.active {
    opacity: 1;
    pointer-events: all;
}

.pg-lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.92);
    cursor: pointer;
}

.pg-lb-container {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pg-lb-img-wrap {
    max-width: 88vw;
    max-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-lb-img-wrap img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    display: block;
}

.pg-lb-caption {
    color: #ddd;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    text-align: center;
}

.pg-lb-counter {
    color: #888;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
}

/* Nav buttons */
.pg-lb-close,
.pg-lb-prev,
.pg-lb-next {
    position: fixed;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 2;
}

.pg-lb-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 18px;
}

.pg-lb-prev,
.pg-lb-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    font-size: 22px;
}

.pg-lb-prev { left: 20px; }
.pg-lb-next { right: 20px; }

.pg-lb-close:hover,
.pg-lb-prev:hover,
.pg-lb-next:hover {
    background: #c8922a;
    border-color: #c8922a;
}

/* ---- Responsive ---- */
@media (max-width: 1199px) {
    .pg-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 767px) {
    .pg-gallery-section {
        padding: 50px 0 60px;
    }

    .pg-gallery-title {
        font-size: 28px;
    }

    .pg-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 10px;
    }

    /* Remove wide/tall on small screens */
    .pg-item-wide,
    .pg-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .pg-lb-prev { left: 8px; }
    .pg-lb-next { right: 8px; }

    .pg-lb-prev,
    .pg-lb-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .pg-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
        gap: 8px;
    }

    .pg-filter-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}


/* =============================================
   New Footer – nf-footer
   ============================================= */

.nf-footer {
    background: #0d1117;
    color: #b0b8c4;
    font-family: "Poppins", sans-serif;
    position: relative;
}

/* Gold accent top bar */
.nf-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, #c8922a 0%, #e8b84b 50%, #c8922a 100%);
}

/* ---- Main Body ---- */
.nf-body {
    padding: 70px 0 50px;
}

/* 4-column grid */
.nf-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 40px 50px;
}

/* ---- Brand Column ---- */
.nf-logo-wrap {
    display: inline-block;
    margin-bottom: 20px;
}

.nf-logo-wrap img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    /* brighten logo on dark bg */
   
}

.nf-brand-desc {
    font-size: 13.5px;
    line-height: 1.85;
    color: #8a95a3;
    margin: 0 0 24px;
}

/* Social buttons */
.nf-social {
    display: flex;
    gap: 10px;
}

.nf-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(200, 146, 42, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8922a;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
}

.nf-social-btn:hover {
    background: #c8922a;
    border-color: #c8922a;
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
}

/* ---- Column Titles ---- */
.nf-col-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin: 0 0 22px;
    padding-bottom: 12px;
    position: relative;
}

.nf-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: #c8922a;
    border-radius: 2px;
}

/* ---- Quick Links ---- */
.nf-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nf-links li a {
    font-size: 13.5px;
    color: #8a95a3;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.nf-links li a i {
    font-size: 12px;
    color: #c8922a;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.nf-links li a:hover {
    color: #c8922a;
    padding-left: 4px;
    text-decoration: none;
}

.nf-links li a:hover i {
    transform: translateX(3px);
}

/* RERA Badge */
.nf-rera-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    background: rgba(200, 146, 42, 0.12);
    border: 1px solid rgba(200, 146, 42, 0.35);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #c8922a;
    letter-spacing: 0.3px;
}

.nf-rera-badge i {
    font-size: 14px;
}

/* ---- Contact List ---- */
.nf-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nf-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: #8a95a3;
    line-height: 1.65;
}

.nf-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(200, 146, 42, 0.12);
    border: 1px solid rgba(200, 146, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.nf-contact-icon i {
    font-size: 13px;
    color: #c8922a;
}

.nf-contact-list li a {
    color: #8a95a3;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nf-contact-list li a:hover {
    color: #c8922a;
    text-decoration: none;
}

/* ---- Bottom Bar ---- */
.nf-bottom {
    background: #080c10;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
}

.nf-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.nf-copy {
    font-size: 13px;
    color: #5a6472;
    margin: 0;
}

.nf-copy a {
    color: #c8922a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.nf-copy a:hover {
    color: #e8b84b;
    text-decoration: none;
}

.nf-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #5a6472;
    margin: 0;
}

.nf-bottom-links a {
    color: #5a6472;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nf-bottom-links a:hover {
    color: #c8922a;
    text-decoration: none;
}

.nf-sep {
    color: #2a3040;
}

/* =============================================
   Footer Responsive
   ============================================= */

@media (max-width: 1199px) {
    .nf-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
        gap: 36px 36px;
    }
}

@media (max-width: 991px) {
    .nf-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 40px;
    }

    .nf-body {
        padding: 55px 0 40px;
    }
}

@media (max-width: 575px) {
    .nf-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .nf-body {
        padding: 44px 0 32px;
    }

    .nf-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .nf-bottom-links {
        justify-content: center;
    }

    .nf-logo-wrap img {
        max-height: 50px;
    }
}


/* =============================================
   Inner Pages – Header & Breadcrumb Fix
   ============================================= */

/* Ensure header is always visible and on top */
.header.section {
    position: relative;
    z-index: 999;
    background: #fff;
}

.header-bottom {
    background: #fff !important;
    position: relative;
    z-index: 999;
}

/* Breadcrumb background image fix */
.breadcrumb-bg {
    background-image: url(../images/breadcrumb-bg.jpg) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
}

/* Dark overlay on breadcrumb */
.breadcrumb-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(1, 20, 20, 0.65);
    z-index: 0;
}

/* Breadcrumb content above overlay */
.breadcrumb-bg .container {
    position: relative;
    z-index: 1;
}

.cr-breadcrumb-area {
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cr-breadcrumb-area .title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin: 0;
}

.cr-breadcrumb-area .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cr-breadcrumb-area .breadcrumb-list li {
    color: #fff;
    font-size: 14px;
}

.cr-breadcrumb-area .breadcrumb-list li:not(:first-child)::before {
    content: "/";
    padding: 0 8px;
    color: #c8922a;
}

.cr-breadcrumb-area .breadcrumb-list li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.cr-breadcrumb-area .breadcrumb-list li a:hover {
    color: #c8922a;
    text-decoration: none;
}

.cr-breadcrumb-area .breadcrumb-list li span {
    color: #c8922a;
    font-weight: 600;
}

/* Responsive breadcrumb */
@media (max-width: 767px) {
    .cr-breadcrumb-area {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 0;
    }

    .cr-breadcrumb-area .title {
        font-size: 26px;
    }

    .breadcrumb-bg {
        min-height: 160px;
    }
}

@media (max-width: 575px) {
    .cr-breadcrumb-area .title {
        font-size: 22px;
    }
}


/* =============================================
   Header Bottom Visibility Fix
   ============================================= */

/* Force header bottom to always show with proper height */
.header-bottom.header-sticky {
    min-height: 80px !important;
    display: flex !important;
    align-items: center;
    background: #fff !important;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.header-bottom.header-sticky .container {
    width: 100%;
}

/* Header top dark bar */
.bg-top-black {
    background: #0d1117 !important;
}

/* Make sure header wraps content properly */
.header.section {
    position: relative;
    z-index: 1000;
}


/* =============================================
   Footer – Inner Pages Fix
   ============================================= */

/* Remove any margin/padding that pushes footer down on inner pages */
.nf-footer {
    margin-top: 0 !important;
    position: relative;
    z-index: 10;
    clear: both;
}

/* Ensure last section before footer has no extra bottom margin */
.section:last-of-type {
    margin-bottom: 0;
}

/* Fix: some themes add padding to footer tag globally */
footer.nf-footer {
    padding: 0 !important;
}


/* =============================================
   Mobile Menu – Complete Redesign
   ============================================= */

/* Sidebar panel */
.mobile-menu-inner {
    width: 300px !important;
    background: #1a1a2e !important;
    padding: 0 0 24px !important;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Close button */
.mobile-menu-inner .btn-close-bar {
    padding: 16px 20px 12px !important;
    font-size: 28px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0;
}

.mobile-menu-inner .btn-close-bar i {
    font-size: 26px !important;
    color: #fff;
    transition: color 0.2s ease, transform 0.3s ease;
}

.mobile-menu-inner .btn-close-bar i:hover {
    color: #c8922a !important;
    transform: rotate(90deg);
}

/* Logo inside mobile menu */
.mobile-navigation .header-logo {
    padding: 16px 20px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 0;
    text-align: left;
}

.mobile-navigation .header-logo img {
    max-height: 48px;
    width: auto;
}

/* Nav list */
.mobile-menu {
    padding: 8px 0 8px !important;
    margin: 0;
    list-style: none;
}

/* Each menu item */
.mobile-menu > li {
    margin-bottom: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu > li:last-child {
    border-bottom: none;
}

/* Menu links */
.mobile-menu > li > a {
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1px;
    color: #e0e0e0 !important;
    padding: 13px 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu > li > a:hover {
    color: #c8922a !important;
    background: rgba(200, 146, 42, 0.08);
    padding-left: 26px !important;
    text-decoration: none;
}

/* Active/current page highlight */
.mobile-menu > li.active > a {
    color: #c8922a !important;
    background: rgba(200, 146, 42, 0.1);
    border-left: 3px solid #c8922a;
}

/* Dropdown sub-menu */
.mobile-menu > .has-children > a::after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 14px;
    color: #888;
    transition: transform 0.3s ease;
}

.mobile-menu > .has-children.active > a::after {
    transform: rotate(180deg);
}

.mobile-menu .dropdown {
    background: rgba(0,0,0,0.2);
    padding: 4px 0;
}

.mobile-menu > .has-children .dropdown a {
    font-size: 12px !important;
    color: #bbb !important;
    padding: 10px 20px 10px 32px !important;
    display: block;
    letter-spacing: 0.5px;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-menu > .has-children .dropdown a:hover {
    color: #c8922a !important;
    padding-left: 38px !important;
}

/* Contact info at bottom */
.contact-links {
    padding: 16px 20px !important;
    margin-bottom: 0 !important;
    border-top: 1px solid rgba(255,255,255,0.08);
    list-style: none;
}

.contact-links li {
    font-size: 12px !important;
    color: #aaa !important;
    margin-bottom: 8px !important;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.contact-links li:last-child {
    margin-bottom: 0 !important;
}

.contact-links li i {
    color: #c8922a;
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
    margin-right: 0 !important;
}

.contact-links li a {
    color: #aaa !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-links li a:hover {
    color: #c8922a !important;
}

/* Social icons at bottom */
.mobile-menu-inner .widget-social {
    padding: 12px 20px 0 !important;
    display: flex;
    gap: 8px;
    justify-content: flex-start !important;
}

.mobile-menu-inner .widget-social a {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 14px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 1px solid rgba(200,146,42,0.4) !important;
    background: transparent !important;
    color: #c8922a !important;
    transition: background 0.25s ease, color 0.25s ease !important;
}

.mobile-menu-inner .widget-social a:hover {
    background: #c8922a !important;
    color: #fff !important;
    border-color: #c8922a !important;
}

/* WhatsApp button – hide behind mobile menu when open */
.fix #whatsapp {
    z-index: 8000 !important;
}

/* Mobile menu overlay */
.mobile-menu-wrapper {
    z-index: 99999 !important;
}

/* Instagram color fix */
.instagram {
    background: #e1306c;
    color: white;
}


/* =============================================
   Legal Documents Section
   ============================================= */

.legal-section {
    background: #f8f9fb;
    padding: 70px 0 80px;
}

/* Header */
.legal-header {
    text-align: center;
    margin-bottom: 48px;
}

.legal-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c8922a;
    margin-bottom: 10px;
    position: relative;
    padding: 0 32px;
}

.legal-tag::before,
.legal-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 2px;
    background: #c8922a;
}

.legal-tag::before { left: 0; }
.legal-tag::after  { right: 0; }

.legal-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: "Poppins", sans-serif;
    margin: 0 0 12px;
    line-height: 1.2;
}

.legal-title span {
    color: #c8922a;
}

.legal-sub {
    font-size: 15px;
    color: #777;
    margin: 0 auto;
    max-width: 520px;
    line-height: 1.7;
}

/* Grid – 4 cards in a row */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.legal-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.legal-card:hover {
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.14);
    transform: translateY(-5px);
    text-decoration: none;
}

/* Image area */
.legal-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #eee;
}

.legal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.legal-card:hover .legal-img-wrap img {
    transform: scale(1.06);
}

/* Hover overlay on image */
.legal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.35s ease;
    color: #fff;
}

.legal-card:hover .legal-overlay {
    opacity: 1;
}

.legal-overlay i {
    font-size: 36px;
    color: #c8922a;
}

.legal-overlay span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

/* Card bottom bar */
.legal-card-body {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid #f0f0f0;
}

.legal-doc-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(200, 146, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-doc-icon i {
    font-size: 18px;
    color: #c8922a;
}

.legal-doc-info {
    flex: 1;
    min-width: 0;
}

.legal-doc-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    font-family: "Poppins", sans-serif;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.legal-doc-info p {
    font-size: 11px;
    color: #999;
    margin: 0;
}

.legal-doc-arrow {
    flex-shrink: 0;
}

.legal-doc-arrow i {
    font-size: 14px;
    color: #c8922a;
    transition: transform 0.3s ease;
}

.legal-card:hover .legal-doc-arrow i {
    transform: translate(2px, -2px);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .legal-title {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .legal-section {
        padding: 50px 0 60px;
    }

    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .legal-title {
        font-size: 26px;
    }

    .legal-sub {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
}
