.welcome {
    padding: 90px 8%;
    background: #fff;
}

.welcome-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.welcome-text {
    flex: 1;
}

.subtitle {
    display: inline-block;
    color: #0d6efd;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.welcome-text h2 {
    font-size: 46px;
    color: #222;
    line-height: 1.2;
    margin-bottom: 25px;
}

.welcome-text p {
    font-size: 17px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 18px;
}

.welcome-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: .3s;
}

.welcome-btn:hover {
    background: #084db5;
}

.welcome-image {
    flex: 1;
}

.welcome-image img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.offers {
    padding: 90px 8%;
    background: #f8f9fb;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: #0d6efd;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-title h2 {
    margin-top: 12px;
    font-size: 42px;
    color: #222;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.offer-content {
    padding: 28px;
}

.offer-content h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 15px;
}

.offer-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 22px;
}

.offer-content a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.offer-content a:hover {
    text-decoration: underline;
}

.offer-button {
    text-align: center;
    margin-top: 50px;
}

.view-offers {
    display: inline-block;
    padding: 15px 40px;
    background: #0d6efd;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: .3s;
}

.view-offers:hover {
    background: #084db5;
}

.travel-choice {
    padding: 90px 8%;
    background: #fff;
}

.travel-header {
    text-align: center;
    margin-bottom: 40px;
}

.travel-header span {
    color: #0d6efd;
    font-weight: 700;
    letter-spacing: 2px;
}

.travel-header h2 {
    margin-top: 10px;
    font-size: 42px;
}

.travel-slider {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

.travel-slide {
    display: none;
}

.travel-slide.active {
    display: block;
}

.travel-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 18px;
}

.travel-content {
    text-align: center;
    margin-top: 25px;
}

.travel-content h3 {
    font-size: 30px;
    margin-bottom: 12px;
}

.travel-content p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: auto;
}

.travel-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    padding: 8px 14px;
    border-radius: 20px;
    background: rgba(0, 0, 0, .35);
    gap: 12px;
    margin-top: 35px;
    z-index: 100;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: .3s;
}

.dot.active {
    background: #0d6efd;
    transform: scale(1.3);
}

.travel-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:18px;
    color:#0166ff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.travel-btn i{
    font-size:20px;
    transition:.3s;
}

.travel-btn:hover{
    color:#0040a0;
}

.travel-btn:hover i{
    transform:translateX(6px);
}

/*DOWNLOAD*/
.download-app{
    padding:100px 8%;
    background:#f8f9fb;
}

.download-title{
    text-align:center;
    margin-bottom:60px;
}

.download-title span{
    color:#0d6efd;
    font-weight:700;
    letter-spacing:2px;
}

.download-title h2{
    margin-top:10px;
    font-size:42px;
}

.download-container{
    display:grid;
    grid-template-columns:300px 180px 1fr;
    gap:50px;
    align-items:center;
}

.download-phone img{
    width:100%;
}

.download-qr{
    text-align:center;
}

.download-qr img{
    width:150px;
    border-radius:12px;
    background:#fff;
    padding:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.download-qr p{
    margin-top:15px;
    color:#777;
}

.download-content h3{
    font-size:34px;
    margin-bottom:20px;
}

.download-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.download-btn{
    display:inline-block;
    padding:15px 38px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.download-btn:hover{
    background:#084db5;
}

/*=================================
        MEMBERSHIP
=================================*/

.membership{
    padding:100px 8%;
    background:#fff;
}

.membership-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.membership-image img{
    width:100%;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.section-subtitle{
    color:#0d6efd;
    font-weight:700;
    letter-spacing:2px;
}

.membership-content h2{
    font-size:42px;
    margin:15px 0;
    color:#222;
}

.membership-content p{
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 35px;
    padding-top: 25px;
    color:#666;
    line-height:1.8;
    border-top: 1px solid #e5e5e5;
    flex-wrap: wrap;
}

.member-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:35px;
}

.member-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:16px;
}

.member-item i{
    font-size:24px;
    color:#0d6efd;
}

.member-btn{
    display:inline-block;
    padding:15px 35px;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.member-btn:hover{
    background:#084db5;
}

.member-actions{
    display:flex;
    align-items:center;
    gap:25px;
    margin-top:35px;
    flex-wrap:wrap;
}

.member-btn{
    display:inline-block;
    padding:15px 38px;
    background:#0d6efd;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.member-btn:hover{
    background:#084db5;
}

.signin-link{
    color:#555;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

.signin-link strong{
    color:#0d6efd;
}

.signin-link:hover{
    color:#0d6efd;
}

.signin-link:hover strong{
    text-decoration:underline;
}