/* ========================================
   RECENTLY VIEWED SECTION
   ======================================== */
.recently-viewed-section {
    padding: 40px 0 0;
}

.recently-viewed-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.recent-search-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 240px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: box-shadow var(--transition);
}

.recent-search-card:hover {
    box-shadow: var(--shadow-md);
}

.recent-search-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recent-search-info strong {
    font-size: 1rem;
    color: var(--gray-900);
}

.recent-search-info span {
    font-size: 0.8rem;
    color: var(--primary);
}

.recent-search-icon {
    font-size: 1rem;
    color: var(--gray-400);
    margin-left: auto;
}

.recent-hotel-card {
    display: flex;
    gap: 12px;
    min-width: 260px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: box-shadow var(--transition);
}

.recent-hotel-card:hover {
    box-shadow: var(--shadow-md);
}

.recent-hotel-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.recent-hotel-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.recent-hotel-info strong {
    font-size: 0.9rem;
    color: var(--gray-900);
}

.recent-hotel-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
}

.recent-hotel-meta .review-count {
    color: var(--gray-500);
    font-size: 0.75rem;
}

.recent-hotel-type {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ========================================
   LOCATION DEALS SECTION
   ======================================== */
.location-deals-section {
    padding: 40px 0;
}

.location-deals-scroll {
    position: relative;
}

.location-deals-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.location-deals-track::-webkit-scrollbar {
    height: 6px;
}

.location-deals-track::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

.loc-deal-card {
    min-width: 280px;
    max-width: 300px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.loc-deal-card:hover {
    box-shadow: var(--shadow-lg);
}

.loc-deal-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.loc-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.loc-deal-card:hover .loc-deal-image img {
    transform: scale(1.05);
}

.loc-deal-body {
    padding: 14px 16px;
}

.loc-deal-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.loc-deal-location {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.loc-deal-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.loc-deal-rating .rating-badge {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3px 7px;
    border-radius: 6px 6px 6px 0;
    font-size: 0.85rem;
    font-weight: 700;
}

.loc-deal-rating .rating-badge.rating-good {
    background: #3b7fc4;
}

.loc-deal-rating .rating-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-800);
}

.loc-deal-rating .review-count {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.loc-deal-provider {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.loc-deal-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}

.loc-deal-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.loc-deal-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-600);
}

.loc-deal-price-drop {
    font-size: 0.78rem;
    color: var(--success);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.loc-deal-price-drop i {
    font-size: 0.7rem;
}

.loc-deal-discount-badge {
    display: inline-block;
    background: #cc0000;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.loc-deal-similar-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.loc-deal-dates {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* ========================================
   PRICE CALENDAR SECTION
   ======================================== */
.price-calendar-section {
    padding: 60px 0 40px;
    background: var(--white);
}

.price-calendar-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--gray-200);
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 0;
}

.price-calendar-tabs::-webkit-scrollbar {
    display: none;
}

.pc-tab {
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: all var(--transition);
    margin-bottom: -2px;
}

.pc-tab:hover {
    color: var(--gray-900);
}

.pc-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

.price-calendar-content {
    display: flex;
    gap: 0;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    overflow: hidden;
}

.pc-image {
    width: 380px;
    min-height: 320px;
    flex-shrink: 0;
}

.pc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-months {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pc-month-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid var(--gray-200);
    cursor: pointer;
    transition: background var(--transition);
    background: var(--white);
}

.pc-month-row:last-child {
    border-bottom: none;
}

.pc-month-row:nth-child(even) {
    background: var(--gray-100);
}

.pc-month-row:hover {
    background: var(--primary-light);
}

.pc-month-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-800);
}

.pc-month-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 6px;
}

.pc-month-price i {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.pc-note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--gray-500);
    font-style: italic;
}

/* ========================================
   POPULAR SEARCHES SECTION (Swiper)
   ======================================== */
.popular-searches-section {
    padding: 60px 0 40px;
}

.ps-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.ps-tab {
    padding: 0 0 8px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
}

.ps-tab:hover {
    color: var(--gray-800);
}

.ps-tab.active {
    color: var(--gray-900);
    font-weight: 700;
    border-bottom-color: var(--gray-900);
}

.ps-panel {
    display: none;
}

.ps-panel.active {
    display: block;
}

