/* ==========================================================================
   HOTEL ARCHIVE – Vibrant Homepage-Aligned Design
   Prefix: ha-   |   Palette & fonts match homepage
   ========================================================================== */

/* ===== Scoped Variables ===== */
.ha-page {
    --ha-sun:       #FF6B35;
    --ha-sky:       #00B4D8;
    --ha-lime:      #06D6A0;
    --ha-rose:      #FF4D6D;
    --ha-violet:    #7B2FBE;
    --ha-yellow:    #FFD166;
    --ha-dark:      #1A1A2E;
    --ha-text:      #2D2D44;
    --ha-muted:     #6B7280;
    --ha-border:    #E5E7EB;
    --ha-bg:        #F8F9FF;
    --ha-white:     #FFFFFF;
    --ha-radius:    16px;
    --ha-radius-sm: 10px;
    --ha-shadow:    0 4px 16px rgba(0,0,0,.06), 0 1px 4px rgba(0,0,0,.04);
    --ha-shadow-md: 0 8px 32px rgba(0,0,0,.10);
    --ha-shadow-lg: 0 16px 48px rgba(0,0,0,.14);
    --ha-font:      'Nunito', sans-serif;
    --ha-heading:   'Righteous', cursive;
    --ha-transition:.3s cubic-bezier(.4,0,.2,1);
    font-family: var(--ha-font);
    color: var(--ha-text);
    background: var(--ha-bg);
}

.ha-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== 1. HERO ===== */
.ha-hero {
    position: relative;
    padding: 90px 24px 110px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0D0D2B 0%, #16213E 30%, #1A1A3E 60%, #0F3460 100%);
    z-index: 1;
}

.ha-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .40;
    animation: haOrbFloat 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
.ha-orb--1 { width:420px; height:420px; background:var(--ha-violet); top:-120px; left:-80px; }
.ha-orb--2 { width:320px; height:320px; background:var(--ha-sky);    top:60px;   right:-80px; animation-delay:2s; }
.ha-orb--3 { width:280px; height:280px; background:var(--ha-rose);   bottom:-60px; left:30%; animation-delay:4s; }
.ha-orb--4 { width:200px; height:200px; background:var(--ha-lime);   bottom:20px;  right:15%; animation-delay:6s; }

@keyframes haOrbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-30px) scale(1.08); }
}

.ha-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.ha-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 740px;
    margin: 0 auto;
}

.ha-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 40px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ha-yellow);
    margin-bottom: 22px;
    letter-spacing: .5px;
}
.ha-hero__badge .material-symbols-outlined { font-size: 18px; }

.ha-hero__title {
    font-family: var(--ha-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.15;
    letter-spacing: .5px;
}

.ha-hero__sub {
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Search bar */
.ha-search { margin: 0 auto; max-width: 600px; }
.ha-search__wrap {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 60px;
    padding: 6px 6px 6px 20px;
    transition: border-color var(--ha-transition);
}
.ha-search__wrap:focus-within { border-color: var(--ha-sky); }
.ha-search__icon { color: rgba(255,255,255,.5); font-size: 22px; margin-right: 10px; }
.ha-search__input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    outline: none;
    font-size: 15px;
    color: #fff;
    padding: 12px 8px !important;
    font-family: var(--ha-font);
}
.ha-search__input::placeholder { color: rgba(255,255,255,.45); }
.ha-search__btn {
    background: linear-gradient(135deg, var(--ha-violet), var(--ha-sky));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-family: var(--ha-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform var(--ha-transition), box-shadow var(--ha-transition);
}
.ha-search__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123,47,190,.4);
}

/* ===== 2. FILTERS BAR ===== */
.ha-filters {
    background: var(--ha-white);
    border-bottom: 1px solid var(--ha-border);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.ha-filters__form {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ha-filter-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--ha-bg);
    border: 1px solid var(--ha-border);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--ha-text);
    transition: border-color var(--ha-transition), background var(--ha-transition);
    cursor: pointer;
}
.ha-filter-pill:hover,
.ha-filter-pill:focus-within {
    border-color: var(--ha-violet);
    background: rgba(123,47,190,.05);
}
.ha-filter-pill .material-symbols-outlined { font-size: 18px; color: var(--ha-violet); }

