/* =====================================================
   OFFERS HERO
===================================================== */
.offers-hero {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
}

.offers-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offers-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.offers-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.offers-content span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.offers-content h1 {
    font-size: 54px;
    font-weight: 700;
    margin-bottom: 20px;
}

.offers-content>p {
    width: 700px;
    max-width: 90%;
    line-height: 1.8;
    margin-bottom: 60px;
    color: #f5f5f5;
}
/* =====================================================
   SPLIT
===================================================== */
.offers-split {
    width: 85%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, .4);
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.offer-side {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 320px;
}

.offer-side:first-child {
    border-right: 1px solid rgba(255, 255, 255, .4);
}

.offer-box {
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* =====================================================
   TEXT
===================================================== */
.offer-box h2 {
    font-size: 110px;
    line-height: 1;
    margin: 0;
    font-weight: 700;
}

.offer-box h3 {
    margin-top: 10px;
    font-size: 34px;
    font-weight: 600;
}

.offer-box p {
    margin-top: 10px;
    margin-bottom: 45px;
    font-size: 20px;
    color: #f3f3f3;
}
/* =====================================================
   LINKS
===================================================== */
.offer-action {
    display: flex;
    gap: 35px;
}

.offer-action a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .5px;
    position: relative;
}

.offer-action a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #005d81;
    transition: .3s;
}

.offer-action a:hover::after {
    width: 100%;
}

.offer-action a:hover {
    color: #039dda;
    transition: .3s;
}

/* SECTION */
.offers-section {
    padding: 60px 10%;
    background: #f8f9fb;
    color: #fff;
    font-family: Arial, sans-serif;
}

.offers-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: bold;
    color: #222;
}

/* CONTAINER */
.offers-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CARD */
.offer-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.offer-image {
    width: 35%;
    min-width: 280px;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.offer-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    width: 65%;
}

.offer-subtitle {
    font-size: 14px;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-heading {
    color: #222;
    font-size: 22px;
    margin: 0;
}

.offer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* BUTTON */
.offer-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 10px 18px;
    background: #005d81;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    width: fit-content;
    transition: 0.3s;
}

.offer-btn:hover {
    background: #f3f3f3;
    color: #005d81;
}

.partner-section {
    padding: 60px 10%;
    background: #d4d4d4;
    color: #fff;
}

.partner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* TEXT SIDE */
.partner-text {
    flex: 1;
}

.partner-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.partner-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 20px;
}

/* BUTTON */
.partner-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #005d81;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.partner-btn:hover {
    color: #005d81;
    background: #d4d4d4;
}

/* IMAGE SIDE */
.partner-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.partner-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}