/* ========================================
   ACCOMMODATION PAGE STYLES
======================================== */

/* Accommodation Hero */
.accommodation-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px 80px;
    color: white;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.accommodation-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -250px;
    left: -150px;
    animation: float-acc 8s ease-in-out infinite;
}

@keyframes float-acc {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 30px); }
}

.accommodation-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.accommodation-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-features-acc {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.feature-acc {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.feature-acc:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.feature-acc i {
    color: #4ade80;
}

/* Quick Info Bar */
.accommodation-quick-info {
    background: white;
    padding: 40px 20px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #0066cc, #0052a3);
    color: white;
}

.info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.info-item:hover .info-icon {
    background: white;
    color: #0066cc;
}

.info-item strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.info-item:hover strong {
    color: white;
}

.info-item span {
    font-size: 12px;
    color: #666;
}

.info-item:hover span {
    color: rgba(255,255,255,0.9);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #666;
}

/* Hostel Types Section */
.hostel-types-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.hostel-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.hostel-type-card {
    background: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
}

.hostel-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4ade80;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.card-badge.recommended {
    background: #ff6b35;
}

.hostel-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: white;
    margin-bottom: 25px;
}

.hostel-type-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.hostel-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.hostel-features-list h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.hostel-features-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.hostel-features-list li {
    font-size: 13px;
    color: #666;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hostel-features-list li i {
    color: #4ade80;
    font-size: 14px;
}

.hostel-pricing {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.price-row:last-child {
    margin-bottom: 0;
}

.price-row span {
    font-size: 13px;
    color: #666;
}

.price-row strong {
    font-size: 16px;
    color: #0066cc;
    font-weight: 700;
}

.price-note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

.btn-hostel-details {
    width: 100%;
    padding: 14px 25px;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-hostel-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.3);
}

/* Facilities Section */
.facilities-section {
    padding: 80px 20px;
    background: white;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.facility-card {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.facility-card:hover {
    background: white;
    border-color: #0066cc;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
}

.facility-card h4 {
    font-size: 17px;
    color: #333;
    margin-bottom: 12px;
}

.facility-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

/* ========================================
   HOSTEL GALLERY SECTION
======================================== */
.hostel-gallery-section {
    padding: 80px 20px;
    background: white;
}

.hostel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 48px;
    color: white;
    margin-bottom: 10px;
}

.gallery-overlay span {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: #ff6b35;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 2px solid white;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
    color: #0066cc;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: white;
    font-size: 18px;
    margin-top: 20px;
    font-weight: 500;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    background: rgba(0,0,0,0.5);
    padding: 10px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

/* Accommodation Process */
.accommodation-process-section {
    padding: 80px 20px;
    background: white;
}

.process-steps-acc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step-acc {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    border-top: 4px solid #0066cc;
}

.process-step-acc:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.step-number-acc {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.step-content-acc h4 {
    font-size: 19px;
    color: #333;
    margin-bottom: 12px;
}

.step-content-acc p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Cost Breakdown Section */
.cost-breakdown-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.cost-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cost-column {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.cost-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.cost-column.highlighted-cost {
    border: 3px solid #4ade80;
    box-shadow: 0 10px 40px rgba(46,125,50,0.2);
}

.cost-header {
    background: linear-gradient(135deg, #0066cc, #0052a3);
    color: white;
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.cost-column.highlighted-cost .cost-header {
    background: linear-gradient(135deg, #4ade80, #27ae60);
}

.cost-header h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.cost-badge {
    background: rgba(255,255,255,0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.cost-badge.recommended {
    background: #ff6b35;
}

.cost-body {
    padding: 25px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-item span {
    font-size: 14px;
    color: #666;
}

.cost-item strong {
    font-size: 15px;
    color: #333;
    font-weight: 700;
}

.cost-total {
    background: #f8f9fa;
    padding: 25px;
    text-align: center;
}

.cost-total span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.cost-total strong {
    font-size: 28px;
    color: #0066cc;
    font-weight: 700;
}

.cost-column.highlighted-cost .cost-total strong {
    color: #4ade80;
}

.cost-note-box {
    max-width: 1200px;
    margin: 40px auto 0;
    background: #fff3cd;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.cost-note-box i {
    font-size: 24px;
    color: #856404;
    margin-top: 2px;
}

.cost-note-box div {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
}

/* Safety Section */
.safety-section {
    padding: 80px 20px;
    background: white;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.safety-card {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.safety-card:hover {
    background: white;
    border-color: #4ade80;
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.safety-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4ade80, #27ae60);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin: 0 auto 20px;
}

.safety-card h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
}

.safety-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}
/* ========================================
   FAQ SECTION
   ======================================== */
.accommodation-faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    user-select: none;
    gap: 15px;
}

.faq-question i:first-child {
    color: #667eea;
    font-size: 20px;
    min-width: 20px;
}

.faq-question span {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    color: #1f2937;
}

.faq-question i:last-child {
    color: #667eea;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 60px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-light {
    background: white;
    color: #667eea;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.btn-orange {
    background: #25d366;
    color: white;
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .accommodation-hero {
        padding: 60px 15px 40px;
    }
    
    .accommodation-hero h1 {
        font-size: 32px;
    }
    
    .hero-features-acc {
        flex-direction: column;
        gap: 10px;
    }
    
    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hostel-types-grid {
        grid-template-columns: 1fr;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .hostel-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .process-steps-acc {
        grid-template-columns: 1fr;
    }
    
    .cost-comparison {
        grid-template-columns: 1fr;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .lightbox-prev { left: 15px; }
    .lightbox-next { right: 15px; }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 40px;
    }
    
    .lightbox-content img {
        max-height: 70vh;
    }
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: transparent;
}

.faq-item.active .faq-answer {
    max-height: 1000px; /* Increased from 500px */
    padding: 0 25px 20px 60px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
    padding-top: 10px;
}