/* Swiper container */
.ps-swiper {
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
}

.ps-swiper .swiper-slide {
    width: auto;
    height: auto;
}

.ps-card {
    display: block;
    width: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.ps-card:hover {
    box-shadow: var(--shadow-lg);
}

.ps-card-image {
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.ps-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ps-card:hover .ps-card-image img {
    transform: scale(1.05);
}

.ps-card-body {
    padding: 14px 16px;
}

.ps-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.ps-hotel-count {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
}

.ps-hotel-count small,
.ps-avg-price small {
    font-weight: 400;
    color: var(--gray-500);
    font-size: 0.82rem;
}

.ps-avg-price {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* Swiper Navigation */
.ps-swiper-next {
    width: 42px !important;
    height: 42px !important;
    background: var(--white) !important;
    border: 1px solid var(--gray-300) !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-md) !important;
    color: var(--gray-700) !important;
    right: 0 !important;
    top: 45% !important;
}

.ps-swiper-next::after {
    font-size: 16px !important;
    font-weight: 700 !important;
}

.ps-swiper-next:hover {
    background: var(--gray-100) !important;
    box-shadow: var(--shadow-lg) !important;
}

.ps-swiper-next.swiper-button-disabled {
    opacity: 0 !important;
}

/* Swiper Scrollbar */
.ps-swiper-scrollbar {
    bottom: 6px !important;
    left: 0 !important;
    width: 100% !important;
    height: 5px !important;
    background: var(--gray-200) !important;
    border-radius: 3px !important;
}

.ps-swiper-scrollbar .swiper-scrollbar-drag {
    background: var(--gray-500) !important;
    border-radius: 3px !important;
}

/* ========================================
   MEMBER CTA BANNER
   ======================================== */
.member-cta-section {
    padding: 20px 0 40px;
}

.member-cta-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: linear-gradient(135deg, #febb02 0%, #f5a623 100%);
    border-radius: var(--radius-md);
}

.member-cta-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.member-cta-icon i {
    font-size: 1.2rem;
    color: var(--gray-900);
}

.member-cta-text {
    flex: 1;
}

.member-cta-text strong {
    display: block;
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 700;
}

.member-cta-text span {
    font-size: 0.88rem;
    color: var(--gray-800);
}

.member-cta-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--white);
    border: 1px solid var(--gray-900);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
    transition: all var(--transition);
}

.member-cta-btn:hover {
    background: var(--gray-900);
    color: var(--white);
}

.member-cta-btn i {
    font-size: 0.75rem;
}

/* ========================================
   POPULAR DESTINATIONS
   ======================================== */
.popular-destinations, .deals-section, .how-it-works {
    padding: 60px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

.destination-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.destination-card.large {
    grid-row: span 2;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
}

.destination-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
}

.destination-overlay span {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ========================================
   DEALS SECTION
   ======================================== */
.deals-section {
    background: var(--white);
}

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

.deal-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.deal-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.deal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.deal-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all var(--transition);
}

.deal-favorite:hover,
.deal-favorite.active {
    color: var(--danger);
}

.deal-card-body {
    padding: 16px;
}

.deal-card-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.deal-location {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.deal-location i {
    margin-right: 4px;
    color: var(--primary);
}

.deal-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-text-small {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.deal-stars {
    color: var(--warning);
    font-size: 0.75rem;
}

.deal-pricing {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.deal-original-price {
    text-decoration: line-through;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.deal-current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
}

.deal-current-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-600);
}

.deal-provider {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* "Devamini Oku" pill button (top-left corner reveal) */
.card-banner-slide .card-info {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.card-banner-slide:hover .card-info {
    opacity: 1;
    transform: translateY(0);
}
.card-banner-slide .box-button .btn-brand-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.card-banner-slide .box-button .btn-brand-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(2px);
}
.card-banner-slide .box-button .btn-brand-secondary svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
}
.card-banner-slide .box-button .btn-brand-secondary svg path {
    stroke: currentColor !important;
}

/* Decorative top-right "blog" badge on each card */
.card-banner-slide::before {
    content: 'Blog';
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    color: #1a1a1a;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Navigation arrows */
.box-button-slider {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    padding: 0 -20px;
}
.swiper-button-prev,
.swiper-button-next {
    pointer-events: auto;
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--gray-200);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    margin: 0;
}
.swiper-button-prev { transform: translateX(-22px); }
.swiper-button-next { transform: translateX(22px); }
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 28px rgba(0, 127, 173, 0.35);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}
.swiper-button-prev svg,
.swiper-button-next svg {
    width: 22px;
    height: 22px;
    stroke: #1a1a1a;
    transition: stroke 0.25s, transform 0.25s;
}
.swiper-button-prev svg path,
.swiper-button-next svg path {
    stroke: #1a1a1a;
    stroke-width: 1.6;
}
.swiper-button-prev:hover svg path,
.swiper-button-next:hover svg path {
    stroke: #fff;
}
.swiper-button-prev:hover svg { transform: translateX(-2px); }
.swiper-button-next:hover svg { transform: translateX(2px); }

