/* ============================================
   EastWestTravel2go - Redesign Layer (v2)
   Loads after style.css / animations.css and
   overrides/extends the hero, stats, and cards
   with a more modern, collage-style layout.
   Same color tokens (--primary / --accent) reused.
   ============================================ */

/* --- New Hero: split layout with photo collage --- */
.hero-section.hero-v2 {
    height: auto;
    min-height: 640px;
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
    overflow: visible;
    padding: 40px 0 70px;
    display: flex;
    align-items: center;
}
.hero-v2 .hero-slider { display: none; }
.hero-v2-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-v2-text .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,0.15);
    color: var(--accent-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 18px;
}
.hero-v2-text h1 {
    color: var(--white);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.hero-v2-text h1 .accent-word {
    color: var(--accent);
    position: relative;
    display: inline-block;
}
.hero-v2-text h1 .accent-word::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 100%;
    height: 10px;
    background: rgba(249,115,22,0.25);
    z-index: -1;
    border-radius: 4px;
}
.hero-v2-text p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    max-width: 480px;
    margin-bottom: 30px;
}
.hero-v2-text .hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }

/* Collage of photos, diamond-style rotated frames */
.hero-collage {
    position: relative;
    height: 480px;
}
.hero-collage img {
    position: absolute;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
    border: 5px solid var(--white);
}
.hero-collage .collage-1 {
    width: 55%;
    height: 60%;
    top: 0;
    left: 8%;
    transform: rotate(-6deg);
    z-index: 3;
}
.hero-collage .collage-2 {
    width: 42%;
    height: 46%;
    bottom: 6%;
    right: 0;
    transform: rotate(7deg);
    z-index: 2;
}
.hero-collage .collage-3 {
    width: 34%;
    height: 34%;
    top: 8%;
    right: 4%;
    transform: rotate(4deg);
    z-index: 1;
    border-radius: 50%;
    border-width: 6px;
}
.hero-collage .diamond {
    position: absolute;
    width: 90px;
    height: 90px;
    background: var(--accent);
    border-radius: 20px;
    transform: rotate(45deg);
    bottom: -20px;
    left: 0;
    z-index: 0;
    opacity: 0.9;
}
.hero-collage .diamond::before {
    content: '\f5a0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    transform: rotate(-45deg);
}
.hero-collage .dot-ring {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 3px dashed rgba(249,115,22,0.5);
    border-radius: 50%;
    top: -20px;
    left: -20px;
    z-index: 0;
    animation: spin 40s linear infinite;
}

/* --- Marquee ticker strip under hero --- */
.marquee-strip {
    background: var(--accent);
    color: var(--white);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-strip .marquee-track {
    display: inline-flex;
    gap: 50px;
    animation: marquee-scroll 22s linear infinite;
}
.marquee-strip span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.marquee-strip span::after {
    content: '\f111';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 6px;
    opacity: 0.6;
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Stats v2: alternating dark/orange blocks --- */
.stats-v2 {
    padding: 0;
    margin-top: -55px;
    position: relative;
    z-index: 20;
}
.stats-v2 .container { padding: 0 20px; }
.stats-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.stats-v2-item {
    padding: 30px 20px;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stats-v2-item:nth-child(2n) { background: var(--accent); }
.stats-v2-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
}
.stats-v2-item .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
    font-weight: 500;
}

/* --- Card refresh: tilt-on-hover + accent corner --- */
.package-card.v2, .visa-card.v2 {
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
}
.package-card.v2:hover {
    transform: translateY(-10px) rotate(-0.5deg);
}
.package-card.v2 .package-card-image {
    border-radius: 20px 20px 0 0;
}
.package-card.v2 .package-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
}

/* --- Section header v2: left aligned with accent tick --- */
.section-header.v2 {
    text-align: left;
    max-width: 600px;
    margin: 0 0 45px;
}
.section-header.v2 .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.section-header.v2 .badge::before {
    content: '';
    width: 22px;
    height: 3px;
    background: var(--accent);
    display: inline-block;
    border-radius: 2px;
}
.section-header.v2 h2::after { margin-left: 0; }

/* ============================================
   DESTINATION STRIP (horizontal scroller)
   ============================================ */
.destination-section { padding: 70px 0 30px; text-align: center; }
.destination-section .section-header { margin-bottom: 30px; }
.destination-scroll-wrap { position: relative; }
.destination-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 20px;
    scrollbar-width: none;
}
.destination-scroll::-webkit-scrollbar { display: none; }
.destination-card {
    flex: 0 0 200px;
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.destination-card img { width: 100%; height: 100%; object-fit: cover; }
.destination-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.75) 100%);
}
.destination-card-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    color: var(--white);
}
.destination-card-label h4 { color: var(--white); font-size: 15px; margin-bottom: 2px; }
.destination-card-label span { font-size: 12px; color: rgba(255,255,255,0.75); }
.destination-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}
.destination-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--light-gray);
    background: var(--white);
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}
.destination-nav button:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* ============================================
   STATS ON PHOTO BACKGROUND
   ============================================ */
