:root {
  --modal-hdr-start: #0d3b66;
  --modal-hdr-end: #0d3b66;
}

.about-project {
    padding: 2vw 0;
    background: #faf8f4;
}

/* .about-logo {
    margin-bottom: 1.5vw;
} */

.about-logo img {
    width: 40%;
    height: 6vw;
    margin-left: -1vw;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.5s ease;
}

.about-content {
    max-width: 38rem;
}

.about-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    color: #7d534d
;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.2rem;
}

.about-tag::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 1.5rem;
    background: #7d534d
;
}

.about-content h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(2rem, 2.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #1c2b42;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1vw;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sec-h2 em {
    color: #7d534d
;
}




/* ==========================================
   PROJECT HIGHLIGHTS / AMENITIES
   ========================================== */
.project-highlights {
    background: #faf8f4;
    padding: 3vw 0;
}

.section-head {
    text-align: center;
    margin-bottom: 3vw;
}

.section-head span {
    display: block;
    color: #7d534d;
    font-size: 1vw;
    font-weight: 800;
    letter-spacing: 0.15vw;
    text-transform: uppercase;
}

.section-head h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2vw;
    font-weight: 700;
    color: #1c2b42;
    margin-top: 0.5vw;
}

.project-highlights .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1vw;
    padding: 0 2vw;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-item-icon {
    height: 6vw;
    width: 6vw;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #7d534d
;
}

.highlight-item img {
    width: 4vw;
    height: 4vw;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(32%) sepia(28%) saturate(700%) hue-rotate(320deg) brightness(85%) contrast(95%);
}

.highlight-item span {
    display: block;
    font-size: 0.95vw;
    letter-spacing: 0.08vw;
    color: #7d534d
;
    font-weight: 700;
    margin-bottom: 0.3vw;
    text-transform: uppercase;
}

.highlight-item h4 {
    text-transform: uppercase;
    font-size: 1vw;
    font-weight: 600;
    line-height: 1.4;
    color: #1a2332bd;
}


/* ==========================================
   PROJECT SPECIFICATIONS
   ========================================== */
.specifications-section {
    padding: 3vw 0;
    background: #faf8f4;
    position: relative;
    overflow: hidden;
}

/* Subtle decorative blobs for high-end look */
.specifications-section::before {
    content: "";
    position: absolute;
    top: -10vw;
    right: -10vw;
    width: 35vw;
    height: 35vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(125, 83, 77, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.specifications-section::after {
    content: "";
    position: absolute;
    bottom: -10vw;
    left: -10vw;
    width: 35vw;
    height: 35vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(28, 43, 66, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.section-heading {
    text-align: center;
    margin-bottom: 4vw;
    position: relative;
    z-index: 2;
}

.section-heading span {
    display: inline-block;
    color: #7d534d;
    font-size: 0.85vw;
    font-weight: 700;
    letter-spacing: 0.3vw;
    text-transform: uppercase;
    margin-bottom: 1vw;
}

.section-heading h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2.2vw;
    color: #1c2b42;
    font-weight: 700;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5vw 2vw;
    position: relative;
    z-index: 2;
}

.spec-card {
    position: relative;
    background: #ffffff;
    padding: 1vw 2vw;
    border: 1.5px solid rgba(28, 43, 66, 0.07);
    border-radius: 1.2vw;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    box-shadow: 0 0.8vw 3vw rgba(28, 43, 66, 0.02);
    overflow: hidden;
        border-color: rgba(125, 83, 77, 0.3);

}

/* Elegant top accent bar */
.spec-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #7d534d;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover styles for card */
/* .spec-card:hover {
    transform: translateY(-8px);
    border-color: rgba(125, 83, 77, 0.3);
    box-shadow: 0 1.5vw 4vw rgba(125, 83, 77, 0.08);
    background: #fffdfc;
} */

/* .spec-card:hover::before {
    transform: scaleX(1);
} */

.spec-card-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8vw;
}

.spec-icon {
    width: 4.2vw;
    height: 4.2vw;
    background: rgba(125, 83, 77, 0.06);
    border: 1px solid rgba(125, 83, 77, 0.15);
    border-radius: 0.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        /* background: #7d534d; */
    border-color: #7d534d;
    
}

.spec-icon img {
    width: 2vw;
    height: 2vw;
    object-fit: contain;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0) saturate(100%) invert(32%) sepia(28%) saturate(700%) hue-rotate(320deg) brightness(85%) contrast(95%);
}

.spec-card:hover .spec-icon {
    background: #7d534d;
    border-color: #7d534d;
    transform: translateY(-2px);
    box-shadow: 0 0.4vw 1.2vw rgba(125, 83, 77, 0.25);
}

.spec-card:hover .spec-icon img {
    filter: brightness(0) invert(1);
    transform: scale(1.08);
}

.spec-number {
    display: inline-block;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 4vw;
    font-weight: 700;
    color: rgba(28, 43, 66, 0.08);
    transition: color 0.4s ease;
        color: rgba(125, 83, 77, 0.25);

}

.spec-card:hover .spec-number {
    color: rgba(125, 83, 77, 0.25);
}

.spec-card h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.35vw;
    color: #1c2b42;
    margin: 0 0 0.8vw 0;
    font-weight: 700;
    transition: color 0.3s ease;
}