@media (max-width: 768px) {
    .swiper-button-prev,
    .swiper-button-next { display: none; }
    .swiper-group-journey { padding: 8px 0 20px; }
    .card-banner-slide .text-k { font-size: 0.95rem; }
}

/* ========================================
   SHORTCUT CTA BANNER
   ======================================== */
.shortcut-cta-section {
    padding: 40px 0 20px;
}
.shortcut-banner {
    display: flex;
    align-items: stretch;
    background: #fdf2cd;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid #f5e6a8;
    overflow: hidden;
    text-decoration: none;
    color: #1a1a1a;
    min-height: 180px;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}
.shortcut-banner:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.sb-stripe {
    width: 8px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.sb-stripe-left { background: #ee5a3b; }

.sb-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 36px 52px;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.sb-text { flex: 1; max-width: 60%; }
.sb-text h3 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin: 0 0 22px;
    letter-spacing: -0.3px;
}
.sb-btn {
    background: #1aa874;
    color: #fff;
    border: none;
    padding: 13px 28px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 6px 16px rgba(26, 168, 116, 0.35);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.sb-btn:hover {
    background: #168f63;
    transform: scale(1.05);
    box-shadow: 0 10px 22px rgba(26, 168, 116, 0.45);
}

/* Right visual — vacation icons cluster */
.sb-visual {
    position: relative;
    width: 320px;
    height: 200px;
    flex-shrink: 0;
}
.sb-ic {
    position: absolute;
    color: #168f63;
    filter: drop-shadow(0 6px 14px rgba(22, 143, 99, 0.25));
    transition: transform 0.4s ease;
}
.sb-ic-1 { top: 18%;  left: 8%;   font-size: 3.4rem; transform: rotate(-10deg); }
.sb-ic-2 { top: 6%;   left: 42%;  font-size: 2.4rem; color: #ee5a3b; transform: rotate(12deg); }
.sb-ic-3 { top: 55%;  left: 38%;  font-size: 2.6rem; color: #1a1a1a; transform: rotate(-6deg); }
.sb-ic-4 { top: 12%;  right: 8%;  font-size: 2.8rem; color: #f0a500; transform: rotate(8deg); }
.sb-ic-5 { bottom: 14%; right: 22%; font-size: 3rem; color: #f0a500; transform: rotate(-4deg); }
.sb-ic-6 { bottom: 8%;  right: 2%; font-size: 2.3rem; color: #1a1a1a; transform: rotate(10deg); }

.shortcut-banner:hover .sb-ic-1 { transform: rotate(0deg) scale(1.1); }
.shortcut-banner:hover .sb-ic-2 { transform: rotate(0deg) translateX(6px); }
.shortcut-banner:hover .sb-ic-3 { transform: rotate(0deg) scale(1.08); }
.shortcut-banner:hover .sb-ic-4 { transform: rotate(0deg) scale(1.08); }
.shortcut-banner:hover .sb-ic-5 { transform: rotate(20deg) scale(1.1); }
.shortcut-banner:hover .sb-ic-6 { transform: rotate(0deg) scale(1.05); }

@media (max-width: 560px) {
    .sb-visual { display: none; }
}

@media (max-width: 860px) {
    .sb-content { padding: 24px 28px; flex-direction: column; align-items: flex-start; }
    .sb-text { max-width: 100%; }
    .sb-text h3 { font-size: 1.4rem; }
    .sb-text h3 br { display: none; }
    .sb-visual { width: 100%; max-width: 320px; align-self: center; }
}
@media (max-width: 560px) {
    .sb-stripe { width: 12px; }
    .sb-visual { display: none; }
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}
.how-it-works .section-header {
    text-align: center;
    margin-bottom: 50px;
}
.hiw-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--white);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    border: 1px solid var(--primary-light);
}
.how-it-works .section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}
.how-it-works .section-header p {
    color: var(--gray-600);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 78px;
    left: 16%;
    right: 16%;
    height: 2px;
    background-image: linear-gradient(to right, var(--primary) 50%, transparent 50%);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 36px 28px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 127, 173, 0.18);
    border-color: var(--primary);
}

.step-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-light);
    line-height: 1;
    letter-spacing: -1px;
}

.step-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.7rem;
    color: var(--white);
    box-shadow: 0 10px 24px rgba(0, 127, 173, 0.28);
    transform: rotate(-6deg);
    transition: transform 0.3s ease;
}
.step-card:hover .step-icon {
    transform: rotate(0deg) scale(1.05);
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.step-card p {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; gap: 18px; }
    .steps-grid::before { display: none; }
}

