/* ==========================================================================
   AVPMS TOURS — HOMEPAGE CUSTOM LAYOUTS
   ========================================================================== */

/* 1. HERO BANNER SECTION */
.hero-banner {
    position: relative;
    padding: 8rem 0 7rem;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 41, 66, 0.55), rgba(9, 14, 26, 0.85));
}

.hero-slide.active {
    opacity: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 5;
}

/* Eye-catch label above headline */
.hero-eyecatch-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 0.4rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.75rem;
    animation: hero-fade-up 0.8s ease both;
}

.hero-eyecatch-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9900, #ff6600);
    flex-shrink: 0;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

/* Main Hero Headline */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    line-height: 1.05;
    display: flex;
    flex-direction: column;
    gap: 0.1em;
    animation: hero-fade-up 0.9s ease 0.1s both;
}

.hero-title-line1 {
    display: block;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title-line2 {
    display: block;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* "Far." gets the gold-orange gradient */
.hero-title-gradient {
    background: linear-gradient(100deg, #ffb347 0%, #ff8c00 30%, #ff6200 60%, #e63900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 2px 12px rgba(255, 140, 0, 0.55));
}

.hero-title-gradient::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffb347, #ff6200, transparent);
    border-radius: 4px;
    animation: underline-glow 2.5s ease-in-out infinite alternate;
}

@keyframes underline-glow {
    0% { opacity: 0.5; transform: scaleX(0.8); }
    100% { opacity: 1; transform: scaleX(1); }
}

/* Rotating animated taglines */
.hero-rotating-wrap {
    position: relative;
    height: 2rem;
    overflow: hidden;
    margin: 1.4rem auto 0;
    max-width: 680px;
    animation: hero-fade-up 1s ease 0.2s both;
}

.hero-rotating-tagline {
    position: relative;
    height: 100%;
    margin: 0;
}

.tagline-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 220, 150, 0.92);
    letter-spacing: 0.3px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    white-space: nowrap;
}

.tagline-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.tagline-slide.exit {
    opacity: 0;
    transform: translateY(-12px);
}

/* Sub-tagline static description */
.hero-sub-tagline {
    font-size: 1.05rem;
    font-weight: 400;
    margin: 1.5rem auto 2.5rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 680px;
    line-height: 1.75;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    animation: hero-fade-up 1s ease 0.3s both;
}

.hero-sub-tagline strong {
    color: #ffcc70;
    font-weight: 700;
}

/* Trust Badges Strip */
.hero-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: hero-fade-up 1s ease 0.4s both;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    backdrop-filter: blur(6px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    cursor: default;
}

.hero-trust-badge:hover {
    background: rgba(255, 140, 0, 0.2);
    border-color: rgba(255, 140, 0, 0.5);
    transform: translateY(-2px);
}

.hero-trust-badge svg {
    width: 14px;
    height: 14px;
    fill: #ffb347;
    flex-shrink: 0;
}

.hero-trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0.25rem;
}

/* Shared fade-up entrance animation */
@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
    .hero-title { font-size: 3.2rem; letter-spacing: -1.5px; }
    .hero-trust-strip { gap: 0.5rem; }
    .hero-trust-divider { display: none; }
    .hero-trust-badge { border-radius: 50px; padding: 0.4rem 0.9rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.6rem; letter-spacing: -1px; }
    .hero-sub-tagline { font-size: 0.95rem; }
    .hero-banner { padding: 5rem 0 4rem; }
    .tagline-slide { font-size: 0.85rem; white-space: normal; line-height: 1.4; }
    .hero-rotating-wrap { height: 2.8rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.1rem; }
    .hero-eyecatch-label { font-size: 0.68rem; padding: 0.35rem 1rem; }
    .hero-trust-badge { font-size: 0.72rem; }
}

/* 2. DYNAMIC HERO QUICK-SEARCH WIDGET */
.search-widget-container {
    max-width: 960px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.search-tabs-row {
    display: flex;
    background: rgba(15, 41, 66, 0.9);
    border-bottom: 1px solid var(--glass-border);
}

.search-tab-pill {
    padding: 1rem 1.75rem;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    cursor: pointer;
    background: transparent;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.search-tab-pill.is-active {
    background: var(--card-bg);
    color: var(--text-dark);
}

.search-tab-pill svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.search-form-panel {
    background-color: var(--card-bg);
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1.25rem;
    align-items: flex-end;
    text-align: left;
}

.search-field-cell {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-field-cell label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field-select, .search-field-input {
    width: 100%;
    padding: 0.65rem 0.5rem;
    border: none;
    border-bottom: 2px solid var(--card-border);
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
}

.search-field-select:focus, .search-field-input:focus {
    border-bottom-color: var(--accent-color);
}

.search-submit-cell {
    height: 48px;
    display: flex;
}

@media (max-width: 960px) {
    .search-form-panel {
        grid-template-columns: repeat(2, 1fr);
    }
    .search-submit-cell {
        grid-column: span 2;
    }
}
@media (max-width: 600px) {
    .search-form-panel {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }
    .search-submit-cell {
        grid-column: span 1;
    }
}

/* 3. TRENDING DESTINATIONS SECTION */
.dest-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.dest-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.dest-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.dest-card:hover .dest-card-image {
    transform: scale(1.08);
}

.dest-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(15, 41, 66, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
}

.dest-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
}

.dest-card-count {
    font-size: 0.8rem;
    color: var(--body-bg);
}

/* 4. HONEYMOON ROMANTIC SPLIT BANNER */
.honeymoon-section {
    background: linear-gradient(rgba(15, 41, 66, 0.8), rgba(15, 41, 66, 0.8)),
                url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.honeymoon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 3rem;
    padding: 4rem;
}

.honeymoon-content h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.honeymoon-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--body-bg);
}

