/* Booking.com Style Apartment Page */

/* Main Layout */
.apartment-main {
    padding-top: 100px;
    background: #f5f5f5;
    min-height: 100vh;
}

/* Apartment Header */
.apartment-header {
    margin-bottom: 2rem;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.breadcrumb a {
    color: #0071c2;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.apartment-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.apartment-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: #666;
}

.apartment-subtitle i {
    color: #0071c2;
}

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

.rating i {
    color: #febb02;
    font-size: 0.9rem;
}

.rating-score {
    font-weight: 600;
    color: #1a1a1a;
    margin-left: 0.5rem;
}

.rating-text {
    color: #0071c2;
    font-weight: 500;
}

/* Image Gallery */
.image-gallery {
    margin-bottom: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.main-gallery-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    cursor: pointer;
}

.main-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-gallery-image:hover img {
    transform: scale(1.05);
}

.main-gallery-image .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-gallery-image:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-thumbnails {
    width: 100%;
}

.thumbnail-row {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.gallery-thumb {
    width: calc(25% - 0.375rem);
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: #00a6fb;
    transform: scale(1.05);
}

.more-photos {
    width: calc(25% - 0.375rem);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.more-photos:hover {
    background: rgba(0, 166, 251, 0.8);
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #00a6fb;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    padding: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 166, 251, 0.3);
    transform: translateY(-50%) scale(1.1);
}

#lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-gallery-image {
        height: 250px;
    }
    
    .thumbnail-row {
        gap: 0.25rem;
    }
    
    .gallery-thumb,
    .more-photos {
        height: 60px;
    }
    
    .more-photos {
        font-size: 0.8rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 15px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
    
    #lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Apartment Info */
.apartment-info {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1a1a1a;
    font-weight: 500;
    min-width: 0;
    flex: 1;
}

.highlight-item i {
    color: #0071c2;
    width: 20px;
    min-width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.highlight-item span {
    flex: 1;
    min-width: 0;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-badge,
.parking-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0f8ff;
    border-radius: 6px;
    border-left: 4px solid #0071c2;
}

.location-badge i,
.parking-badge i {
    color: #0071c2;
    margin-top: 0.25rem;
}

.location-score {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Amenities Section */
.apartment-amenities {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.apartment-amenities h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.popular-highlights .highlight-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.popular-highlights .highlight-item:hover {
    background: #e3f2fd;
    border-color: #0071c2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 194, 0.15);
}

.activity-link {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.activity-link .btn {
    background: linear-gradient(135deg, #0071c2, #005a9b);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 113, 194, 0.3);
}

.activity-link .btn:hover {
    background: linear-gradient(135deg, #005a9b, #004080);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 113, 194, 0.4);
    color: white;
}

.activity-link .btn i {
    font-size: 0.9rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.amenity-item:hover {
    background: #e9ecef;
}

.amenity-item i {
    color: #0071c2;
    width: 18px;
    font-size: 1.1rem;
}

.amenity-item span {
    color: #1a1a1a;
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reviews-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.reviews-header {
    margin-bottom: 2rem;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-circle {
    width: 60px;
    height: 60px;
    background: #0071c2;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.rating-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.review-highlights h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.review-cards {
    display: grid;
    gap: 1rem;
}

.review-card {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #0071c2;
}

.review-header {
    margin-bottom: 0.75rem;
}

.reviewer-info {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.reviewer-name {
    font-weight: 600;
    color: #1a1a1a;
}

.reviewer-country {
    color: #666;
    font-size: 0.9rem;
}

.review-text {
    color: #333;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Booking Widget */
.booking-widget {
    position: sticky;
    top: 120px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    overflow: hidden;
}

.price-section {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1rem;
    color: #666;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.period {
    font-size: 1rem;
    color: #666;
}

.taxes {
    font-size: 0.9rem;
    color: #666;
}

.booking-form {
    padding: 1.5rem;
}

.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.date-input {
    display: flex;
    flex-direction: column;
}

.date-input label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.guests-input {
    margin-bottom: 1.5rem;
}

.guests-input label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    display: block;
}

.form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0071c2;
    box-shadow: 0 0 0 2px rgba(0,113,194,0.1);
}

.btn-book-now {
    width: 100%;
    background: #0071c2;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 1rem;
}

.btn-book-now:hover {
    background: #005999;
}

.booking-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.contact-info {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.contact-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.contact-item i {
    color: #0071c2;
    width: 16px;
}

/* Apartment Description */
.apartment-description {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.apartment-description h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.description-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.description-content p:last-child {
    margin-bottom: 0;
}

/* Activities Section */
.activities-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.activities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 166, 251, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 166, 251, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.activities-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.activities-header h3 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00a6fb, #0582ca, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 166, 251, 0.3);
}

.activities-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.activity-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 166, 251, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.activity-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 166, 251, 0.2);
    border-color: rgba(0, 166, 251, 0.3);
}

.activity-card.featured {
    background: linear-gradient(135deg, rgba(0, 166, 251, 0.1), rgba(5, 130, 202, 0.05));
    border: 2px solid rgba(0, 166, 251, 0.3);
    box-shadow: 0 15px 40px rgba(0, 166, 251, 0.2);
}

.activity-image {
    height: 120px;
    background: linear-gradient(135deg, #00a6fb, #0582ca, #003d5b);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.activity-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 166, 251, 0.8) 0%, 
        rgba(5, 130, 202, 0.6) 50%, 
        rgba(0, 61, 91, 0.8) 100%);
    opacity: 0.9;
}

.activity-icon {
    font-size: 2.5rem;
    color: white;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-icon {
    transform: scale(1.1) rotate(5deg);
}

.activity-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.activity-info {
    padding: 2rem;
}

.activity-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.activity-category {
    background: rgba(0, 166, 251, 0.15);
    color: #00a6fb;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 166, 251, 0.3);
}

.activity-duration {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.activity-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.activity-info p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.activity-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.activity-distance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.activity-distance i {
    color: #00a6fb;
    font-size: 1rem;
}

.activity-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(255, 193, 7, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.activity-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.activity-rating span {
    color: #ffc107;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .activities-section {
        padding: 60px 0;
    }
    
    .activities-header h3 {
        font-size: 2.5rem;
    }
    
    .activities-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .activity-card {
        margin: 0;
    }
    
    .activity-image {
        height: 100px;
    }
    
    .activity-icon {
        font-size: 2rem;
    }
    
    .activity-info {
        padding: 1.5rem;
    }
    
    .activity-info h4 {
        font-size: 1.3rem;
    }
    
    .activity-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .activity-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .activities-header h3 {
        font-size: 2rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .activity-info {
        padding: 1rem;
    }
    
    .activity-badge {
        top: 10px;
        right: 10px;
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #0a1929 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #60a5fa;
    border-color: #60a5fa;
}

.btn-primary:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: white;
    color: white;
}

.btn-outline-primary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .apartment-hero h1 {
        font-size: 2.5rem;
    }
    
    .apartment-hero .lead {
        font-size: 1.1rem;
    }
    
    .apartment-details {
        padding: 60px 0;
    }
    
    .detail-card {
        margin-bottom: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .apartment-main {
        padding-top: 80px;
    }
    
    .apartment-title {
        font-size: 1.5rem;
    }
    
    .apartment-subtitle {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .thumbnail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-widget {
        position: static;
        margin-top: 2rem;
    }
    
    .date-inputs {
        grid-template-columns: 1fr;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-card {
        flex-direction: column;
        text-align: center;
    }
    
    .activities-content {
        padding: 1.5rem;
    }
    
    .activities-content h3 {
        font-size: 1.5rem;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #60a5fa;
    border-color: #60a5fa;
}

.btn-primary:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: white;
    color: white;
}

.btn-outline-primary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-2px);
}

/* Amenities Section Styling */
.amenities-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.amenities-section .section-header h2 .text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amenities-section .section-header h2 .text-white {
    color: var(--text-dark);
}

.amenities-accordion {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.popular-highlights .highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 166, 251, 0.2);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.highlight-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.accordion-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: #f8f9fa;
    color: var(--text-dark);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(0, 166, 251, 0.1);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.item-count {
    margin-left: auto;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
}

.accordion-body {
    background: white;
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.compact-grid span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.compact-grid span:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.compact-grid span i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Activities Section Styling */
.activities-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.activities-header {
    text-align: center;
    margin-bottom: 3rem;
}

.activities-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.activities-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 0.75rem;
    }
    
    .layout-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 100px);
        padding: 1.5rem;
    }
    
    .living-room {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .kitchen {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }
    
    .bedroom-1 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .bedroom-2 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .bedroom-3 {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }
    
    .bathroom {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }
    
    .balcony {
        grid-column: 1 / 3;
        grid-row: 5 / 6;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
    }
}
