/* CSS Reset and Variables */
:root {
    --color-white: #FFFFFF;
    --color-green: #1A4D2E;
    --color-gold: #C9A961;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   SECTION 1: HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 20, 30, 0.3) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.hero-title-light {
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 300;
    line-height: 75px;
    letter-spacing: 0.264px;
}

.hero-title-bold {
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.264px;
    margin-bottom: 24px;
}

.hero-description {
    width: 633px;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.90);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32.5px;
    letter-spacing: -0.449px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.3s ease;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    display: flex;
    padding: 15.5px 31.086px 16.5px 33px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: var(--color-green);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
    color: var(--color-white);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.312px;
}

.btn-primary:hover {
    background: #143d24;
}

.btn-secondary {
    display: flex;
    padding: 16.5px 33.375px 17.5px 33px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.10);
    color: var(--color-white);
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.312px;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.20);
}

/* ============================================
   SECTION 2: TRIP FINDER & TRENDING DESTINATIONS
   ============================================ */
.section-2 {
    background-color: #FAF9F6;
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
    z-index: 5;
}

/* Trip Finder */
.trip-finder {
    border-radius: 24px;
    border: 1px solid #F3F4F6;
    background: #FFF;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
    height: 222px;
    padding: 32px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    margin-bottom: 100px;
}

.trip-finder-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trip-finder-titles {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trip-finder-title {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0.396px;
}

.trip-finder-subtitle {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.312px;
}

.trip-finder-style {
    display: flex;
    align-items: center;
    gap: 16px;
}

.package-style-label {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.package-style-toggle {
    position: relative;
    display: flex;
    height: 56px;
    padding: 4px;
    align-items: center;
    border-radius: 8px;
    background: #F5F2ED;
}

.package-style-toggle input[type="radio"] {
    display: none;
}

.package-style-toggle .btn-style {
    position: relative;
    z-index: 2;
    display: flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.312px;
    cursor: pointer;
    transition: color 0.3s ease;
    flex: 1;
}

.package-style-toggle input#style-standard:checked~label[for="style-standard"] {
    color: #1A4D2E;
}

.package-style-toggle input#style-luxury:checked~label[for="style-luxury"] {
    color: #1A4D2E;
}

.switch-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: #FFF;
    border-radius: 6px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.package-style-toggle input#style-luxury:checked~.switch-indicator {
    transform: translateX(100%);
}

.trip-finder-form {
    display: flex;
    gap: 16px;
    align-items: center;
}