.honeymoon-graphics {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
    .honeymoon-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
}

/* 5. HOLIDAY IDEAS PILLS TABS */
.ideas-tabs-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.idea-tab-pill {
    padding: 0.65rem 1.5rem;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.idea-tab-pill:hover, .idea-tab-pill.is-active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* ==========================================================================
   DPAULS SLIDING CAROUSEL & CARDS
   ========================================================================== */
.slider-control-btn {
    border: 1px solid var(--card-border);
    transition: var(--transition-fast);
}

.slider-control-btn:hover {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #fff !important;
    transform: scale(1.05);
}

.slider-control-btn:active {
    transform: scale(0.95);
}

.dpauls-card-anchor {
    display: block;
    text-decoration: none;
}

.dpauls-curve-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: var(--card-bg);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
    will-change: transform, box-shadow;
    border: 1px solid var(--card-border);
}

.dpauls-curve-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--accent-color);
}

.dpauls-curve-card:hover .dpauls-card-img {
    transform: scale(1.06);
}

/* Responsive slide dimensions */
.packages-carousel-slide {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: calc(25% - 1.125rem);
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .packages-carousel-slide {
        flex: 0 0 calc(33.333% - 1rem) !important;
        min-width: calc(33.333% - 1rem) !important;
    }
}

@media (max-width: 768px) {
    .packages-carousel-slide {
        flex: 0 0 calc(50% - 0.75rem) !important;
        min-width: calc(50% - 0.75rem) !important;
    }
}

@media (max-width: 480px) {
    .packages-carousel-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }
}

/* ==========================================================================
   INTERNATIONAL SLIDING CAROUSEL & CARDS (DARK MODE)
   ========================================================================== */
.int-slider-wrapper {
    position: relative;
    margin: 0 10px;
}

.int-carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding: 0.5rem 0;
}

.int-carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.int-carousel-slide {
    flex: 0 0 calc(25% - 1.125rem);
    min-width: calc(25% - 1.125rem);
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .int-carousel-slide {
        flex: 0 0 calc(33.333% - 1rem) !important;
        min-width: calc(33.333% - 1rem) !important;
    }
}

@media (max-width: 768px) {
    .int-carousel-slide {
        flex: 0 0 calc(50% - 0.75rem) !important;
        min-width: calc(50% - 0.75rem) !important;
    }
}

@media (max-width: 480px) {
    .int-carousel-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
    }
}

/* Absolute Navigation Buttons */
.int-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #121e2c;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.int-btn-prev {
    left: -22px;
}

.int-btn-next {
    right: -22px;
}

.int-slider-btn:hover {
    background: #fff;
    color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

.int-slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.int-slider-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .int-btn-prev {
        left: 5px;
    }
    .int-btn-next {
        right: 5px;
    }
    .int-slider-btn {
        width: 38px;
        height: 38px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .int-slider-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Warning Advisory Badge */
.int-warning-badge {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #ff4d4d;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.4);
    transition: all 0.2s ease-in-out;
}

.int-warning-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 77, 77, 0.6);
}

.int-warning-badge svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* International Card styling */
.int-vertical-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    background-color: #121e2c;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    will-change: transform, box-shadow;
}

.int-vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    border-color: rgba(255,255,255,0.25);
}

.int-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.int-vertical-card:hover .int-card-img {
    transform: scale(1.06);
}

.int-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    pointer-events: none;
}

.int-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    z-index: 5;
    pointer-events: none;
}

.int-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.int-card-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ==========================================================================
   VIATOR-STYLE TOUR GRID CARD
   ========================================================================== */
.viator-grid-section {
    background-color: var(--body-bg);
}

.viator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .viator-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .viator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .viator-grid {
        grid-template-columns: 1fr;
    }
}

.viator-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.viator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.viator-media-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.viator-card-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.viator-card-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.5s ease;
    will-change: opacity;
}

.viator-card-slide-img.active {
    opacity: 1;
    z-index: 2;
}

.viator-card:hover .viator-card-slide-img.active {
    transform: scale(1.05);
}

/* Wishlist Heart Button */
.viator-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 5;
    transition: background 0.2s, transform 0.2s;
    padding: 0;
}

