/**
 * Subpages Styles
 * Styles for all subpages (About, Contact, Gallery, Amenities, Archives, Singles)
 *
 * @package Mets_Boutique
 * @since 1.0.0
 */

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    height: 800px;
    position: relative;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    padding: 0 30px;
}

.hero-title {
    color: white;
    font-size: 56px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

/* ==========================================================================
   Breadcrumb (Inside Hero)
   ========================================================================== */

.hero-breadcrumb {
    margin-bottom: 30px;
}

.hero-breadcrumb .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.hero-breadcrumb .breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-breadcrumb .breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.hero-breadcrumb .breadcrumb-link:hover {
    color: rgba(255, 255, 255, 1);
}

.hero-breadcrumb .breadcrumb-link i {
    font-size: 14px;
}

.hero-breadcrumb .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.hero-breadcrumb .breadcrumb-active {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.hero-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   About Page Sections
   ========================================================================== */

.about-content .section-subtitle {
    color: var(--color-primary-medium);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.about-content .section-title {
    font-size: 42px;
    font-weight: 500;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-content .section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-content .section-description p {
    margin-bottom: 0.5rem;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.feature-card {
    padding: 30px;
    background: #F8F8F8;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 42px;
    color: var(--color-brown-medium);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ==========================================================================
   Room Archive Page
   ========================================================================== */

/* Room Archive Items */
.room-archive-item {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(125, 103, 82, 0.15);
}

.room-archive-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Swiper wrapper needs relative positioning for absolute arrows */
[class*="room-archive-swiper-"] {
    position: relative;
}

.room-archive-slider {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.room-archive-slider .swiper-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.room-archive-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.room-archive-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Room Archive Swiper Navigation */
.room-archive-slider .swiper-button-next,
.room-archive-slider .swiper-button-prev {
    color: #a67c52;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 10 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.room-archive-slider .swiper-button-next {
    right: 20px;
}

.room-archive-slider .swiper-button-prev {
    left: 20px;
}

.room-archive-slider .swiper-button-next:after,
.room-archive-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.room-archive-slider .swiper-button-next:hover,
.room-archive-slider .swiper-button-prev:hover {
    background: #a67c52;
    color: white;
}

.room-archive-slider .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10 !important;
}

.room-archive-slider .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.7;
    width: 10px;
    height: 10px;
}

.room-archive-slider .swiper-pagination-bullet-active {
    background: #a67c52;
    opacity: 1;
}

.room-archive-title {
    font-size: 36px;
    font-weight: 700;
    color: #7d6752;
    margin-bottom: 20px;
}

/* Reset room-archive-meta - will be styled specifically for single room */
.room-archive-meta {
    margin-bottom: 20px;
}

/* Room meta item - base styles will be overridden for single room */
.room-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-meta-item i {
    font-size: 20px;
    color: #a67c52;
}

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

.room-price {
    color: #a67c52;
    font-size: 18px;
}

.room-archive-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.room-archive-amenities {
    margin-bottom: 30px;
}

.room-archive-amenities h4 {
    font-size: 18px;
    font-weight: 600;
    color: #7d6752;
    margin-bottom: 15px;
}

.room-archive-amenities ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.room-archive-amenities li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.room-archive-amenities li i {
    font-size: 28px;
    color: #a67c52;
}

.room-archive-amenities li span {
    font-size: 14px;
    color: #666;
}

/* ==========================================================================
   Location Archive Page
   ========================================================================== */

/* Location Archive List */
.location-archive-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location-archive-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.location-archive-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.location-item-content {
    padding: 40px;
}

.location-item-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.location-item-title a {
    color: var(--color-primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-item-title a:hover {
    color: var(--color-primary-light);
}

.location-item-excerpt {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.location-item-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.location-item-image {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

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

.location-archive-item:hover .location-item-image img {
    transform: scale(1.05);
}

.location-item {
    margin-bottom: 80px;
}

.location-sidebar {
    padding: 30px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.location-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.location-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-primary-light);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-distance {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-distance i {
    color: var(--color-primary-medium);
}

.location-main-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.location-main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.location-content {
    padding: 20px 0;
}

.location-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
}

.location-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

/* Location Gallery Grid (4 images) */
.location-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.location-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

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

.location-gallery-item:hover img {
    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;
}

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

.gallery-overlay i {
    color: white;
    font-size: 24px;
}

.location-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 60px 0;
}

/* Single Location Page */
.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-primary-light);
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    margin-bottom: 10px;
}

.location-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #F8F8F8;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-list li a:hover {
    background: var(--color-primary-light);
    color: white;
    transform: translateX(5px);
}

.location-list li.active a {
    background: var(--color-primary-dark);
    color: white;
    font-weight: 600;
}

.location-list li a i {
    margin-left: auto;
}

.location-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.location-single-content {
    font-size: 16px;
    line-height: 1.8;
}

.location-single-content p {
    margin-bottom: 0.5rem;
}

.location-info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.location-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item i {
    font-size: 20px;
    color: var(--color-primary-medium);
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--color-primary-dark);
}

.info-item p {
    margin: 0;
    color: #666;
}

.info-item a {
    color: var(--color-primary-light);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.location-single-gallery h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 25px;
}

/* Location Featured Image with Overlay */
.location-main-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.location-main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.location-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 30px;
}

.location-meta-overlay {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.location-meta-overlay .location-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary-dark);
}

.location-meta-overlay .location-distance {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 15px;
    border-radius: 5px;
}

.location-meta-overlay .location-distance i {
    color: white;
}

/* Location CTA Card */
.location-cta-card {
    background: linear-gradient(135deg, #a67c52 0%, #bf9b7a 50%, #a67c52 100%);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(166, 124, 82, 0.3);
}

.location-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.location-cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-card-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.cta-card-icon i {
    font-size: 28px;
    color: var(--color-primary-medium);
}

.cta-card-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.cta-card-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.location-cta-card .mets-btn {
    position: relative;
    z-index: 1;
    background: white;
    color: var(--color-primary-medium);
    border: none;
}

.location-cta-card .mets-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary-dark);
}

/* ==========================================================================
   Design Standards - Lists
   ========================================================================== */

/* Styled UL-LI Lists */
.mets-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mets-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    padding-left: 30px;
    transition: all 0.3s ease;
}