.stats-photo-section {
    position: relative;
    padding: 90px 0 0;
    margin-top: 20px;
}
.stats-photo-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.stats-photo-bg img { width: 100%; height: 100%; object-fit: cover; }
.stats-photo-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15,35,65,0.9) 0%, rgba(15,35,65,0.55) 100%);
}
.stats-photo-section .container { position: relative; z-index: 1; }
.stats-photo-section .stats-v2-grid {
    margin-bottom: -55px;
    position: relative;
    z-index: 2;
}

/* ============================================
   DREAM SECTION (image collage + checklist)
   ============================================ */
.dream-section { padding: 100px 0 80px; overflow: hidden; }
.dream-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.dream-image-wrap { position: relative; height: 420px; }
.dream-image-wrap img {
    position: absolute;
    width: 78%;
    height: 78%;
    object-fit: cover;
    border-radius: var(--radius-xl);
    top: 10%;
    left: 10%;
    transform: rotate(-4deg);
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--white);
}
.dream-badge {
    position: absolute;
    top: 5%;
    left: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}
.dream-badge strong { font-size: 1.6rem; line-height: 1; }
.dream-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.dream-checklist { margin: 30px 0; }
.dream-checklist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
}
.dream-checklist-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(249,115,22,0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.dream-checklist-item h4 { font-size: 16px; margin-bottom: 4px; }
.dream-checklist-item p { font-size: 14px; color: var(--text-light); margin: 0; }

/* ============================================
   ACTIVITIES ROW (circular category cards)
   ============================================ */
.activities-section { padding: 70px 0; background: var(--light); }
.activities-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.activity-circle {
    width: 170px;
    text-align: center;
}
.activity-circle-img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    transition: var(--transition);
    border: 4px solid var(--white);
}
.activity-circle:hover .activity-circle-img { transform: scale(1.06); box-shadow: var(--shadow-lg); }
.activity-circle-img i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.activity-circle h4 { font-size: 14px; color: var(--primary); }

/* ============================================
   TESTIMONIAL SPOTLIGHT (dark single quote)
   ============================================ */
.testimonial-spotlight {
    background: var(--primary-dark);
    padding: 80px 0;
}
.spotlight-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: center;
}
.spotlight-image {
    height: 340px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.spotlight-image img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-content h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 15px; }
.spotlight-stars { color: #fbbf24; margin-bottom: 15px; font-size: 15px; }
.spotlight-quote { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.spotlight-author { color: var(--white); font-weight: 600; font-family: var(--font-heading); }
.spotlight-author span { display: block; color: rgba(255,255,255,0.6); font-weight: 400; font-size: 13px; margin-top: 2px; }
.spotlight-brands {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
.spotlight-brands div {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.spotlight-brands i { color: var(--accent); }

/* ============================================
   PARALLAX BANNER
   ============================================ */
.parallax-banner {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.parallax-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15,35,65,0.55);
}
.parallax-banner-content { position: relative; z-index: 1; }
.parallax-banner-content span {
    color: var(--accent-light);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}
.parallax-banner-content h2 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
}

/* ============================================
   LUXURY CTA + PHOTO STRIP
   ============================================ */
.luxury-cta { background: var(--primary-dark); padding: 70px 0 0; text-align: center; }
.luxury-cta h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 25px; }
.luxury-cta .btn { margin-bottom: 50px; }
.luxury-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}
.luxury-strip-item { height: 200px; overflow: hidden; }
.luxury-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.luxury-strip-item:hover img { transform: scale(1.08); }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-v2-inner { grid-template-columns: 1fr; }
    .hero-collage { height: 360px; margin-top: 20px; }
    .stats-v2-grid { grid-template-columns: repeat(2, 1fr); }
    .dream-grid { grid-template-columns: 1fr; }
    .dream-image-wrap { height: 320px; margin-bottom: 20px; }
    .spotlight-grid { grid-template-columns: 1fr; }
    .spotlight-image { height: 260px; }
    .luxury-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .hero-v2-text h1 { font-size: 2.2rem; }
    .hero-collage { height: 280px; }
    .hero-collage .collage-3 { display: none; }
    .stats-v2 { margin-top: -30px; }
    .stats-v2-item { padding: 20px 10px; }
    .stats-v2-item .stat-number { font-size: 1.6rem; }
    .stats-photo-section { padding: 60px 0 0; }
    .destination-card { flex: 0 0 160px; height: 200px; }
    .activity-circle, .activity-circle-img { width: 130px; height: 130px; }
    .parallax-banner-content h2 { font-size: 1.8rem; }
    .luxury-strip { grid-template-columns: repeat(2, 1fr); }
    .luxury-strip-item { height: 140px; }
}