.viator-wishlist-btn:hover {
    transform: scale(1.1);
    background: #fff;
}

.viator-wishlist-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #1a1a1a;
    stroke-width: 2px;
    transition: fill 0.2s, stroke 0.2s;
}

.viator-wishlist-btn.is-active svg {
    fill: #ff385c;
    stroke: #ff385c;
}

/* Dot Indicators */
.viator-dots-wrap {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.viator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transition: background-color 0.2s;
}

.viator-dot.is-active {
    background: #fff;
    width: 8px;
    border-radius: 4px;
}

/* Likely to sell out badge */
.viator-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #fff;
    color: #ff385c;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Card details styling */
.viator-card-details {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.5rem;
}

.viator-card-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.viator-card-meta {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.viator-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid var(--card-border);
}

/* Rating */
.viator-rating-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #00a680;
}

.viator-rating-wrap svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.viator-rating-count {
    color: var(--text-light);
    font-weight: 500;
}

/* Price */
.viator-price-wrap {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.viator-price-amt {
    display: block;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* ==========================================================================
   DOMESTIC SERVICES FEATURE SECTION
   ========================================================================== */
.domestic-services-section {
    background-color: var(--card-bg);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.domestic-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .domestic-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.domestic-service-card {
    background-color: var(--body-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 41, 66, 0.05);
    border: 1px solid var(--card-border);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domestic-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(15, 41, 66, 0.1);
}

.service-image-container {
    width: 45%;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.domestic-service-card:hover .service-card-img {
    transform: scale(1.08);
}

.service-card-content {
    width: 55%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.service-card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
}

.service-check-icon {
    width: 16px;
    height: 16px;
    fill: var(--accent-color);
    flex-shrink: 0;
}

.service-card-cta {
    align-self: flex-start;
    margin-top: auto;
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
}

}




/* ==========================================================================
   WHY CHOOSE US — TRAVEL AGENCIES & TOUR OPERATORS SECTION
   ========================================================================== */

.why-us-section {
    background: linear-gradient(160deg, #fffaf8 0%, #fff5f2 50%, #fffaf8 100%);
    border-top: 1px solid #fde0d7;
    border-bottom: 1px solid #fde0d7;
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Light decorative background circle */
.why-us-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 68, 26, 0.05) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.why-us-section::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 68, 26, 0.04) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}

/* Section Header */
.why-us-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3.5rem;
    padding: 0 1.5rem;
}

.why-us-kicker {
    display: inline-block;
    background: linear-gradient(135deg, #e8441a, #ff7043);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.why-us-headline {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.5px;
}

.why-us-headline-accent {
    background: linear-gradient(100deg, #e8441a, #ff7043);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-us-subline {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* 5-Column Cards Row */
.why-us-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

/* Individual Card */
.why-us-card {
    background: #fff;
    border: 1px solid #fde0d7;
    border-radius: 16px;
    padding: 1.75rem 1.25rem 1.5rem;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 2px 12px rgba(232, 68, 26, 0.04);
}

.why-us-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(232, 68, 26, 0.12);
    border-color: #f4a896;
}

/* Highlighted center card */
.why-us-card--highlight {
    background: linear-gradient(160deg, #fff5f2, #fff);
    border-color: #f4a896;
    box-shadow: 0 6px 24px rgba(232, 68, 26, 0.1);
}

.why-us-card--highlight:hover {
    box-shadow: 0 16px 40px rgba(232, 68, 26, 0.18);
}

/* Icon wrapper */
.why-us-icon-wrap {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-bottom: 0.25rem;
}

.why-us-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.why-us-icon-wrap--featured {
    width: 64px;
    height: 64px;
}

/* Most Popular badge */
.why-us-card-badge {
    position: absolute;
    top: -1px;
    right: 16px;
    background: linear-gradient(135deg, #e8441a, #ff7043);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 10px rgba(232, 68, 26, 0.3);
}

/* Card texts */
.why-us-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.why-us-card-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    flex-grow: 1;
}

/* Bottom Stats Bar */
.why-us-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: #fff;
    border: 1px solid #fde0d7;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 4px 20px rgba(232, 68, 26, 0.06);
    flex-wrap: wrap;
}

.why-us-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0 2.5rem;
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.why-us-stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: #e8441a;
    line-height: 1;
    letter-spacing: -1px;
}

.why-us-stat-number sup {
    font-size: 1.1rem;
    vertical-align: super;
}

.why-us-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-us-stat-sep {
    width: 1px;
    height: 48px;
    background: #fde0d7;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .why-us-cards-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-headline {
        font-size: 1.65rem;
    }
    .why-us-stats-bar {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    .why-us-stat {
        padding: 0 1rem;
    }
    .why-us-stat-sep {
        display: none;
    }
}

@media (max-width: 480px) {
    .why-us-cards-row {
        grid-template-columns: 1fr;
    }
    .why-us-stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }
}