/* ========================================
   SEO CONTENT SECTION
   ======================================== */
.seo-content-section {
    padding: 70px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}
.seo-content-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.seo-header {
    text-align: center;
    margin-bottom: 50px;
}
.seo-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.seo-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: -0.4px;
}
.seo-lead {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--gray-700);
    max-width: 760px;
    margin: 0 auto;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 60px;
}
.seo-block {
    padding: 26px 28px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: border-color 0.25s, transform 0.25s;
}
.seo-block:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}
.seo-block h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.seo-block h3 i {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.seo-block p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

/* FAQ */
.seo-faq h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0 0 22px;
    text-align: center;
    letter-spacing: -0.3px;
}
.seo-faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.seo-faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 6px 22px rgba(0, 127, 173, 0.10);
}
.seo-faq-item summary {
    list-style: none;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.seo-faq-item summary::-webkit-details-marker { display: none; }
.seo-faq-item summary::after {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-color: var(--primary);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>") no-repeat center / contain;
    transition: transform 0.25s;
}
.seo-faq-item[open] summary::after {
    transform: rotate(180deg);
}
.seo-faq-item p {
    padding: 0 22px 20px;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .seo-content-section { padding: 50px 0; }
    .seo-header h2 { font-size: 1.5rem; }
    .seo-grid { grid-template-columns: 1fr; gap: 16px; }
    .seo-block { padding: 20px 22px; }
    .seo-faq-item summary { padding: 16px 18px; font-size: 0.95rem; }
}

/* ========================================
   MOOD BOARD SECTION (tatil ilham)
   ======================================== */
.mood-board-section {
    padding: 70px 0;
    background: var(--gray-100);
}
.mood-board-section .section-header-row {
    margin-bottom: 28px;
}
.mood-board-section h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
}
.mood-board-section .section-sub {
    color: var(--gray-600);
    font-size: 1rem;
    margin: 0;
}

.mood-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 16px;
}
.mood-grid .mood-card:nth-child(1) {
    grid-row: 1 / 3;
}

.mood-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    display: block;
    color: var(--white);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.mood-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}
.mood-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.mood-card:hover img {
    transform: scale(1.08);
}
.mood-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.78) 100%);
    transition: background 0.3s ease;
}
.mood-card:hover .mood-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.85) 100%);
}
.mood-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 2;
}
.mood-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--white);
}
.mood-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 4px;
    color: var(--white);
    letter-spacing: -0.3px;
}
.mood-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}
.mood-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    opacity: 0;
    transform: translate(8px, -8px);
    transition: all 0.3s ease;
    z-index: 2;
}
.mood-card:hover .mood-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

.mood-card.mood-beach .mood-content h3 { font-size: 1.6rem; }

@media (max-width: 900px) {
    .mood-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    .mood-grid .mood-card:nth-child(1) { grid-row: auto; }
}
@media (max-width: 560px) {
    .mood-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 200px);
    }
    .mood-board-section { padding: 50px 0; }
    .mood-board-section h2 { font-size: 1.5rem; }
}

.location-deals-track {
    overflow-x: hidden;
}