/* Hero Redesign Section Styles */
.hero-redesign-section {
    padding: 40px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}



.hero-content-left {
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: #7f181c;
    border-radius: 50%;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-title .highlight {
    color: #7f181c;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #7f181c;
    color: #ffffff;
    padding: 12px 24px 12px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(186,19,26,0.3);
}

.btn-primary-hero:hover {
    background: #9a0f15;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(186,19,26,0.4);
}

.free-tag {
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #4a5568;
    padding: 14px 28px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.btn-secondary-hero:hover {
    border-color: #cbd5e1;
    color: #0f172a;
    background: #f8fafc;
}

.hero-note {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 40px;
}

.dest-title {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dest-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.dest-pill {
    padding: 8px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.2s;
}

.dest-pill:hover {
    border-color: #7f181c;
    color: #7f181c;
    background: #fff5f5;
}

/* Right Side - Images Grid */
.hero-content-right {
    position: relative;
    z-index: 2;
}

.hero-image-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.hero-img-main {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-img-main:hover img {
    transform: scale(1.03);
}

.hero-img-bottom-row {
    display: flex;
    gap: 20px;
}

.hero-img-sub {
    position: relative;
    width: 50%;
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.hero-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-img-sub:hover img {
    transform: scale(1.05);
}

/* Image Overlays & Captions */
.hero-img-main::after,
.hero-img-sub::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    pointer-events: none;
}

.img-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.img-caption .flag {
    font-size: 24px;
}

.cap-text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
}

.cap-text strong {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
}

.cap-text span {
    font-size: 12px;
    opacity: 0.8;
}

.top-right-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Floating Success Card */
.floating-success-card {
    position: absolute;
    right: -20px;
    top: 280px;
    background: #ffffff;
    padding: 15px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #fff5f5;
    color: #7f181c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}

.card-value {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dot-green {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    .hero-content-left {
        padding-right: 0;
        margin-bottom: 50px;
    }
    .floating-success-card {
        right: 10px;
        top: auto;
        bottom: 200px;
    }
}
@media (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-img-main {
        height: 240px;
    }
    .hero-img-sub {
        height: 180px;
    }
    .floating-success-card {
        display: none; /* Hide on very small screens if it overlaps too much */
    }
}
