body {
    background-color: #fafafa;
    font-family: "Lato", sans-serif !important;
}

.new-btn {
    border-radius: 10px;
    padding: 10px 25px;
    font-size: 16px;
    text-transform: inherit;
    font-weight: 500;
}

.z-1{
    z-index: -1;
}

.red-orange{
    color: #e13c4c  !important;
}


.bg-light-pink {
    background-color: #faf4e4;
}

.section-wrap {
    padding: 60px 20px;
    width: 100%;
}

/* LEFT SIDE */
.main-heading {
    font-weight: 600;
    font-size: 55px;
    /* line-height: 48px; */
    margin-bottom: 26px;
}

.main-heading .highlight {
    color: #e13c4c;
}

.main-heading .italic {

    font-style: italic;
    font-weight: 700;
    color: #e13c4c;
}

.bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    color: #1d1a1a;
}

.bullet-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 9px;
}

.bullet-list li::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/hotel-growth/list.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.audit-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1d1a1a;
}

.photo-box {
    height: 300px;
    object-fit: cover;
    width: 1000%;
    border-radius: 15px;
}

.join-heading {
    font-size: 24px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #1d1a1a;
}

.join-text {
    font-size: 18px;
    color: #000000;
    font-style: italic;
}

/* RIGHT SIDE — Card */
.form-card {
    background: #fff;
    border-radius: 18px;
    padding: 36px 32px 28px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    max-width: 450px;
    width: 100%;
}

.card-headline {
    font-weight: 700;
    font-size: 25px;
    color: #e13c4c;
    line-height: 30px;
    margin-bottom: 10px;
}

.card-subhead {
    font-size: 17px;
    font-weight: 600;
    color: #1e1e1e;
    margin-bottom: 22px;
}

.form-card .form-control {
    border: 1.5px solid #d8d8d8;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #555;
    background: #fff;
    margin-bottom: 14px;
    box-shadow: none;
    transition: border-color 0.2s;
}

.form-card .form-control:focus {
    border-color: #e13c4c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(214, 35, 42, 0.1);
}

.form-card .form-control::placeholder {
    color: #aaa;
}

.btn-callback {
    background-color: #e13c4c;
    color: #fff;
    border: none;
    border-radius: 8px;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    margin-top: 4px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-callback:hover {
    background-color: #b81e24;
    transform: translateY(-1px);
}

.no-spam {
    text-align: center;
    font-size: 12px;
    color: #1e1e1e;
    margin-top: 10px;
    font-weight: 600;
}


.service-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.07);
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;

    transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

/* smooth lift + scale */
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* soft gradient overlay */
/* .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 100, 100, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
} */

.service-card:hover::before {
    opacity: 1;
}

/* icon area */
.icon-wrap {
    padding: 30px;
    transition: transform 0.35s ease;
}

/* icon zoom */
.service-card:hover .icon-wrap {
    transform: scale(1.08);
}

/* label */
.card-label {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    line-height: 1.35;
    margin: 0;
    padding: 25px 15px;
    background-color: #f8f5e6;

    transition: all 0.35s ease;
}

/* label hover */
.service-card:hover .card-label {
    background-color: #e13c4c;
    color: #ffffff;
}

/* ── second section heading ── */
.section-heading {
    font-size: 40px;
    margin-bottom: 40px;
}

.why-heading {

    font-size: 36px;
    font-weight: 700;
}

.why-heading .accent {
    color: #e13c4c;
}

/* ── Red section wrapper ── */
.why-section {
    background: #e13c4c;
    overflow: hidden;
    padding: 50px 0;

}

/* ── Grid divider lines ── */
.quad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    position: relative;
}

/* horizontal divider */
.quad-grid::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, #ffffff 25%, #ffffff 75%, transparent 100%);
    z-index: 1;
}

/* vertical divider */
.quad-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent 0%, #ffffff 25%, #ffffff 75%, transparent 100%);
    z-index: 1;
}

/* ── Each quadrant ── */
.quad-item {
    padding: 44px 36px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background 0.28s ease;
}

/* .quad-item:hover {
    background: rgba(255, 255, 255, 0.10);
} */

/* ── Icon box ── */
.icon-box {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background 0.28s ease, border-color 0.28s ease;
    padding: 10px;
}

/* .quad-item:hover .icon-box {
    background: rgba(255, 255, 255, 0.18);
    border-color: #fff;
} */


/* ── Label ── */
.quad-label {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
}


.hoetel {
    border-radius: 16px;
}

.blob-wrap {
    padding: 80px 0;
}


footer {
    background: #f8f5e6;
    padding: 28px 0 28px;
}

.footer-brand {
    font-size: 26px;
    font-weight: 700;
    color: #e13c4c;
    text-decoration: none;
    line-height: 1;
    display: inline-block;
    margin-bottom: 6px;
}

.footer-copy {
    font-size: 14px;
    color: #2b2b2b;
    margin: 0;
}

.contact-heading {
    font-size: 16px;
    font-weight: 600;
    color: #e13c4c;
    margin-bottom: 10px;
}



.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #2b2b2b;
    cursor: pointer;

    transition: all 0.3s ease;
}

/* icon style */
.contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: #e03c31;

    transition: all 0.3s ease;
}

/* text smooth transition */
.contact-item span {
    transition: color 0.3s ease;
}

/* 🔥 hover effect */
.contact-item:hover {
    transform: translateX(6px);
}

/* icon animation */
.contact-item:hover svg {
    fill: #000;
    transform: scale(1.2) rotate(-5deg);
}

/* text color change */
.contact-item:hover span {
    color: #e03c31;
}

@media (max-width: 991px) {
    .main-heading {
        font-size: 32px;
        line-height: 38px;
    }

    .form-card {
        padding: 28px 20px 22px;
    }

    .photo-box {
        max-width: 100%;
    }

    .new-logo img {
        width: 30px !important;
    }

    .blob-wrap {
        padding: 50px 0;
    }

    .section-heading {
        font-size: 24px;
    }

    .why-heading {
        font-size: 22px;
    }

    .icon-box {
        width: 80px;
        height: 80px;
    }

    .quad-item {
        padding: 30px 20px;
    }

    .new-btn {
        font-size: 14px;
    }

}