.input-field {
    flex: 1;
    min-width: 0;
    color: #364153;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.15px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: #F5F2ED;
    height: 58px;
    padding: 0 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-field::placeholder {
    color: #4A5565;
    opacity: 0.8;
}

.input-field:focus {
    border-color: #1A4D2E;
}

.btn-send-enquiry {
    color: #FFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.312px;
    display: inline-flex;
    padding: 16px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #1A4D2E;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    border: none;
    cursor: pointer;
    height: 58px;
    white-space: nowrap;
}

.btn-send-enquiry:hover {
    background: #143d24;
}

/* Trending Destinations */
.trending-destinations {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    color: #2A2A2A;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.369px;
    margin-bottom: 16px;
}

.section-subtitle {

    color: #4A5565;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.439px;
    margin-bottom: 40px;
}

.destination-tabs {
    display: inline-flex;
    position: relative;
    background: #FFF;
    border-radius: 8px;
    padding: 4px;
    box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    margin-bottom: 40px;
    border: 1px solid #E5E7EB;
}

.destination-tabs input[type="radio"] {
    display: none;
}

.destination-tabs .tab-btn {
    position: relative;
    z-index: 2;
    display: flex;
    width: 141px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #4A5565;
    transition: color 0.3s ease;
}

/* Active tab label. Uses data-tab + a [for^=] prefix so it works with the
   section-suffixed radio ids the view renders (tab-india-radio-<id>). The old
   selectors referenced static ids that never matched, so the highlight/indicator
   stayed under "India" regardless of the selected tab — the India/International
   desync bug. */
.destination-tabs input[data-tab="india"]:checked ~ label[for^="tab-india-radio"],
.destination-tabs input[data-tab="intl"]:checked ~ label[for^="tab-intl-radio"] {
    color: #FFF;
}

.dest-switch-indicator {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 141px;
    height: calc(100% - 8px);
    background: #C9A961;
    border-radius: 6px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.destination-tabs input[data-tab="intl"]:checked ~ .dest-switch-indicator {
    transform: translateX(100%);
}

.destination-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 48px;
}

.dest-card {
    width: 320px;
    height: 400px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 24px;
}

.card-title {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.449px;
    margin-bottom: 8px;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.card-location img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.card-location span {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.starts-at {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.price {
    color: #FFF;
    text-align: right;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: -0.449px;
}

.currency {
    font-weight: 400;
}

.view-all-container {
    display: flex;
    justify-content: center;
}

.btn-view-all {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    background: #1A4D2E;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    border: none;
    cursor: pointer;
}

.btn-view-all:hover {
    background: #143d24;
}

/* ============================================
   SECTION 3: EXPLORE BY SEASON
   ============================================ */
.section-3 {
    padding: 80px 0;
    background-color: #FAF9F6;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
}

/* Explore by Season — responsive grid (slider removed; every card is a link
   to that season's package listing). .season-card--wide (e.g. Festive &
   Spiritual) spans 2 columns for a bento-style layout while staying part of
   the same grid, not a separate carousel. */
.season-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.season-card {
    position: relative;
    min-height: 480px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.season-card:hover {
    transform: translateY(-4px);
}

.season-card--wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    border-radius: 24px;
}

.season-card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.50) 50%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 1;
}

.season-card--wide .season-card-gradient {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.60) 50%, rgba(0, 0, 0, 0.30) 100%);
}

.season-card-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.season-card--wide .season-card-content {
    padding: 48px 64px;
    max-width: 560px;
}

.season-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

/* Wide-card icon treatment (kept from the original "spiritual" design) */
.spiritual-icon-container {
    display: flex;
    width: 56px;
    height: 56px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: rgba(201, 169, 97, 0.20);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.spiritual-icon-container img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.season-months {
    color: #C9A961;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.season-title {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.396px;
    margin-bottom: 4px;
}

.season-card--wide .season-title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.369px;
    margin-bottom: 8px;
}

.season-desc {
    color: rgba(255, 255, 255, 0.90);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.312px;
}

.season-card--wide .season-desc {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.449px;
}

.season-popular {
    color: rgba(255, 255, 255, 0.80);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.312px;
    margin-top: 4px;
}

.season-explore-link {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.15px;
}

.season-card--wide .season-explore-link {
    margin-top: 20px;
    padding: 11.5px 32.914px 12.5px 32px;
    justify-content: center;
    border-radius: 8px;
    background: #FFF;
    color: #1A4D2E;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.season-card--wide:hover .season-explore-link {
    background: #F3F4F6;
}