.ha-filter-pill__select {
    border: none;
    background: transparent;
    font-family: var(--ha-font);
    font-size: 14px;
    color: var(--ha-text);
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 4px;
}

.ha-filters__apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--ha-violet), var(--ha-sky));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-family: var(--ha-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-left: auto;
    transition: transform var(--ha-transition), box-shadow var(--ha-transition);
}
.ha-filters__apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(123,47,190,.35);
}
.ha-filters__apply .material-symbols-outlined { font-size: 18px; }

.ha-filters__clear {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ha-rose);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: opacity var(--ha-transition);
}
.ha-filters__clear:hover { opacity: .7; }
.ha-filters__clear .material-symbols-outlined { font-size: 16px; }

/* ===== 3. CONTENT AREA ===== */
.ha-content {
    padding: 48px 0 72px;
}

.ha-results-bar {
    margin-bottom: 32px;
}
.ha-results-bar__heading {
    font-family: var(--ha-heading);
    font-size: 26px;
    color: var(--ha-dark);
    margin: 0;
}

/* ===== 4. CARD GRID ===== */
.ha-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ha-card {
    background: var(--ha-white);
    border-radius: var(--ha-radius);
    overflow: hidden;
    box-shadow: var(--ha-shadow);
    transition: transform var(--ha-transition), box-shadow var(--ha-transition);
    display: flex;
    flex-direction: column;
}
.ha-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ha-shadow-md);
}

.ha-card__img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.ha-card__img img,
.ha-card__img a { display: block; width: 100%; height: 100%; }
.ha-card__img img {
    object-fit: cover;
    transition: transform .5s ease;
}
.ha-card:hover .ha-card__img img { transform: scale(1.06); }

.ha-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ha-violet), var(--ha-sky));
    text-decoration: none;
}
.ha-card__placeholder .material-symbols-outlined { font-size: 48px; color: rgba(255,255,255,.4); }

.ha-card__stars {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    color: var(--ha-yellow);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 2px;
}

.ha-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ha-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.ha-card__tag {
    background: linear-gradient(135deg, rgba(123,47,190,.08), rgba(0,180,216,.08));
    color: var(--ha-violet);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ha-card__title {
    font-family: var(--ha-font);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 8px;
}
.ha-card__title a {
    color: var(--ha-dark);
    text-decoration: none;
    transition: color var(--ha-transition);
}
.ha-card__title a:hover { color: var(--ha-violet); }

.ha-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--ha-muted);
    margin-bottom: 8px;
}
.ha-card__location .material-symbols-outlined { font-size: 16px; color: var(--ha-rose); }

.ha-card__excerpt {
    font-size: 13px;
    color: var(--ha-muted);
    line-height: 1.55;
    margin: 0 0 auto;
    padding-bottom: 14px;
}

.ha-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--ha-border);
}

.ha-card__price-amount {
    font-size: 22px;
    font-weight: 800;
    color: var(--ha-violet);
}
.ha-card__price-period {
    font-size: 12px;
    color: var(--ha-muted);
    margin-left: 2px;
}

.ha-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--ha-violet), var(--ha-sky));
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    transition: transform var(--ha-transition), box-shadow var(--ha-transition);
}
.ha-card:hover .ha-card__cta {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123,47,190,.25);
}
.ha-card__cta .material-symbols-outlined { font-size: 16px; }

/* ===== 5. PAGINATION ===== */
.ha-pagination {
    margin-top: 48px;
    text-align: center;
}
.ha-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.ha-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    font-family: var(--ha-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--ha-text);
    background: var(--ha-white);
    border: 1px solid var(--ha-border);
    text-decoration: none;
    transition: all var(--ha-transition);
}
.ha-pagination .page-numbers:hover {
    border-color: var(--ha-violet);
    color: var(--ha-violet);
    background: rgba(123,47,190,.05);
}
.ha-pagination .page-numbers.current {
    background: linear-gradient(135deg, var(--ha-violet), var(--ha-sky));
    color: #fff;
    border-color: transparent;
}
.ha-pagination .page-numbers .material-symbols-outlined { font-size: 20px; }

