/* Hero Section */
.detail-hero-section {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-location-info {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    color: white;
    font-size: 1.1rem;
}

.hero-quick-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-pill {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.featured-badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.hostel-logo-container {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hostel-logo-container img {
    max-width: 100%;
    max-height: 200px;
    display: block;
}

/* Breadcrumb */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb-item a {
    color: #FF69B4;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Modern Card */
.modern-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.card-header-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #fff8f8 0%, #fff5f5 100%);
    border-bottom: 2px solid #ffe5e7;
}

.card-header-modern .icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.card-header-modern h2,
.card-header-modern h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.card-content {
    padding: 30px;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 20px;
}

.description-text {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
}

/* Gallery */
.modern-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item-modern {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item-modern:hover {
    transform: scale(1.05);
}

.gallery-item-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-modern:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-modern:hover .gallery-overlay {
    opacity: 1;
}

.gallery-category {
    display: inline-block;
    background: rgba(102, 126, 234, 0.9);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-caption {
    margin: 0;
    font-size: 0.9rem;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.amenity-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff5f5;
    padding: 12px 20px;
    border-radius: 25px;
    color: #1a202c;
    font-weight: 500;
    transition: all 0.3s ease;
}

.amenity-badge:hover {
    background: #FF69B4;
    color: white;
    transform: translateX(5px);
}

.amenity-badge i {
    color: #FF69B4;
    font-size: 1.1rem;
}

.amenity-badge:hover i {
    color: white;
}

/* Accordion Custom Styles */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
    background: #f8f9fa;
    color: #1a202c;
    font-weight: 600;
    padding: 18px 24px;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 24px;
    background: white;
}

/* Room Cards */
.room-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.room-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.room-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card-modern:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.room-content {
    padding: 20px;
}

.room-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.room-type {
    color: #FF69B4;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.room-description {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF69B4;
}

.price-label {
    font-size: 0.9rem;
    color: #718096;
}

.btn-room-details {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-room-details:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #FF69B4 100%);
    transform: translateX(5px);
    color: white;
}

/* Sidebar Styles */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.cta-card {
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: white;
    border-radius: 16px;
    overflow: hidden;
}

.cta-card .card-header-modern {
    background: rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.cta-card .icon-wrapper {
    background: rgba(255,255,255,0.2);
}

.cta-card-header {
    padding: 28px 24px 20px;
    text-align: center;
}

.cta-card-header h3 {
    color: white;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.cta-card-header p {
    margin: 0;
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
    font-weight: 400;
}

.cta-card .card-content {
    padding: 24px 28px 32px;
}

.btn-book-now {
    display: block;
    width: 100%;
    background: white;
    color: #FF1493;
    padding: 18px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    margin-bottom: 24px;
}

.btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: #FF69B4;
    background: #fff;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
}

.feature-item i {
    color: #FFEB3B;
    font-size: 1.15rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/* Info Items */
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #fff5f5;
    transform: translateX(5px);
}

.info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 3px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
}

/* Contact Items */
.contact-item {
    margin-bottom: 12px;
}

.contact-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #1a202c;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    background: #FF69B4;
    color: white;
    transform: translateX(5px);
}

.contact-item a i {
    font-size: 1.3rem;
    color: #FF69B4;
}

.contact-item a:hover i {
    color: white;
}

.contact-item.whatsapp a {
    background: #25D366;
    color: white;
}

.contact-item.whatsapp a i {
    color: white;
}

.contact-item.whatsapp a:hover {
    background: #1ebe57;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-badge {
    background: #fff5f5;
    color: #FF69B4;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Social Links */
.social-links-modern {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.twitter {
    background: #1DA1F2;
}

.social-btn.website {
    background: #FF69B4;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 300px;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.btn-map {
    display: inline-block;
    background: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #FF69B4 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .sticky-sidebar {
        position: static;
    }

    .modern-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .hero-quick-stats {
        flex-direction: column;
        gap: 10px;
    }

    .stat-pill {
        width: 100%;
        text-align: center;
    }
}

/* AOS Animation */
[data-aos] {
    pointer-events: auto;
}