.spec-card:hover h3 {
    color: #7d534d;
}

.spec-card p {
    font-family: "Manrope", sans-serif;
    color: #1a1a1a;
    line-height: 1.65;
    font-size: 1vw;
    margin: 0;
}


/* ==========================================
   PROJECT GALLERY
   ========================================== */
.gallery-section {
    padding: 3vw 0;
    background: #faf8f4;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 12vw;
    gap: 1vw;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
    border-radius: 0.5vw;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}


/* ==========================================
   FLOOR PLANS
   ========================================== */
.floorplans-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3vw;
}

.floorplans-head {
    margin-bottom: 0;
}

.fp-nav {
    display: flex;
    gap: 0.8vw;
    flex-shrink: 0;
}

.fp-prev,
.fp-next {
    width: 3vw;
    height: 3vw;
    border: 1px solid #1c2b42;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    background: #fff;
}

.fp-prev:hover,
.fp-next:hover {
    background: #1c2b42;
    border-color: #1c2b42;
    color: #fff;
}

.floorplans {
    padding: 3vw 0;
    background: #faf8f4;
}

.floorplans-head span {
    color: #7d534d
;
    font-size: 0.9vw;
    letter-spacing: 0.15vw;
    font-weight: 700;
    text-transform: uppercase;
}

.floorplans-head h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2.8vw;
    color: #1c2b42;
    margin: 0.6vw 0;
}

.floorplans-head p {
    font-family: "Bricolage Grotesque", sans-serif;
    width: 35vw;
    color: #6b7280;
    font-size: 1vw;
}

.fp-card img {
    width: 100%;
    height: 18vw;
    object-fit: cover;
    transition: 0.5s;
}

.fp-card:hover img {
    transform: scale(1.05);
}

.fp-content {
    padding: 1vw 0;
}

.fp-content h3 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1vw;
    color: #1c2b42;
    margin-bottom: 0.3vw;
}

.fp-content p {
    font-family: "Bricolage Grotesque", sans-serif;
    color: #777;
    font-size: 0.8vw;
}

.fp-footer {
    margin-top: 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ==========================================
   ENQUIRY SECTION
   ========================================== */
.enquiry-section {
    background: #faf8f4;
    padding: 3vw 0;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    border: 1px solid rgba(125, 83, 77, 0.519);
}

.enquiry-form-wrap {
    padding: 3vw;
    border-right: 1px solid #7d534d;
}

.section-tag {
    display: block;
    color: #7d534d;
    font-size: 0.8vw;
    letter-spacing: 0.15vw;
    font-weight: 700;
    margin-bottom: 0.6vw;
}

.enquiry-form-wrap h2 {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 2.2vw;
    color: #1c2b42;
    margin-bottom: 2vw;
}

.form-group {
    margin-bottom: 1.2vw;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(28, 43, 66, 0.2);
    padding: 0.7vw 0;
    font-size: 0.9vw;
    color: #1c2b42;
    outline: none;
}

.form-group textarea {
    height: 5vw;
    resize: none;
}

.enquiry-form-wrap button {
    background: rgb(125, 83, 77);
    font-family: "Bricolage Grotesque", sans-serif;
    color: #fff;
    border: none;
    padding: 0.8vw 2.2vw;
    font-size: 0.85vw;
    cursor: pointer;
    transition: 0.3s;
}

.enquiry-form-wrap button:hover {
    background: #7d534d;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
}

.info-box {
    flex: 1;
    padding: 2vw 2.5vw;
    border-bottom: 1px solid #7d534d;
}

.info-box:last-child {
    border-bottom: none;
}

.info-box h4 {
    font-family: "Bricolage Grotesque", sans-serif;
    color: #7d534d;
    font-size: 1.1vw;
    margin-bottom: 0.6vw;
}

.info-box a,
.info-box p {
    display: block;
    color: #1c2b42;
    text-decoration: none;
    line-height: 1.8;
    font-size: 0.9vw;
}


/* ==========================================
   LOCATION MAP
   ========================================== */
.map-box {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.04);
}