/* Section 4: Why Freebird Wanderer */
.section-4 {
    padding: 80px 0;
    background-color: #FFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.feature-card {
    width: 100%;
    height: 266px;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    background: linear-gradient(135deg, #FAF9F6 0%, #FCFBF9 33.33%, #FDFDFC 66.67%, #FFF 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon {
    display: flex;
    width: 56px;
    height: 56px;
    padding: 14px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: rgba(26, 77, 46, 0.10);
    margin-bottom: 24px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.feature-title {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.449px;
    margin-bottom: 8px;
}

.feature-desc {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.312px;
}

.cta-bottom-card {
    height: 296px;
    width: 100%;
    border-radius: 24px;
    background: linear-gradient(90deg, #1A4D2E 0%, rgba(26, 77, 46, 0.80) 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 48px;
}

.cta-bottom-card .cta-title {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0.396px;
    margin-bottom: 16px;
}

.cta-bottom-card .cta-desc {
    color: rgba(255, 255, 255, 0.90);
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.439px;
    margin-bottom: 32px;
    max-width: 644px;
}

.cta-bottom-card .cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cta-primary {
    display: flex;
    padding: 15.5px 31.836px 16.5px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    color: #1A4D2E;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.312px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-cta-primary:hover {
    background: #F3F4F6;
}

.btn-cta-secondary {
    display: flex;
    padding: 17.5px 33.414px 18.5px 34px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 2px solid #FFF;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.312px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Section 5: How Customised Travel Works */
.section-5 {
    padding: 80px 0;
    background-color: #FAF9F6;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.process-card {
    position: relative;
    width: 100%;
    height: 356px;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    background: #FFF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.process-icon {
    display: flex;
    width: 64px;
    height: 64px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    margin-bottom: 24px;
    flex-shrink: 0;
}

.process-icon.green-bg {
    background: linear-gradient(135deg, #1A4D2E 0%, rgba(26, 77, 46, 0.80) 100%);
}

.process-icon.gold-bg {
    background: linear-gradient(135deg, #C9A961 0%, rgba(201, 169, 97, 0.80) 100%);
}

.process-icon img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.process-step {
    color: #E5E7EB;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.369px;
    margin-bottom: 16px;
}

.process-title {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.449px;
    margin-bottom: 8px;
}

.process-desc {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.312px;
}

.process-arrow {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #C9A961;
    border-radius: 50%;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 10;
}

.process-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.process-footer-text {
    color: #4A5565;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.439px;
}

.btn-start-journey {
    display: flex;
    height: 56px;
    padding: 15.5px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #1A4D2E;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    color: #FFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.312px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-start-journey:hover {
    background: #11331E;
}

/* Section 6: What Our Travellers Say */
.section-6 {
    padding: 80px 0;
    background-color: #FAF9F6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    justify-items: center;
}

.review-card {
    width: 100%;
    max-width: 664px;
    height: auto;
    min-height: 321px;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    background: #FFF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
}

.review-content {
    padding: 32px;
    flex-grow: 1;
}

.quote-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars img {
    width: 20px;
    height: 20px;
}

.review-text {
    color: #364153;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.312px;
}

.review-footer {
    padding: 24px 32px;
    border-top: 1px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.312px;
}

.review-tour {
    color: #6A7282;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.review-location {
    color: #99A1AF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.reviews-cta {
    display: flex;
    justify-content: center;
}

.btn-read-reviews {
    display: flex;
    height: 60px;
    padding: 17.5px 33.43px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 2px solid #1A4D2E;
    background: #FFF;
    color: #1A4D2E;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.312px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-read-reviews:hover {
    background: #1A4D2E;
    color: #FFF;
}

/* Section 7: Become Part of the Freebird Family */
.section-7 {
    padding: 80px 0;
    background-color: #FFF;
}

.family-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.family-card {
    width: 100%;
    min-height: 352px;
    border-radius: 24px;
    border: 1px solid #F3F4F6;
    background: #FFF;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.family-card.green-border {
    border-top: 8px solid #1A4D2E;
}

.family-card.gold-border {
    border-top: 8px solid #C9A961;
}

.family-icon {
    display: flex;
    width: 64px;
    height: 64px;
    padding: 16px;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    margin-bottom: 24px;
    flex-shrink: 0;
}

.family-icon img {
    width: 32px;
    height: 32px;
}

.family-icon.green-bg {
    background: linear-gradient(135deg, #1A4D2E 0%, rgba(26, 77, 46, 0.80) 100%);
}

.family-icon.gold-bg {
    background: linear-gradient(135deg, #C9A961 0%, rgba(201, 169, 97, 0.80) 100%);
}

.family-card-title {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.07px;
    margin-bottom: 8px;
}

.family-card-desc {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.312px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.btn-join-club {
    display: flex;
    width: 100%;
    padding: 11.5px 0 12.5px 0;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: linear-gradient(90deg, #1A4D2E 0%, rgba(26, 77, 46, 0.80) 100%);
    color: #FFF;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.312px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn-join-club:hover {
    opacity: 0.9;
}

.whatsapp-card {
    display: flex;
    height: 298px;
    padding: 41px 242px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    border: 1px solid rgba(201, 169, 97, 0.30);
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.20) 0%, rgba(201, 169, 97, 0.10) 50%, rgba(26, 77, 46, 0.10) 100%);
    margin-top: 64px;
    text-align: center;
}

.whatsapp-title {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    letter-spacing: 0.07px;
    margin-bottom: 16px;
}

.whatsapp-desc {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.312px;
    margin-bottom: 32px;
}

.btn-join-whatsapp {
    display: inline-flex;
    padding: 15.5px 31.609px 16.5px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #1A4D2E;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.312px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-join-whatsapp:hover {
    background: #11331E;
}

.whatsapp-note {
    color: #6A7282;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
    margin-top: 16px;
}

/* Section 8: Travel Guides & Inspiration */
.section-8 {
    padding: 80px 0;
    background-color: #FAF9F6;
}

.guides-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.guides-header-text {
    max-width: 70%;
}

.guides-title {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.369px;
    margin-bottom: 16px;
}

.guides-subtitle {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.439px;
}

.btn-view-articles {
    display: flex;
    padding: 13.5px 25.461px 14.5px 26px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 2px solid #1A4D2E;
    color: #1A4D2E;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.312px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-view-articles:hover {
    background: #1A4D2E;
    color: #FFF;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.guide-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    height: 100%;
}

.guide-img {
    position: relative;
    width: 100%;
    height: 256px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.guide-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    padding: 4px 12px;
    align-items: flex-start;
    border-radius: 100px;
    background: #C9A961;
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    z-index: 10;
}

.guide-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.guide-title {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.449px;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 50px;
}

.guide-desc {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.312px;
    margin-bottom: 24px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 78px;
}

.guide-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #F3F4F6;
    width: 100%;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item img {
    width: 16px;
    height: 16px;
}

.meta-item span {
    color: #6A7282;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.15px;
}

.btn-read-more {
    color: #1A4D2E;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.312px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.btn-read-more:hover {
    color: #11331E;
}

/* Section 9: Frequently Asked Questions */
.section-9 {
    padding: 80px 0;
    background-color: #FFF;
}

.section-9 .section-header {
    align-items: center;
    text-align: center;
}

.section-9 .section-title,
.section-9 .section-subtitle {
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 48px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    background: #FAF9F6;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question span {
    color: #2A2A2A;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.439px;
    padding-right: 24px;
}

.faq-icon-up {
    display: none;
}

details[open] .faq-icon-down {
    display: none;
}

details[open] .faq-icon-up {
    display: block;
}

.faq-answer {
    padding: 0 32px 24px 32px;
}

.faq-answer p {
    color: #4A5565;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    border-top: 1px solid #E5E7EB;
    padding-top: 16px;
    margin-top: 0;
}

.faq-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.faq-footer-text {
    color: #6A7282;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.btn-contact-team {
    display: inline-flex;
    padding: 13.5px 32px 14.5px 32px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: #1A4D2E;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-contact-team:hover {
    background: #11331E;
}

/* Section 10: CTA Banner */
.section-10 {
    padding: 80px 0;
    background-color: #FFF;
}

.cta-banner {
    width: 100%;
    max-width: 1352px;
    margin: 0 auto;
    height: 500px;
    border-radius: 24px;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.60) 50%, rgba(0, 0, 0, 0.40) 100%), url('Assets/Home/home-section10-bg-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 80px;
}

.cta-banner .cta-title {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 0.352px;
    margin-bottom: 24px;
    max-width: 632px;
}

.cta-banner .cta-desc {
    color: rgba(255, 255, 255, 0.90);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32.5px;
    letter-spacing: -0.449px;
    margin-bottom: 40px;
    max-width: 570px;
}

.cta-banner .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin: 0;
}

.btn-cta-primary {
    display: flex;
    height: 64px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    background: #1A4D2E;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.312px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-cta-primary:hover {
    background: #11331E;
}

.btn-cta-secondary {
    display: flex;
    height: 64px;
    padding: 0 40px;
    justify-content: center;
    align-items: center;
    gap: 13px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.10);
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.312px;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.20);
    border-color: rgba(255, 255, 255, 0.50);
}

/* Footer */
.footer {
    background: #2A2A2A;
    padding: 64px 36.5px 30px 36.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1352px;
    gap: 40px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 510px;
}

.footer-logo {
    width: auto;
    height: 48px;
    object-fit: contain;
    object-position: left;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.312px;
    width: 510px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.10);
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.20);
}

.social-icon img {
    width: 20px;
    height: 20px;
}

.footer-title {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.439px;
    margin-bottom: 24px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.312px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFF;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.312px;
}

.footer-contact-list img {
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.footer-bottom {
    width: 100%;
    max-width: 1352px;
    height: 73px;
    padding-top: 33px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.footer-bottom-socials {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-socials span {
    color: rgba(255, 255, 255, 0.70);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

/* Tablets */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    .trip-finder {
        padding: 24px;
        height: auto;
        margin-bottom: 60px;
    }

    .season-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .family-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Section 10 Tablet */
    .cta-banner {
        padding-left: 40px;
        padding-right: 40px;
        background-position: center;
        align-items: center;
        text-align: center;
    }

    .cta-title {
        font-size: 36px;
        line-height: 48px;
    }

    .cta-desc {
        font-size: 18px;
        line-height: 28px;
    }

    .cta-buttons {
        justify-content: center;
    }

    /* Footer Tablet */
    .footer-main {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 40px;
    }

    .footer-brand-col {
        min-width: 100%;
        max-width: 100%;
    }

    .footer-desc {
        width: 100%;
        max-width: 800px;
    }

    .footer-links-col {
        flex: 1;
        min-width: 200px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {

    /* Hero Section - ENHANCED */
    .hero {
        min-height: 800px;
        height: auto;
        padding-bottom: 50px;
        padding-top: 400px;
        background-size: cover;
        background-position: center center;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
    }

    .hero-content {
        padding: 0 20px;
        width: 100%;
    }

    .hero-title-light {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 8px;
    }

    .hero-title-bold {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .hero-description {
        width: 100%;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 16px 24px;
        justify-content: center;
    }

    /* Section 2 - Trip Finder - ENHANCED */
    .section-2 {
        padding: 50px 0;
    }

    .trip-finder {
        padding: 24px 20px;
        height: auto;
        gap: 24px;
        margin-bottom: 60px;
    }

    .trip-finder-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .trip-finder-title {
        font-size: 22px;
        line-height: 30px;
    }

    .trip-finder-subtitle {
        font-size: 14px;
        line-height: 20px;
    }

    .trip-finder-style {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .package-style-label {
        font-size: 14px;
    }

    .package-style-toggle {
        height: 48px;
        flex-shrink: 0;
    }

    .package-style-toggle .btn-standard,
    .package-style-toggle .btn-luxury {
        padding: 10px 20px;
        font-size: 14px;
    }

    .trip-finder-form {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .input-field {
        flex: none;
        width: 100%;
        height: 56px;
        min-height: 56px;
        font-size: 15px;
    }

    .btn-send-enquiry {
        flex: none;
        width: 100%;
        height: 56px;
        min-height: 56px;
        font-size: 16px;
        padding: 16px 24px;
    }

    /* Trending Destinations - ENHANCED */
    .section-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 12px;
        padding: 0 10px;
    }

    .section-subtitle {
        width: 100%;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 32px;
        padding: 0 10px;
    }

    .destination-tabs {
        margin-bottom: 32px;
        width: 100%;
        max-width: 300px;
    }

    .tab-btn {
        width: 50%;
        padding: 12px 20px;
        font-size: 15px;
    }

    .destination-cards {
        flex-direction: column;
        gap: 20px;
        padding: 0;
    }

    .dest-card {
        width: 100%;
        height: 400px;
        max-width: 100%;
    }

    .card-content {
        padding: 24px;
    }

    .card-title {
        font-size: 24px;
        line-height: 32px;
    }

    .card-location span {
        font-size: 14px;
    }

    .price {
        font-size: 22px;
        line-height: 28px;
    }

    .btn-view-all {
        width: 100%;
        padding: 16px 24px;
    }

    /* Section 3 - Explore by Season - ENHANCED */
    .section-3 {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .season-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .season-card {
        min-height: 420px;
    }

    .season-card-content {
        padding: 28px 24px;
    }

    .season-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 12px;
    }

    .season-months {
        font-size: 13px;
    }

    .season-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 8px;
    }

    .season-desc {
        font-size: 15px;
        line-height: 23px;
    }

    /* Wide card collapses to the same single-column, bottom-anchored layout
       as a normal card on mobile (was previously a distinct horizontal design). */
    .season-card--wide {
        grid-column: span 1;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-end;
        min-height: 450px;
    }

    .season-card--wide .season-card-gradient {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.90) 100%);
    }

    .season-card--wide .season-card-content {
        padding: 40px 24px;
        max-width: none;
    }

    .season-card--wide .spiritual-icon-container {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .season-card--wide .season-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 8px;
    }

    .season-card--wide .season-desc {
        font-size: 16px;
        line-height: 25px;
    }

    .season-card--wide .season-popular {
        font-size: 14px;
        line-height: 22px;
    }

    .season-card--wide .season-explore-link {
        width: 100%;
        padding: 14px 24px;
    }

    /* Section 4 */
    .section-4 {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .feature-card {
        height: auto;
        min-height: 220px;
        padding: 24px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        padding: 12px;
        margin-bottom: 20px;
    }

    .feature-icon img {
        width: 24px;
        height: 24px;
    }

    .feature-title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 8px;
    }

    .feature-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .cta-bottom-card {
        height: auto;
        padding: 32px 24px;
    }

    .cta-bottom-card .cta-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .cta-bottom-card .cta-desc {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .cta-bottom-card .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 16px 24px;
    }

    /* Section 5 */
    .section-5 {
        padding: 60px 0;
    }

    .process-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .process-card {
        height: auto;
        min-height: 260px;
        padding: 24px;
    }

    .process-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .process-icon img {
        width: 28px;
        height: 28px;
    }

    .process-step {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 12px;
    }

    .process-title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 8px;
    }

    .process-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .process-arrow {
        display: none;
    }

    .process-footer-text {
        font-size: 16px;
        line-height: 24px;
        padding: 0 20px;
    }

    .btn-start-journey {
        width: 100%;
    }

    /* Section 6 */
    .section-6 {
        padding: 60px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .review-card {
        max-width: 100%;
        height: auto;
        min-height: 280px;
    }

    .review-content {
        padding: 24px;
    }

    .quote-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 12px;
    }

    .stars {
        margin-bottom: 12px;
    }

    .stars img {
        width: 18px;
        height: 18px;
    }

    .review-text {
        font-size: 15px;
        line-height: 24px;
    }

    .review-footer {
        padding: 20px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .btn-read-reviews {
        width: 100%;
    }

    /* Section 7 */
    .section-7 {
        padding: 60px 0;
    }

    .family-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .family-card {
        min-height: 280px;
        padding: 24px;
    }

    .family-icon {
        width: 56px;
        height: 56px;
        padding: 14px;
        margin-bottom: 20px;
    }

    .family-card-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 8px;
    }

    .family-card-desc {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .whatsapp-card {
        height: auto;
        padding: 32px 24px;
        margin-top: 40px;
    }

    .whatsapp-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 12px;
    }

    .whatsapp-desc {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 24px;
    }

    .btn-join-whatsapp {
        width: 100%;
    }

    /* Section 8 */
    .section-8 {
        padding: 60px 0;
    }

    .guides-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 40px;
    }

    .guides-header-text {
        max-width: 100%;
    }

    .guides-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 12px;
    }

    .guides-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .btn-view-articles {
        width: 100%;
        padding: 14px 24px;
    }

    .guides-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .guide-img {
        height: 220px;
    }

    .guide-content {
        padding: 20px;
    }

    .guide-title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 52px;
    }

    .guide-desc {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 72px;
    }

    .guide-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    /* Section 9 */
    .section-9 {
        padding: 60px 0;
    }

    .faq-list {
        margin-bottom: 32px;
        gap: 12px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question span {
        font-size: 16px;
        line-height: 24px;
        padding-right: 16px;
    }

    .faq-icon-down,
    .faq-icon-up {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
        line-height: 24px;
        padding-top: 12px;
    }

    .btn-contact-team {
        width: 100%;
    }

    /* Section 10 */
    .section-10 {
        padding: 50px 0;
    }

    .cta-banner {
        height: auto;
        min-height: 450px;
        padding: 40px 24px;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%), url('Assets/Home/home-section10-bg-image.jpg');
        background-position: center;
    }

    .cta-content {
        width: 100%;
    }

    .cta-banner .cta-title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .cta-banner .cta-desc {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .cta-banner .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        height: 56px;
        font-size: 15px;
        padding: 0 24px;
    }

    /* Footer */
    .footer {
        padding: 48px 20px 24px 20px;
        gap: 32px;
    }

    .footer-main {
        flex-direction: column;
        gap: 32px;
    }

    .footer-brand-col {
        max-width: 100%;
    }

    .footer-desc {
        width: 100%;
        font-size: 15px;
        line-height: 24px;
    }

    .footer-contact-list li {
        font-size: 15px;
    }

    .footer-title {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 15px;
    }

    .footer-bottom {
        height: auto;
        padding-top: 24px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .footer-bottom p {
        font-size: 13px;
        line-height: 20px;
    }

    .footer-bottom-socials {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .footer-socials {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .hero {
        min-height: 550px;
        padding-bottom: 40px;
    }

    .hero-title-light,
    .hero-title-bold {
        font-size: 24px;
        line-height: 34px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 24px;
    }

    .section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 22px;
    }

    .trip-finder-title {
        font-size: 20px;
        line-height: 28px;
    }

    .package-style-toggle .btn-standard,
    .package-style-toggle .btn-luxury {
        padding: 8px 16px;
        font-size: 13px;
    }

    .dest-card {
        height: 380px;
    }

    .season-card {
        min-height: 400px;
    }

    .season-title {
        font-size: 24px;
        line-height: 32px;
    }

    .season-card--wide .season-title {
        font-size: 24px;
        line-height: 32px;
    }

    .season-card--wide .season-desc {
        font-size: 15px;
        line-height: 23px;
    }

    .cta-banner .cta-title,
    .cta-bottom-card .cta-title {
        font-size: 24px;
        line-height: 34px;
    }

    .cta-banner .cta-desc,
    .cta-bottom-card .cta-desc {
        font-size: 15px;
        line-height: 24px;
    }
}

/* Extra Small - 360px */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title-light,
    .hero-title-bold {
        font-size: 22px;
        line-height: 32px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 22px;
    }

    .section-title {
        font-size: 22px;
        line-height: 30px;
    }

    .trip-finder {
        padding: 20px 16px;
    }

    .trip-finder-title {
        font-size: 18px;
        line-height: 26px;
    }

    .dest-card {
        height: 360px;
    }

    .season-card {
        min-height: 380px;
    }

    .btn-send-enquiry {
        font-size: 14px;
    }
}
/* Gold Button variation for Membership Rewards */
.btn-join-club.btn-gold {
    border-radius: 12px;
    background: linear-gradient(90deg, #C9A961 0%, rgba(201, 169, 97, 0.64) 100%);
    border: none;
    color: #FFF;
}

.btn-join-club.btn-gold:hover {
    background: linear-gradient(90deg, #B0914F 0%, rgba(201, 169, 97, 0.8) 100%);
}