/* ===== 6. EMPTY STATE ===== */
.ha-empty {
    text-align: center;
    padding: 80px 20px;
}
.ha-empty__icon {
    font-size: 64px;
    color: var(--ha-border);
    margin-bottom: 16px;
}
.ha-empty h3 {
    font-family: var(--ha-heading);
    font-size: 24px;
    color: var(--ha-dark);
    margin: 0 0 8px;
}
.ha-empty p {
    color: var(--ha-muted);
    margin: 0 0 24px;
}
.ha-empty__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--ha-violet), var(--ha-sky));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-family: var(--ha-font);
    font-size: 15px;
    font-weight: 700;
    transition: transform var(--ha-transition), box-shadow var(--ha-transition);
}
.ha-empty__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123,47,190,.35);
}

/* ===== 7. RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ha-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
    .ha-hero { padding: 70px 20px 80px; }
    .ha-filters__form { gap: 8px; }
    .ha-filters__apply { margin-left: 0; }
}
@media (max-width: 600px) {
    .ha-grid { grid-template-columns: 1fr; gap: 20px; }
    .ha-hero { padding: 60px 16px 70px; }
    .ha-hero__title { font-size: 1.8rem; }
    .ha-search__wrap { flex-direction: column; border-radius: 16px; padding: 12px; gap: 10px; }
    .ha-search__input { width: 100%; text-align: center; }
    .ha-search__btn { width: 100%; }
    .ha-search__icon { display: none; }
    .ha-filters { position: static; }
    .ha-filters__form { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
    .ha-filter-pill { flex-shrink: 0; }
    .ha-card__cta { padding: 6px 14px; font-size: 12px; }
}


/* ============================================
   SINGLE HOTEL PAGE
   ============================================ */

.single-hotel-page {
    background: #f8f9fa;
}

.section-padding {
    padding: 60px 0;
}

.bg-light {
    background: #f0f4f8;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0 0 30px;
    text-align: center;
}

.section-title-left {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0 0 24px;
    text-align: left;
}

/* Hero Section — full width image with overlay */
.hotel-hero-section {
    position: relative;
    background: #000;
}

.hotel-hero-image {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.hotel-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
}

.hero-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 0 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
}

.hotel-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hotel-meta-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    flex-wrap: wrap;
    color: #fff;
}

.hotel-meta-info .star-rating {
    color: #ffd700;
}