.map-box iframe {
    width: 100%;
    height: 30vw;
    border: none;
    margin-top: 1.5vw;
    /* border-radius: 0.8vw; */
}


/* ==========================================
   LIGHTBOX MODAL
   ========================================== */
.lightbox-modal {
    position: fixed;
    z-index: 99999;
    inset: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: min(85vw, 85vw);
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    user-select: none;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 1.5vw;
    box-shadow: 0 2vw 5vw rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-modal.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 3vw;
    right: 3vw;
    width: 4.5vw;
    height: 4.5vw;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    color: #111827;
    font-size: 2.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0.4vw 1.5vw rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    z-index: 100000;
}

.lightbox-close:hover {
    background: #eaeaea;
    transform: scale(1.08);
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 4.5vw;
    height: 4.5vw;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 100000;
    user-select: none;
}

.lightbox-prev {
    left: 3vw;
}

.lightbox-next {
    right: 3vw;
}

.lightbox-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.08);
}


/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
/* Tablet */
@media (max-width: 991px) {
    .container {
        padding: 0 4vw;
    }

    /* Section Headings */
    .section-head {
        margin-bottom: 4vw;
    }
    .section-head span {
        font-size: 1.8vw;
        letter-spacing: 0.2vw;
    }
    .section-head h2 {
        font-size: 4vw;
        margin-top: 1vw;
    }

    .section-heading span {
        font-size: 1.8vw;
        letter-spacing: 0.2vw;
        margin-bottom: 1vw;
    }
    .section-heading h2 {
        font-size: 4vw;
    }

    /* About Project */
    .about-logo img {
        width: 25vw;
        height: auto;
        margin-left: 0;
    }
    .about-grid {
        gap: 4vw;
        display: flex;
        flex-direction: column;
    }
    .about-content h2 {
        font-size: 4.5vw;
    }

    /* Project Highlights */
    .project-highlights {
        padding: 4vw 0;
    }
    .project-highlights .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw 2vw;
    }
    .highlight-item {
        padding: 0 2vw;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 3vw;
    }
    .highlight-item:nth-child(even) {
        border-right: none;
    }
    .highlight-item:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }
    .highlight-item-icon {
        height: 8vw;
        width: 8vw;
        flex-shrink: 0;
    }
    .highlight-item img {
        width: 5vw;
        height: 5vw;
    }
    .highlight-item span {
        font-size: 1.5vw;
        letter-spacing: 0.1vw;
        margin-bottom: 0.5vw;
    }
    .highlight-item h4 {
        font-size: 2vw;
    }

    /* Specifications */
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw 2.5vw;
    }
    .spec-card {
        padding: 4vw 3vw;
        border-radius: 1.5vw;
    }
    .spec-card-header {
        margin-bottom: 2.5vw;
    }
    .spec-icon {
        width: 7vw;
        height: 7vw;
        border-radius: 1.2vw;
    }
    .spec-icon img {
        width: 3.5vw;
        height: 3.5vw;
    }
    .spec-number {
        font-size: 3vw;
    }
    .spec-card h3 {
        font-size: 2.2vw;
        margin-bottom: 1vw;
    }
    .spec-card p {
        font-size: 1.6vw;
        line-height: 1.6;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 25vw;
        gap: 2vw;
    }
    .gallery-item {
        border-radius: 1.5vw;
    }

    /* Floor Plans */
    .floorplans-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 3vw;
        margin-bottom: 4vw;
    }
    .floorplans-head p {
        width: 100%;
        font-size: 2vw;
    }
    .floorplans-head h2 {
        font-size: 4vw;
        margin: 1vw 0;
    }
    .floorplans-head span {
        font-size: 1.8vw;
        letter-spacing: 0.2vw;
    }
    .fp-nav {
        align-self: flex-end;
    }
    .fp-prev, .fp-next {
        width: 6vw;
        height: 6vw;
    }
    .fp-card img {
        height: 30vw;
    }
    .fp-content h3 {
        font-size: 2vw;
    }
    .fp-content p {
        font-size: 1.5vw;
    }

    /* Enquiry Grid */
    .enquiry-grid {
        grid-template-columns: 1fr;
    }
    .enquiry-form-wrap {
        border-right: none;
        border-bottom: 1px solid #7d534d;
        padding: 4vw;
    }
    .enquiry-form-wrap h2 {
        font-size: 4vw;
        margin-bottom: 3vw;
    }
    .section-tag {
        font-size: 2.8vw;
        letter-spacing: 0.2vw;
    }
    .form-group {
        margin-bottom: 3vw;
    }
    .form-group input, .form-group textarea {
        padding: 1.5vw 0;
        font-size: 2vw;
    }
    .form-group textarea {
        height: 15vw;
    }
    .enquiry-form-wrap button {
        padding: 1.5vw 3vw;
        font-size: 1.8vw;
        width: 100%;
    }
    .info-box {
        padding: 4vw;
    }
    .info-box h4 {
        font-size: 2.2vw;
    }
    .info-box a, .info-box p {
        font-size: 2vw;
    }

    /* Map Box */
    .map-box iframe {
        height: 40vw;
        /* border-radius: 1.5vw; */
        margin-top: 2vw;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    /* Section Headings */
    .section-head h2 {
        font-size: 24px;
        margin-top: 6px;
    }
    .section-head span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .section-heading span {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }
    .section-heading h2 {
        font-size: 24px;
    }

    /* About Project logo adjustment */
    .about-logo img {
        width: 150px;
        height: auto !important;
        margin-left: 0;
    }
    .about-grid {
        gap: 24px;
    }
    .about-content h2 {
        font-size: 24px;
    }
    .about-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Project Highlights */
    .project-highlights .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .highlight-item {
        gap: 16px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 16px;
        padding-left: 0;
        padding-right: 0;
    }
    .highlight-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .highlight-item-icon {
        height: 56px;
        width: 56px;
        padding: 10px;
        flex-shrink: 0;
    }
    .highlight-item img {
        width: 32px;
        height: 32px;
    }
    .highlight-item span {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 4px;
    }
    .highlight-item h4 {
        font-size: 13px;
    }

    /* Specifications */
    .specifications-section {
        padding: 48px 0;
    }
    .spec-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .spec-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    .spec-card-header {
        margin-bottom: 16px;
    }
    .spec-icon {
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }
    .spec-icon img {
        width: 24px;
        height: 24px;
    }
    .spec-number {
        font-size: 30px;
    }
    .spec-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .spec-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
        gap: 12px;
    }
    .gallery-item.large, .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-item {
        border-radius: 8px;
    }

    /* Floor Plans */
    .floorplans-head h2 {
        font-size: 24px;
    }
    .floorplans-head span {
        font-size: 11px;
    }
    .floorplans-head p {
        font-size: 13px;
    }
    .fp-prev, .fp-next {
        width: 40px;
        height: 40px;
    }
    .fp-card img {
        height: 200px;
    }
    .fp-content h3 {
        font-size: 15px;
    }
    .fp-content p {
        font-size: 12px;
    }

    /* Enquiry */
    .enquiry-form-wrap h2 {
        font-size: 24px;
    }
    .form-group input, .form-group textarea {
        font-size: 14px;
        padding: 8px 0;
    }
    .form-group textarea {
        height: 90px;
    }
    .enquiry-form-wrap button {
        font-size: 14px;
        padding: 12px;
    }
    .info-box h4 {
        font-size: 15px;
    }
    .info-box a, .info-box p {
        font-size: 14px;
    }

    /* Map Box */
    .map-box iframe {
        height: 240px;
    }

    /* Lightbox Modal */
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .lightbox-prev {
        left: 15px;
    }
    .lightbox-next {
        right: 15px;
    }
    .lightbox-content {
        max-width: 92vw;
    }

    .section-heading {
        margin-bottom: 30px;
    }
}

/* ===================== BROCHURE SECTION ===================== */
.brochure-sec {
  background: #7d534d; 
  padding: 2.78vw 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brochure-inner {
  max-width: 88.89vw;
  width: 100%;
  margin: 0 auto;
}

.brochure-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  flex-wrap: wrap;
}

.brochure-btn {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  height: 64px;
  width: 260px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brochure-btn:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.brochure-btn-icon-box {
  height: 100%;
  width: 76px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 12px;
  clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.brochure-btn:hover .brochure-btn-icon-box {
  background: #f1f1f1;
}

.brochure-webp-icon {
  width: clamp(24px, 3.06vw, 36px);
  height: clamp(24px, 6.11vw, 36px);
  object-fit: contain;
}

.brochure-btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 14px;
  text-align: left;
}

.brochure-btn-text .kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.brochure-btn-text .main {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .brochure-sec {
    padding: 40px 20px;
  }
  .brochure-btn-group {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  .brochure-btn {
    width: 100%;
    max-width: 280px;
  }
}

