/* ========== FAQ HERO SECTION ========== */
.faq-hero-section {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(18, 18, 18, 0.88) 100%),
        url('https://www.transparenttextures.com/patterns/carbon-fibre-v2.png');
    background-size: auto, 300px 300px;
    min-height: 32vh;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid rgba(0, 176, 176, 0.4);
    overflow: hidden;
}

.faq-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 800px 400px at 50% 50%, 
        rgba(0, 176, 176, 0.15) 0%, 
        transparent 50%
    );
    z-index: 1;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.faq-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    right: -50%;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(0, 212, 212, 0.08) 100px,
            rgba(0, 212, 212, 0.08) 101px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(0, 176, 176, 0.06) 100px,
            rgba(0, 176, 176, 0.06) 101px
        );
    z-index: 1;
    pointer-events: none;
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

.faq-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 212, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 176, 176, 0.10) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    animation: glow 10s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.8;
    }
}

.faq-hero-section .hero-viewport {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px 50px;
}

.faq-hero-section .hero-content {
    max-width: 900px;
    text-align: center;
}

.faq-hero-section .hero-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 212, 212, 0.3);
}

/* ========== FAQ CONTENT SECTION ========== */
.faq-content-section {
    background: #f5f7fa;
    padding: 80px 0 100px;
}

.faq-content-section .container {
    max-width: 1400px;
}

/* ========== HOTEL SECTION ========== */
.hotel-section {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #00b0b0;
    border-radius: 2px;
}

/* Host Hotels Grid */
.host-hotels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.hotel-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 176, 176, 0.15);
    border-color: #00b0b0;
}

.hotel-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.hotel-content {
    padding: 32px;
}

.hotel-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.hotel-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.hotel-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
}

.hotel-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00b0b0;
    font-weight: 700;
    font-size: 1.05rem;
}

.hotel-phone::before {
    content: '📞';
    font-size: 1.2rem;
}

.hotel-phone:hover {
    color: #00d4d4;
}

/* Other Hotels Section */
.other-hotels-section {
    text-align: center;
    margin-top: 60px;
}

.other-hotels-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #495057;
    margin-bottom: 32px;
}

.other-hotels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.other-hotel-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.other-hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #00b0b0;
}

.other-hotel-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

/* ========== FAQ SECTION ========== */
.faq-section {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

.faq-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 28px 32px;
    border-radius: 12px;
    border-left: 4px solid #00b0b0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 176, 176, 0.12);
    background: #ffffff;
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-answer {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.8;
    margin: 0;
}

.faq-answer strong {
    color: #1a1a1a;
    font-weight: 700;
}

.faq-answer a {
    color: #00b0b0;
    font-weight: 700;
    text-decoration: underline;
}

.faq-answer a:hover {
    color: #00d4d4;
}

.faq-answer br {
    margin-bottom: 8px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .host-hotels-grid {
        gap: 32px;
    }
    
    .faq-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .host-hotels-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .other-hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .faq-content-section {
        padding: 60px 0 80px;
    }
    
    .hotel-section,
    .faq-section {
        padding: 40px 24px;
    }
    
    .other-hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 20px 24px;
    }
}
