
.rts-banner-area-one .rts-hero-banner {
  height: 550px;
}

.offer-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

/* Overlay */
.offer-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* overlay strength */
    z-index: 1;
}

/* Content above overlay */
.offer-wrapper > * {
    position: relative;
    z-index: 2;
}

.offer-wrapper .rts-btn.with-arrow i {
    transform: unset;
}

.trip-wrapper .image-area {
    width: 100%;
    height: 200px;              /* same height for all */
    overflow: hidden;
    border-radius: 10px;
}

.trip-wrapper .image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* no stretching */
    display: block;
}

.destination-slider img{
    height: 250px;
    width: 100%;
}


.counter-wrapper .icon i {
    font-size: 42px;
    color: #c89b3c;        /* luxury gold look */
}

.counter-wrapper .title {
    margin-bottom: 6px;
    font-weight: 600;
}

.counter-wrapper .done {
    font-size: 15px;
    opacity: 0.85;
}


/* CTA container */
.cta-section-inner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Overlay */
.cta-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.45)
    );
    border-radius: 10px;
    z-index: 1;
}

/* Content above overlay */
.cta-section-inner > * {
    position: relative;
    z-index: 2;
}

.cta-section-inner .title,
.cta-section-inner .desc {
    color: #fff;
}

/* Buttons wrapper */
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Base button */
.cta-btn {
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Primary (Register) */
.cta-btn-primary {
    background: #c89b3c;
    color: #fff;
}

.cta-btn-primary:hover {
    background: #b0892f;
    transform: translateY(-2px);
}

/* Outline (Login) */
.cta-btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.cta-btn-outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section-inner {
        flex-direction: column;
        text-align: center;
    }
}

.header-style-one-wrapper .left-area{
    align-items: unset;
}

.header-logo{
    height: 85px;
}
.logo-design{
    background: red;
    padding: 10px;
    margin-top: 35px;
}