.hotel-meta-info .location {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hotel-meta-info .address-text {
    opacity: 0.85;
    font-size: 13px;
}

.hero-action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-check-availability {
    background: #ff6600;
    color: #fff;
}

.btn-check-availability:hover {
    background: #e55b00;
    color: #fff;
}

.btn-request-price {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.btn-request-price:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
}


/* ============================================
   CONTENT WRAPPER: 2-column layout
   ============================================ */

.hotel-content-wrapper {
    padding: 40px 0 60px;
}

.hotel-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

.hotel-main-column {
    min-width: 0;
}

.hotel-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 24px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

/* Sticky Sidebar */
.hotel-sidebar-column {
    min-width: 0;
}

.hotel-sidebar-sticky {
    position: sticky;
    top: 90px;
}

/* Booking Form Card */
.booking-form-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.booking-form-title {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0066cc;
    color: #fff;
    padding: 16px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.booking-form {
    padding: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #0066cc;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-half {
    flex: 1;
}

.btn-submit-booking {
    width: 100%;
    padding: 14px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit-booking:hover {
    background: #e55b00;
}

.btn-submit-booking:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.privacy-notice {
    font-size: 11px;
    color: #999;
    line-height: 1.4;
    margin-top: 12px;
}

.booking-response {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    animation: slideDown 0.3s ease;
}

.booking-response p {
    margin: 0;
}

.booking-response.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.booking-response.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Highlight animation when scrolling to form */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes highlightPulse {
    0% { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
    50% { box-shadow: 0 4px 30px rgba(0,102,204,0.35); }
    100% { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
}

.booking-form-card.booking-highlight {
    animation: highlightPulse 0.75s ease 2;
}

/* Why Book Section */
.why-book-section {
    padding: 20px;
    border-top: 1px solid #eee;
}

.why-book-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.why-book-item + .why-book-item {
    border-top: 1px solid #f0f0f0;
}

.why-book-text strong {
    display: block;
    font-size: 13px;
    color: #222;
}

.why-book-text span {
    font-size: 12px;
    color: #666;
}


/* ============================================
   ABOUT SECTION (inside left column)
   ============================================ */

.hotel-about-section {
    background: #fff;
}

.hotel-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.hotel-description p {
    margin-bottom: 16px;
}

.hotel-quick-info {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.quick-info-item {
    background: #f0f6fc;
    padding: 12px 18px;
    border-radius: 8px;
    flex: 1;
    min-width: 120px;
}

.qi-label {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.qi-value {
    font-size: 15px;
    font-weight: 600;
    color: #0066cc;
}


/* ============================================
   ROOM CATEGORIES
   ============================================ */

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.room-card {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.room-image {
    height: 180px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-content {
    padding: 16px;
}

.room-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 4px;
}

.room-subtitle {
    font-size: 12px;
    color: #888;
    margin: 0 0 10px;
}

.room-features {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    padding: 3px 0;
}

.room-features li svg {
    flex-shrink: 0;
}

/* Room request price button (inside card) */
.room-card .btn-request-price {
    background: #0066cc;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}

.room-card .btn-request-price:hover {
    background: #0055aa;
    color: #fff;
}


/* ============================================
   AMENITIES
   ============================================ */

.amenities-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 16px;
}

.amenity-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.amenity-icon-item:hover {
    transform: translateY(-2px);
    background: #e8f4fd;
}

.amenity-icon-item img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.amenity-icon-item span {
    font-size: 12px;
    font-weight: 500;
    color: #333;
}


/* ============================================
   LOCATION & ATTRACTIONS
   ============================================ */

.location-map-wrap {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.hotel-google-map {
    display: block;
    width: 100%;
    min-height: 300px;
}

.nearby-attractions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.attraction-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.2s;
}

.attraction-item:hover {
    transform: translateX(4px);
}

.attraction-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f4fd;
    border-radius: 10px;
}

.attraction-info strong {
    display: block;
    font-size: 14px;
    color: #222;
}

.attraction-info span {
    font-size: 13px;
    color: #888;
}


/* ============================================
   TOUR COMBOS (inside left column)
   ============================================ */

.tours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.tour-combo-card {
    display: flex;
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tour-combo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.tour-combo-card .tour-image {
    width: 180px;
    flex-shrink: 0;
    overflow: hidden;
}

.tour-combo-card .tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tour-combo-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-combo-card .tour-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-combo-card .tour-content h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 6px;
}

.tour-combo-card .tour-content h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

.tour-combo-card .tour-content h3 a:hover {
    color: #0066cc;
}

.tour-combo-card .tour-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 10px;
}

.btn-tour-booking {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-tour-booking:hover {
    background: #0055aa;
    color: #fff;
}


/* ============================================
   FAQ SECTION
   ============================================ */

.faq-accordion {
    width: 100%;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #eef2f6;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-icon.rotate {
    transform: rotate(180deg);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 18px 16px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* ============================================
   BOTTOM CTA SECTION (full width, outside grid)
   ============================================ */

.hotel-cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
}

.cta-description {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-request-price-large {
    background: #ff6600;
    color: #fff;
}

.btn-request-price-large:hover {
    background: #e55b00;
    color: #fff;
}

.btn-call {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-call:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}


/* ============================================
   TOUR HOTELS SECTION (on tour page)
   ============================================ */

.tour-hotels-section {
    padding: 40px 0;
}

.tour-hotels-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 24px;
}

.tour-hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hotel-content-grid {
        grid-template-columns: 1fr 320px;
        gap: 24px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hotel-content-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-sidebar-sticky {
        position: static;
    }
    
    .hotel-sidebar-column {
        order: -1;
    }
    
    .hotel-hero-image {
        height: 280px;
    }
    
    .hotel-hero-title {
        font-size: 24px;
    }
    
    .hero-action-buttons {
        flex-direction: column;
    }
    
    .hotels-hero .page-title {
        font-size: 28px;
    }
    
    .filter-row {
        flex-direction: column;
    }
    
    .filter-group {
        min-width: 100%;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-title-left {
        font-size: 22px;
    }
    
    .hotel-section {
        padding: 20px;
        margin-bottom: 16px;
    }
    
    .hotel-quick-info {
        flex-direction: column;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .tour-combo-card {
        flex-direction: column;
    }
    
    .tour-combo-card .tour-image {
        width: 100%;
        height: 180px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tour-hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .amenities-icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .section-padding {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .amenities-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .hotel-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .hero-overlay-content .container {
        padding: 0 16px;
    }
}
