/* What do we offer Section CSS */
.what-we-offer-section {
    position: relative;
    overflow: hidden;
}

.offer-tiles-slider {
    position: relative;
    width: 100%;
    padding-bottom: 80px !important;
    /* Space for pagination */
}

.offer-tiles-slider .swiper-wrapper {
    height: auto;
}

.offer-slider-btn-grp {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
    padding: 0 15px;
}

.offer-slider-btn-grp .slider-btn {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offer-slider-btn-grp .slider-btn:hover {
    background: rgba(191, 154, 114, 1);
    border-color: rgba(191, 154, 114, 1);
}

.offer-slider-btn-grp .slider-btn svg {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.offer-slider-btn-grp .slider-btn:hover svg {
    stroke: #fff;
}

.offer-tiles-slider .swiper-pagination {
    bottom: 0 !important;
}

.offer-tiles-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(191, 154, 114, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.offer-tiles-slider .swiper-pagination-bullet-active {
    background: rgba(191, 154, 114, 1);
    width: 30px;
    border-radius: 10px;
}

/* Offer Tile Container */
.offer-tile {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 4px;
    /* Sharper, more professional corners */
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: #000;
}

.offer-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.4) 60%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
    transition: opacity 0.6s ease;
}

.offer-tile:hover {
    transform: none;
    /* Removed lift effect for more stability */
}

/* Background Image */
.offer-tile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(0.85) contrast(1.1);
}

.offer-tile:hover .offer-tile-bg {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.1);
}

/* Content Box - Bottom Overlay Style */
.offer-tile-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    background: transparent;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.offer-tile:hover .offer-tile-content {
    padding-bottom: 40px;
    background: transparent !important;
    /* Ensure it stays transparent */
}

/* Typography - Marcellus Editorial */
.offer-tile-content h3 {
    color: #fff !important;
    /* Force white text */
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
    font-family: 'Marcellus', serif;
    letter-spacing: 0.5px;
    transition: transform 0.4s ease;
}

.offer-tile:hover .offer-tile-content h3 {
    color: #fff !important;
    /* Keep it white on hover */
    transform: translateY(-5px);
}

/* Service Info Metadata */
.service-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.service-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-info i {
    font-size: 16px;
    color: #bf9a72;
}

/* Button - View Details Style */
.offer-btn {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    padding: 0;
    background: transparent;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.offer-tile:hover .offer-btn {
    opacity: 1;
    transform: translateY(0);
    color: #fff !important;
}

.offer-btn span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.offer-btn:hover span {
    border-color: #fff;
}

/* Button - Minimalist Signature Style */
.offer-btn {
    display: inline-flex;
    align-items: center;
    color: #bf9a72;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: none;
    padding: 0;
    background: transparent;
}

.offer-btn::before {
    display: none;
}

.offer-btn:hover {
    color: #1a1a1a;
    box-shadow: none;
    transform: translateX(10px);
}

.offer-btn::after {
    content: '→';
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.offer-btn:hover::after {
    transform: translateX(5px);
}

/* Custom Branding for InnRise */
.header-logo-text {
    color: #fff !important;
    font-size: 28px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-family: 'Merriweather', serif;
    /* Standard premium font for headers */
    display: inline-block;
    transition: all 0.3s ease;
}

.header-logo:hover .header-logo-text {
    color: rgba(191, 154, 114, 1) !important;
    /* Subtle theme color hover */
}




.mobile-logo-wrap .header-logo-text {
    font-size: 22px;
    /* Adjusted for mobile navbar */
}


/* Responsive Design */
@media (max-width: 1199px) {
    .offer-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .offer-tiles-wrapper {
        min-height: 1025px;
        /* (500*2) + gap */
    }

    .offer-tile {
        height: 500px;
    }

    .offer-tile-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .offer-group {
        grid-template-columns: 1fr;
        gap: 30px;
        /* More breathing room */
        animation: none;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
    }

    .offer-tiles-wrapper {
        min-height: auto;
    }

    .offer-tile {
        height: 480px;
        /* Slightly taller for better proportions */
        border-radius: 8px;
        /* Slightly more rounded on mobile for "friendlier" feel */
    }

    .offer-tile-content {
        padding: 30px 25px;
    }

    .offer-tile-content h3 {
        font-size: 26px;
        /* Larger, more readable */
        margin-bottom: 10px;
    }

    .service-info {
        gap: 10px;
        font-size: 13px;
        margin-bottom: 15px;
    }

    .offer-btn {
        opacity: 1;
        /* Always visible on mobile */
        transform: none;
        font-size: 14px;
        display: inline-block;
        margin-top: 5px;
    }

    .offer-btn span {
        border-bottom-color: #bf9a72;
        /* Always highlighted on mobile */
    }
}