/* ABOUT US SECTIONS */

.about-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.about-title {
    text-align: center;
    margin-bottom: 30px;
}

.about-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.about-title p {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-images {
    flex: 1 1 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-images img {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-images img:first-child {
    grid-column: span 2;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-text a {
    color: #007BFF;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-images {
        grid-template-columns: 1fr;
    }

    .about-images img:first-child {
        grid-column: span 1;
    }
}

/* FECILITY SECTION */
.facility-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.facility-card {
    flex: 1 1 280px;
    max-width: 360px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}


h2.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

p.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #141414;
    margin-bottom: 40px;
}

/* About Section */
.about-section {
    flex-direction: column;

    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}

.about-images {
    flex: 1;
    min-width: 300px;
    max-width: 480px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.about-images img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.about-text {
    text-align: center;
    flex: 1;

}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.about-text a {
    color: #007BFF;
    text-decoration: underline;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #0066ff;
    /* Proper blue */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.icon-box img {
    width: 38px;

    object-fit: contain;
}

.icon-box i {
    font-size: 24px;
    color: #fff;
}

/* Container setup */
.facility-section {
    background: #e9f1fb;
    padding: 60px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Headings */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.sectionhiro-subtitle {
    font-size: 1rem;
    color: #b3adad;
    margin-bottom: 40px;
}

/* Grid layout */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* Individual card */
.facility-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-5px);
}

/* Icons */
.facility-card i {
    font-size: 32px;
    color: #0066ff;
    margin-bottom: 16px;
}

/* Titles & text */
.facility-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.distanceicon {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #555;
    text-align: left;
}


.facility-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}


/* Nearby Places Section */
.nearby-places-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.nearby-places-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 10px;
}

.nearby-places-section .section-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
}

.places-grid {
    margin: auto;
    max-width: 1111px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Card styling */
.place-card {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.place-card:hover {
    transform: translateY(-5px);
}

.place-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.place-content {
    padding: 5px 20px 20px;
}

.place-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #1a1a1a;
}

.place-content .distance {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 10px;
}

.place-content .distance i {
    color: #007bff;
    margin-right: 5px;
}

.place-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .places-grid {
        grid-template-columns: 1fr;
    }
}

/* LOCATION AND FACILITIES SECTION */
/* General */
.location-section {
    padding: 60px 15px;
    background: #e9f1fb;
    font-family: 'Poppins', sans-serif;
}

.location-container {
    max-width: 1200px;
    margin: auto;
}

.location-header {
    text-align: center;
    margin-bottom: 30px;
}

.location-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.location-subtitle {
    color: #666;
    margin-bottom: 15px;
}

.location-address {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #555;
    flex-wrap: wrap;
}

.location-map-link {
    color: #065EBE;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
}

.location-map-link:hover {
    text-decoration: underline;
}

/* Content Layout */
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
}

/* Image Gallery */
.image-gallery {
    flex: 1 1 350px;
}

.main-image {
    width: 100%;
    border-radius: 8px;
    height: auto;
    object-fit: cover;
    margin-bottom: 12px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    flex: 1 1 100px;
    max-width: 150px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.thumbnail:hover {
    transform: translateY(-3px);
    border: 2px solid #065EBE;
}

/* Facilities */
.facilities-container {
    flex: 1 1 350px;
}

.facilities-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

.facility-item {
    background: #f8f8f8;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    border-left: 3px solid #065EBE;
    transition: background 0.3s ease;
}

.facility-item:hover {
    background: #f0f0f0;
}

.highlight {
    color: #065EBE;
    font-weight: 600;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .location-title {
        font-size: 1.6rem;
    }

    .facilities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .thumbnail {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .location-content {
        flex-direction: column;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .thumbnail-container {
        justify-content: center;
    }
}


/* Base Styles */
:root {
    --primary-color: #007bff;
    --primary-hover: #0069d9;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Section */
.rooms-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.section-header .subtitle {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.rooms-grid {
  margin: auto;
  max-width: 1200px; /* keep container limit */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}


/* Card */
.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Image */
.room-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.room-card:hover img {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #007bff;
    /* your green */
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Info */
.room-info {
    padding: 20px;
    flex: 1;
}

.room-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
}

.features i {
    color: #007bff;
    width: 18px;
    text-align: center;
}

/* Footer */
.room-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.price .amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #222;
}

.price .duration {
    font-size: 0.85rem;
    color: #666;
}

.book-btn {
    background: #007bff;
    color: #fff;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.book-btn:hover {
    background: #007bff;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

    .room-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .book-btn {
        width: 100%;
        justify-content: center;
    }
}