.mets-list li:last-child {
    border-bottom: none;
}

.mets-list li:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--color-primary-medium);
    font-size: 18px;
    transition: all 0.3s ease;
}

.mets-list li:hover:before {
    left: 5px;
    color: var(--color-primary-light);
}

.mets-list li:hover {
    color: var(--color-primary-dark);
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .about-content .section-title {
        font-size: 32px;
    }

    .about-image img {
        height: 400px;
    }

    .location-title {
        font-size: 28px;
    }

    .location-main-image img {
        height: 350px;
    }

    .location-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-sidebar {
        margin-bottom: 30px;
    }

    .location-item-title {
        font-size: 28px;
    }

    .location-item-content {
        padding: 30px;
    }

    .location-item-image {
        min-height: 300px;
    }

    .room-archive-title {
        font-size: 30px;
    }

    .room-archive-slider .swiper-slide img,
    .room-archive-image img {
        height: 350px;
    }

    .room-archive-amenities ul {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 600px;
    }

    .hero-content {
        bottom: 40px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-breadcrumb {
        margin-bottom: 20px;
    }

    .about-content .section-title {
        font-size: 28px;
    }

    .about-image img {
        height: 300px;
    }

    .location-title {
        font-size: 24px;
    }

    .location-main-image img {
        height: 250px;
    }

    .location-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .location-content h3 {
        font-size: 22px;
    }

    .location-item-title {
        font-size: 24px;
    }

    .location-item-content {
        padding: 25px;
    }

    .location-item-image {
        min-height: 250px;
        margin-top: 20px;
    }

    .location-archive-list {
        gap: 30px;
    }

    .location-main-image {
        margin-bottom: 20px !important;
    }

    .location-image-overlay {
        padding: 20px;
    }

    .cta-card-title {
        font-size: 18px;
    }

    .location-cta-card {
        padding: 30px 20px;
    }

    .room-archive-title {
        font-size: 26px;
    }

    .room-archive-slider .swiper-slide img,
    .room-archive-image img {
        height: 300px;
    }

    .room-archive-meta {
        gap: 15px;
    }

    .room-archive-amenities ul {
        grid-template-columns: 1fr;
    }

    .room-archive-item {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }
}

/* ========================================
   Single Room Page Styles
======================================== */

/* Room Details Slider */
.room-details-slider-container {
    position: relative;
}

.room-details-main-slider {
    width: 100%;
    height: auto;
}

.room-details-main-slider .swiper-slide {
}

.room-details-main-slider .swiper-button-next,
.room-details-main-slider .swiper-button-prev {
    color: #a67c52;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 10 !important;
}

.room-details-main-slider .swiper-button-next {
    right: 20px;
}

.room-details-main-slider .swiper-button-prev {
    left: 20px;
}

.room-details-main-slider .swiper-button-next:after,
.room-details-main-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.room-details-main-slider .swiper-button-next:hover,
.room-details-main-slider .swiper-button-prev:hover {
    background: #a67c52;
    color: white;
}

/* Thumbnail Slider */
.room-details-thumb-slider {
    width: 100%;
    height: 100%;
}

.room-details-thumb-slider .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.room-details-thumb-slider .swiper-slide-thumb-active {
    opacity: 1 !important;
    border-color: var(--color-primary) !important;
}

.room-thumb-item {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.room-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Room Single Meta - Below Slider */
.room-details-slider-container + .room-archive-meta .row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.room-details-slider-container + .room-archive-meta .row > [class*="col-"] {
    flex: 1 1 0;
    min-width: 0;
}

.room-details-slider-container + .room-archive-meta .room-meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px 15px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.room-details-slider-container + .room-archive-meta .room-meta-item:hover {
    border-color: var(--color-primary-medium);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.room-details-slider-container + .room-archive-meta .room-meta-item i {
    color: var(--color-primary-medium);
}

.room-details-slider-container + .room-archive-meta .room-meta-item span {
    font-size: 14px;
    line-height: 1.4;
}

/* Room Single Content */
.room-single-title {
    color: var(--color-primary-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.room-single-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.room-single-description p {
    margin-bottom: 15px;
}

/* Room Amenities */
.room-single-amenities h3 {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px 15px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    border-color: var(--color-primary-medium);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.amenity-item i {
    color: var(--color-primary-medium);
    flex-shrink: 0;
}

.amenity-item span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

/* Room Sidebar Sticky */
.room-sidebar-sticky {
    position: sticky;
    top: 10px;
    align-self: flex-start;
}

/* Room Features */
.room-single-features h3 {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.room-features-content {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

.room-features-content ul {
    list-style: none;
    padding: 0;
}

.room-features-content ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.room-features-content ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.single-room .reservation-form {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 991px) {

    .single-room .reservation-form {
        margin-top: 0;
        margin-bottom: 30px;
    }

    /* Room Meta & Amenities Tablet */
    .room-details-slider-container + .room-archive-meta .row {
        gap: 15px;
    }

    .room-details-slider-container + .room-archive-meta .room-meta-item {
        padding: 20px 12px;
    }

    .amenity-item {
        padding: 20px 12px;
    }

    .amenity-item span {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .room-single-title {
        font-size: 28px !important;
    }

    /* Room Meta & Amenities Mobile */
    .room-details-slider-container + .room-archive-meta .row {
        gap: 10px;
    }

    .room-details-slider-container + .room-archive-meta .room-meta-item {
        padding: 18px 10px;
    }

    .room-details-slider-container + .room-archive-meta .room-meta-item span {
        font-size: 13px;
    }

    .amenity-item {
        padding: 18px 10px;
    }

    .amenity-item span {
        font-size: 13px;
    }
}

/* ========================================
   GALLERY PAGE STYLES
======================================== */

/* Gallery Grid Layout - Desktop */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    grid-column: auto / span 3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1 !important;
}

/* Every 2nd, 5th, 8th item (middle of each 3-item group) */
.gallery-item:nth-child(3n+2) {
    grid-column: auto / span 4;
}

.gallery-item.gallery-hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item a {
    display: block;
}

.gallery-item a img {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Tablet Layout */
@media (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .gallery-item {
        grid-column: auto / span 2;
    }

    .gallery-item:nth-child(3n+2) {
        grid-column: auto / span 2;
    }
}

/* Mobile Layout */
@media (max-width: 767px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item {
        grid-column: auto / span 2;
    }

    .gallery-item:nth-child(3n+2) {
        grid-column: auto / span 2;
    }

    .section-general {
        padding-top: 40px !important;
    }
}

/* Tablet and Mobile - Section General Padding */
@media (max-width: 1199px) {
    .section-general {
        padding-top: 40px !important;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact Page Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Info Section */
.contact-info-section .section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-gray-medium);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-info-section .section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    color: var(--color-brown-dark);
    margin-bottom: 40px;
    line-height: 1.2;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    background: var(--color-gray-light);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s var(--easing);
}

.contact-info-item:hover {
    background: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(125, 103, 82, 0.1);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--color-brown-medium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-white);
    font-size: 22px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-brown-dark);
    margin-bottom: 8px;
    display: block;
}

.contact-info-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

.contact-info-text a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: var(--color-brown-medium);
}

/* Contact Form Section */
.contact-form-section .section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-gray-medium);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-form-section .section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-brown-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-form-section .section-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 35px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 0;
}

.contact-form .form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-brown-dark);
    margin-bottom: 8px;
}

.contact-form .form-control {
    width: 100%;
    height: 55px;
    padding: 0 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-primary);
    transition: all 0.3s var(--easing);
    outline: none;
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 140px;
    padding: 15px 20px;
    resize: vertical;
}

.contact-form .form-control:focus {
    border-color: var(--color-brown-medium);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(181, 146, 95, 0.1);
}

.contact-form .form-control::placeholder {
    color: #999;
    font-size: 14px;
}

/* Form Messages */
.contact-form-messages {
    margin-bottom: 20px;
    display: none;
}

.contact-form-messages .alert {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-messages .alert-success {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.contact-form-messages .alert-danger {
    background: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* Contact Map Section */
.contact-map-section iframe {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 12px;
}

/* Tablet Layout */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info-section .section-title {
        font-size: 36px;
    }

    .contact-form-section .section-title {
        font-size: 28px;
    }

    .contact-map-section iframe {
        height: 400px;
    }
}

/* Mobile Layout */
@media (max-width: 767px) {
    .contact-wrapper {
        gap: 50px;
    }

    .contact-info-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-form-section .section-title {
        font-size: 24px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info-item {
        padding: 25px;
        gap: 15px;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-map-section iframe {
        height: 350px;
        border-radius: 8px;
    }
}
