/* City Hotels Page Specific Styles */
.ch-page {
    background-color: var(--background);
    min-height: 100vh;
}

.ch-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.ch-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.ch-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.ch-hero .ch-container {
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}

.ch-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
}

.ch-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ch-hero-description {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.6;
    max-width: 600px;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ch-filters {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.ch-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-end;
}

.ch-filter-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ch-filter-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.ch-filter-group select {
    appearance: none;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    padding-right: 2.5rem;
    font-size: 0.875rem;
    line-height: 1.25;
    color: var(--text-dark);
    width: 100%;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
}

.ch-filter-group select:hover {
    border-color: var(--primary);
}

.ch-filter-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Star Rating Options */
.ch-filter-group select option {
    padding: 0.5rem;
    font-size: 0.875rem;
}

/* Active Filters Display */
.ch-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.ch-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.ch-filter-tag button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.125rem;
    margin-left: 0.25rem;
    border: none;
    background: none;
    color: currentColor;
    cursor: pointer;
}

.ch-hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ch-hotel-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.ch-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.ch-hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.ch-card-image {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    overflow: hidden;
}

.ch-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.ch-card-content {
    padding: 1rem;
}

.ch-hotel-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.ch-star-rating {
    color: var(--primary);
}

.ch-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ch-price {
    margin-top: 0.5rem;
}

.ch-amount {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
}

.ch-period {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-left: 0.25rem;
}

@media (max-width: 1024px) {
    .ch-hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ch-hero {
        height: 400px;
    }
    
    .ch-hero .ch-container {
        padding-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .ch-hero {
        height: 350px;
    }
    
    .ch-hero .ch-container {
        padding-bottom: 2rem;
    }
    
    .ch-hero-title {
        font-size: clamp(2rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .ch-hero-description {
        font-size: 1rem;
    }
    
    .ch-hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .ch-container {
        padding: 0 1rem;
    }

    .ch-filters {
        padding: 1rem;
    }

    .ch-filter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .ch-filter-group {
        width: 100%;
    }
}

.city-faqs {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.faqs-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: #333;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #666;
    font-size: 0.9rem;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
    line-height: 1.6;
    color: #666;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .city-faqs {
        padding: 40px 15px;
    }

    .faqs-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .faqs-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 1rem;
    }
} 