:root {
    --bg: #fef7f0;
    --peach: #fbeadb;
    --peach-strong: #f6e0ca;
    --accent: #e67323;
    --brown: #543926;
    --muted-brown: #a26327;
    --text: #2b2521;
    --soft-border: rgba(230,115,35,.34);
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    color: var(--text);

    background: var(--bg);

    font-family:
        "Inter",
        sans-serif;

    font-size: 14px;
}


a {
    text-decoration: none;
}


.section-space {
    padding:
        72px
        0;
}


/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.hero-card {
    min-height: 525px;

    position: relative;

    background: var(--peach);

    border-radius: 24px;
}


.hero-copy {
    position: relative;

    z-index: 2;

    padding:
        54px
        42px;
}


.hero-title {
    color: #0d0d0d;

    font-family:
        "Lora",
        serif;

    font-size:
        clamp(
            52px,
            5vw,
            64px
        );

    font-weight: 700;

    line-height: .98;
}


.hero-title span {
    font-size: .94em;
}


.ornament-line,
.heading-line {
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent 0,
            var(--accent) 18%,
            var(--accent) 82%,
            transparent 100%
        );
}


.ornament-line {
    width:
        min(
            496px,
            82%
        );
}


.hero-subtitle {
    font-family:
        "Lora",
        serif;

    font-size: 32px;

    font-weight: 400;
}


.hero-description {
    max-width: 610px;

    font-size: 20px;

    line-height: 1.08;
}


.hero-image-wrap {
    height: 100%;

    min-height: 525px;

    position: relative;

    overflow: hidden;

    border-radius: 24px;
}


.hero-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position:
        center top;
}


.hero-image-wrap::after {
    content: "";

    position: absolute;

    inset: 0;

    box-shadow:
        inset
        0
        0
        0
        1px
        rgba(255,255,255,.15);

    pointer-events: none;
}


.social-row a {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border:
        1px solid
        var(--brown);

    border-radius: 50%;

    color: var(--brown);

    font-size: 18px;
}


.side-social {
    position: absolute;

    top: 180px;

    right: -34px;
}


.side-social a {
    color: var(--text);

    font-size: 18px;
}


.hero-decor {
    width: 110px;
    height: 180px;

    position: absolute;

    border:
        2px solid
        rgba(230,115,35,.18);

    border-radius:
        70%
        20%
        70%
        20%;

    transform:
        rotate(30deg);
}


.decor-a {
    top: -25px;

    right: 14%;
}


.decor-b {
    bottom: -55px;

    left: -35px;

    transform:
        rotate(215deg);
}


/*
|--------------------------------------------------------------------------
| SECTION TITLE
|--------------------------------------------------------------------------
*/

.section-heading h2 {
    margin-bottom: 14px;

    color: var(--brown);

    font-family:
        "Lora",
        serif;

    font-size: 38px;

    font-weight: 600;
}


.section-heading p {
    margin-top: 18px;

    font-size: 20px;
}


.heading-line {
    width: 430px;

    max-width: 80%;

    margin:
        0
        auto;
}


.heading-line.wide {
    width: 980px;

    max-width: 90%;
}


/*
|--------------------------------------------------------------------------
| OFFERING CARDS
|--------------------------------------------------------------------------
*/

.offering-card {
    min-height: 264px;

    padding:
        30px
        24px;

    display: flex;

    flex-direction: column;

    align-items: center;

    background:
        rgba(
            242,
            217,
            193,
            .30
        );

    border:
        1px solid
        var(--accent);

    border-radius: 20px;

    text-align: center;

    transition:
        .2s ease;
}


.offering-card:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0
        10px
        26px
        rgba(84,57,38,.08);
}


.offering-icon {
    width: 60px;
    height: 60px;

    margin-bottom: 20px;

    display: grid;

    place-items: center;

    background: #f2d9c1;

    border-radius: 50%;

    box-shadow:
        0
        4px
        4px
        rgba(0,0,0,.12);

    color: var(--brown);

    font-size: 28px;
}


.offering-card h3 {
    min-height: 38px;

    display: flex;

    align-items: center;

    color: var(--brown);

    font-family:
        "Lora",
        serif;

    font-size: 16px;

    font-weight: 700;
}


.offering-card p {
    flex: 1;

    color:
        rgba(
            68,
            68,
            68,
            .84
        );

    font-size: 13px;

    line-height: 1.1;
}


.offering-card a {
    color: var(--accent);

    font-size: 12px;

    font-weight: 600;
}


/*
|--------------------------------------------------------------------------
| EVENT / CASE CARD
|--------------------------------------------------------------------------
*/

.content-card {
    min-height: 440px;

    padding:
        46px
        32px;

    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    background: var(--bg);

    box-shadow:
        0
        4px
        6px
        rgba(0,0,0,.17);

    text-align: center;
}


.content-card::before {
    content: "";

    width: 180px;
    height: 180px;

    position: absolute;

    bottom: -70px;

    left: -60px;

    border:
        1px solid
        rgba(230,115,35,.12);

    border-radius:
        50%
        0
        50%
        0;

    transform:
        rotate(25deg);
}


.content-card h3 {
    position: relative;

    z-index: 1;

    color: #000;

    font-family:
        "Lora",
        serif;

    font-size: 25px;

    font-weight: 600;
}


.content-card p {
    position: relative;

    z-index: 1;

    color: #000;

    font-size: 15px;

    line-height: 1.35;
}


.event-meta {
    color: var(--muted-brown);

    font-family:
        "Lora",
        serif;

    font-size: 18px;
}


.btn-brown {
    position: relative;

    z-index: 1;

    padding:
        10px
        36px;

    background: var(--brown);

    border-color: var(--brown);

    border-radius: 5px;

    color: #fff;
}


.btn-brown:hover {
    background: #3f2c1e;

    border-color: #3f2c1e;

    color: #fff;
}


.case-card {
    min-height: 390px;

    justify-content: flex-start;

    gap: 40px;
}


.case-card h3 {
    font-size: 24px;
}


/*
|--------------------------------------------------------------------------
| BENEFITS
|--------------------------------------------------------------------------
*/

.benefit-grid {
    padding-top: 35px;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:
        48px
        32px;

    align-items: start;
}


.benefit-card {
    min-height: 314px;

    padding:
        64px
        28px
        28px;

    display: flex;

    align-items: center;

    gap: 20px;

    background:
        rgba(
            242,
            217,
            193,
            .30
        );

    border:
        1px solid
        var(--soft-border);

    border-radius: 20px;

    box-shadow:
        0
        4px
        3px
        rgba(0,0,0,.16);
}


.benefit-card.tall {
    min-height: 424px;
}


.benefit-card.offset-up {
    transform:
        translateY(-48px);
}


.benefit-card h3 {
    color: #000;

    font-family:
        "Lora",
        serif;

    font-size: 25px;

    font-weight: 600;
}


.benefit-card p {
    color: #000;

    font-size: 15px;

    line-height: 1.45;
}


.benefit-card > i {
    flex:
        0
        0
        auto;

    color:
        rgba(
            230,
            115,
            35,
            .72
        );

    font-size: 82px;
}


/*
|--------------------------------------------------------------------------
| TESTIMONIAL
|--------------------------------------------------------------------------
*/

.testimonials-section {
    position: relative;
}


.testimonial-card {
    max-width: 700px;

    min-height: 320px;

    padding:
        72px
        50px
        50px;

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: #fff;

    border-radius: 20px;

    box-shadow:
        1px
        0
        12px
        rgba(13,13,13,.85);

    text-align: center;
}


.testimonial-card p {
    margin: 0;

    color: #000;

    font-size: 26px;

    line-height: 1.35;
}


.testimonial-card strong {
    color: #000;

    font-size: 24px;
}


.quote-mark {
    position: absolute;

    top: 14px;

    left: 50%;

    color: var(--accent);

    font-family:
        "Lora",
        serif;

    font-size: 92px;

    line-height: 1;

    transform:
        translateX(-50%);
}


.testimonial-arrow {
    width: 50px;

    height: 50px;

    top: 50%;

    background: var(--accent);

    border-radius: 50%;

    opacity: .75;

    transform:
        translateY(-50%);
}


.carousel-control-prev.testimonial-arrow {
    left: 7%;
}


.carousel-control-next.testimonial-arrow {
    right: 7%;
}


/*
|--------------------------------------------------------------------------
| CONTACT
|--------------------------------------------------------------------------
*/

.contact-intro {
    min-height: 520px;

    padding: 36px;

    background: var(--bg);

    box-shadow:
        0
        4px
        4px
        rgba(0,0,0,.22);
}


.contact-intro h2 {
    color: #000;

    font-family:
        "Lora",
        serif;

    font-size: 40px;

    font-weight: 600;
}


.contact-intro p {
    color: #000;

    font-size: 19px;
}


.lotus-symbol {
    margin-bottom: 8px;

    color: var(--brown);

    font-size: 58px;

    line-height: 1;
}


.contact-form {
    min-height: 520px;

    padding:
        80px
        54px
        48px;

    background: var(--bg);
}


.contact-form label {
    margin-bottom: 10px;

    display: block;

    color: #000;

    font-size: 20px;

    font-weight: 500;
}


.contact-form .form-control {
    padding:
        .35rem
        0
        .6rem;

    background: transparent;

    border: 0;

    border-bottom:
        1px solid
        rgba(43,37,33,.55);

    border-radius: 0;

    box-shadow: none;
}


/*
|--------------------------------------------------------------------------
| GET IN TOUCH
|--------------------------------------------------------------------------
*/

.info-card {
    min-height: 340px;

    padding:
        52px
        28px
        36px;

    background: var(--peach-strong);

    border-radius: 20px;

    box-shadow:
        0
        4px
        4px
        rgba(0,0,0,.18);
}


.info-icon {
    width: 112px;

    height: 112px;

    margin:
        0
        auto
        22px;

    display: grid;

    place-items: center;

    color: #fff;

    font-size: 76px;
}


.info-card h3 {
    color: #000;

    font-size: 30px;

    font-weight: 600;
}


.info-card p,
.info-card a {
    color:
        rgba(
            43,
            37,
            33,
            .84
        );

    font-size: 24px;
}


/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width: 1199.98px) {

    .hero-image-wrap {
        min-height: 470px;
    }


    .hero-card {
        min-height: auto;
    }


    .hero-description {
        font-size: 18px;
    }


    .benefit-grid {
        gap: 24px;
    }

}


@media(max-width: 991.98px) {

    .section-space {
        padding:
            58px
            0;
    }


    .hero-copy {
        padding:
            56px
            30px
            38px;
    }


    .hero-image-wrap {
        min-height: 520px;

        border-radius:
            0
            0
            24px
            24px;
    }


    .benefit-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }


    .benefit-card.offset-up {
        transform: none;
    }

}


@media(max-width: 767.98px) {

    .hero-title {
        font-size: 44px;
    }


    .hero-subtitle {
        font-size: 26px;
    }


    .hero-description {
        font-size: 16px;

        line-height: 1.35;
    }


    .hero-image-wrap {
        min-height: 430px;
    }


    .section-heading h2 {
        font-size: 32px;
    }


    .section-heading p {
        font-size: 16px;
    }


    .offering-card {
        min-height: 240px;

        padding:
            26px
            16px;
    }


    .benefit-grid {
        grid-template-columns:
            1fr;
    }


    .benefit-card,
    .benefit-card.tall {
        min-height: unset;
    }


    .testimonial-card {
        min-height: 290px;

        padding:
            70px
            28px
            36px;

        margin-inline:
            48px !important;
    }


    .testimonial-card p {
        font-size: 19px;
    }


    .testimonial-card strong {
        font-size: 18px;
    }


    .info-card {
        min-height: 300px;
    }

}


@media(max-width: 575.98px) {

    .section-space {
        padding:
            46px
            0;
    }


    .hero-section .container-xl {
        padding-inline: 14px;
    }


    .hero-copy {
        padding:
            42px
            20px
            30px;
    }


    .hero-title {
        font-size: 38px;
    }


    .hero-image-wrap {
        min-height: 360px;
    }


    .row-cols-2 > * {
        width: 100%;
    }


    .content-card {
        min-height: auto;

        padding:
            38px
            24px;

        gap: 24px;
    }


    .content-card h3 {
        font-size: 22px;
    }


    .contact-form {
        padding:
            40px
            22px;
    }


    .info-card p,
    .info-card a {
        font-size: 20px;
    }

}


/* ==============================================================
   HEADER RIGHT BUTTON GAP FIX
============================================================== */

/* Header-এর button column */
.cms-header-row .cms-layout-column:has(.cms-header-button) {
    justify-content: flex-end;
    gap: 8px;
}

/* Each button wrapper আর full width নেবে না */
.cms-header-row .cms-layout-column:has(.cms-header-button) .cms-button-wrap {
    width: auto !important;
    flex: 0 0 auto;
}

/* Button-এর extra margin remove */
.cms-header-row .cms-header-button {
    margin: 0 !important;
}