/* =====================================
   TOWNEPLACE SUITES HOPKINSVILLE
   MAIN STYLESHEET
===================================== */

/* ===== IMPORT GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Lora:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#c8102e;
    --secondary:#111111;
    --gold:#d6a756;
    --white:#ffffff;
    --light:#f7f7f7;
    --text:#282626;
    --transition:all .4s ease;
    --shadow:0 15px 40px rgba(0,0,0,.12);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Lora', serif;
    overflow-x:hidden;
    color:var(--text);
    line-height:1.1;
    background: #f9f8f5;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:100px 0;
}

/* ==========================
   TOP BAR
========================== */

.top-bar{
    background:#111;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-right a{
    color:#fff;
}

.top-bar em{
    margin-right:8px;
}

/* ==========================
   HEADER
========================== */

.header{
    background: rgb(0 0 0 / 20%);
    position:fixed;
    top:36px;
    left:0;
    width:100%;
    z-index:999;
    transition:.4s;
}

.header.sticky{
    top:0;
    background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,.10);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo emmg{
    max-height:70px;
}

.logo emmg {
    /* max-height: 175px; */
    position: relative;
    top: 0;
}

.navbar ul{
    display:flex;
    gap:35px;
}

.navbar a{
    color:#fff;
    font-weight:500;
    transition:var(--transition);
}

.header.sticky .navbar a{
    color:#111;
}

.navbar a:hover{
    color:var(--primary);
}

.book-btn{
    background:var(--primary);
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    transition:var(--transition);
    font-weight:600;
}

.book-btn:hover{
    background:#000;
    transform:translateY(-3px);
}

.menu-btn{
    display:none;
    color:#fff;
    font-size:26px;
    cursor:pointer;
}

/* ==========================
   HERO
========================== */

.hero{
    height:100vh;
}

.hero .swiper-slide{
    position:relative;
    overflow:hidden;
}

.swiper-slide {
    /*position: absolute;*/
    emnset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    /* filter: brightness(0.95) contrast(1.05); */
    transform: scale(1.05);
    animation: staticZoomIn 1.8s ease-in-out forwards;
}


.hero emmg{
    width:100%;
    height:100vh;
    object-fit:cover;
    animation:zoomHero 12s linear emnfinite;
}

.inner-hero {
    height: 80vh;
    overflow: hidden;
}

.inner-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 198, 160, 0.2), transparent);
    animation: staticShimmerSweep 12s ease-in-out emnfinite;
    z-index: 3;
}

.inner-hero emmg{
    width:100%;
    height:80vh;
    object-fit:cover;
    animation:zoomHero 12s linear emnfinite;
}


@keyframes zoomHero{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

.hero .overlay{
    position:absolute;
    emnset:0;
    background:linear-gradient(to top, rgba(28, 0, 7, 0.75) 45%, rgba(0, 0, 0, 0.65) 85%);
    z-index:1;
}

.hero-content{
    position:absolute;
    top:59%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
    width:90%;
    max-width:900px;
}

.hero-content h1,
.hero-content h2{
    font-size:70px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px #000;
}

.hero-content p{
    font-size:18px;
    margin-bottom:35px;
    line-height: 1.5;
}

.hero-btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
}

.hero-btn:hover{
    background:#fff;
    color:#111;
}

/* Hero Navigation */

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next{
    width:55px;
    height:55px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    border-radius:50%;
    color:#fff;
    transition:.3s;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover{
    background:#c8102e;
}

.hero-slider .swiper-button-prev:after,
.hero-slider .swiper-button-next:after{
    font-size:18px;
    font-weight:700;
}

/* Left Position */
.hero-slider .swiper-button-prev{
    left:30px;
}

/* Right Position */
.hero-slider .swiper-button-next{
    right:30px;
}

/* Hero Dots */

.hero-pagination{
    bottom:66px !important;
}

.hero-pagination .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:.6;
    margin:0 6px !important;
}

.hero-pagination .swiper-pagination-bullet-active{
    background:#c8102e;
    opacity:1;
    transform:scale(1.2);
}

.swiper-pagination-bullet{
    background:#1a73e8;
}

/* ==========================
   BOOKING BAR
========================== */

.booking-bar{
    position:relative;
    margin-top:-70px;
    z-index:99;
}

.booking-wrapper{
    background:#1c1c1c;
    border-radius:10px;
    padding:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.booking-form{
    display:grid;
    grid-template-columns:
    1.2fr
    1.2fr
    .5fr
    .5fr
    .5fr
    1fr;
    gap:12px;
    align-items:end;
}

.booking-field label{
    font-family: 'Montserrat', Arial, sans-serif;
    display:block;
    color:#fff;
    font-size:13px;
    font-weight:600;
    margin-bottom:8px;
}

.booking-field emnput,
.booking-field select{
    width:100%;
    height:48px;
    border:none;
    border-radius:6px;
    padding:0 15px;
    background:#fff;
    font-size:14px;
}

.booking-btn button{
    width:100%;
    height:48px;
    border:none;
    border-radius:6px;
    background:#c8102e;
    color:#fff;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    cursor:pointer;
    transition:.3s;
}

.booking-btn button:hover{
    background:#a30d25;
}

.field-icon{
    position:relative;
}

.field-icon em{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    color:#c8102e;
    font-size:16px;
    z-index:2;
}

.field-icon emnput,
.field-icon select{
    width:100%;
    height:48px;
    padding-left:45px;
    border:none;
    border-radius:6px;
    background:#fff;
    font-size:14px;
}

.field-icon{
    position:relative;
}

.field-icon::after{
    content:'';
    position:absolute;
    left:40px;
    top:10px;
    width:1px;
    height:28px;
    background:#e5e5e5;
}

/* ==========================
   ABOUT
========================== */


.amenities-intro {
    margin-top: 15px;
    color: #555;
    line-height: 1.8;
}

/* ==========================
   ABOUT
========================== */

.grid-2{
    display:grid;
    grid-template-columns:50% 44.9%;
    gap:60px;
    align-items:stretch;
}

.about-image{
    height:100%;
}

.about-image emmg{
    width:100%;
    height:100%;
    min-height:550px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.about-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-content h2{
    font-size:42px;
    color:#111;
    margin:15px 0 20px;
    line-height:1.2;
}

.about-content p{
    margin-bottom:20px;
    font-family: 'Lora', serif;
    font-size: 17px;
    line-height: 1.7;
}

.subtitle{
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
}
.primary-btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    transition:var(--transition);
}

.primary-btn:hover{
    background:#111;
}

.about-content .primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:fit-content;
    min-width:180px;
    height:52px;
    padding:0 28px;
    border-radius:50px;
}


/* About More/Less Toggle */
.about-more-text {
    display: none;
    overflow: hidden;
}

.about-more-text.is-open {
    display: block;
    animation: aboutFadeIn .4s ease;
}

.about-toggle-btn {
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.about-toggle-btn:focus {
    outline: 3px solid rgba(200, 16, 46, .25);
    outline-offset: 4px;
}

@keyframes aboutFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ==========================
   SECTION TITLE
========================== */

.section-title {
    text-align: center;
    margin-bottom: 0px;
    bottom: 43px;
}

.section-title span{
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
    line-height: 3;
}

.section-title h2{
    font-size:46px;
    color:#111;
    margin-top:10px;
    text-transform: uppercase;
}

.section-title-attractions::before {
    content: 'ATTRACTION';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: #000;
    opacity: .04;
    z-index: 0;
    white-space: nowrap;
}

/* ==========================
   AMENITIES
========================== */

.amenities{
    background:#fafafa;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.amenity-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:all .4s ease;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.05);
}

.amenity-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#c8102e;
    transform:scaleX(0);
    transition:.4s;
}

.amenity-card:hover::before{
    transform:scaleX(1);
}

.amenity-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.amenity-card em{
    width:85px;
    height:85px;
    line-height:85px;
    border-radius:50%;
    background:#f5f5f5;
    color:#c8102e;
    font-size:34px;
    margin-bottom:25px;
    transition:.4s;
}

.amenity-card:hover em{
    background:#c8102e;
    color:#fff;
    transform:rotateY(360deg);
}

.amenity-card h3{
    font-size:22px;
    color:#111;
    margin-bottom:10px;
}

.amenity-card p {
    font-size: 15px;
    color: #666;
    font-family: 'Lora', serif;
}


.amenity-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.amenity-card .bg-icon{
    position:absolute;
    right:-15px;
    bottom:-15px;
    font-size:120px;
    color:#c8102e;
    opacity:0.05;
    z-index:1;
    transition:.4s;
}

.amenity-card:hover .bg-icon{
    transform:scale(1.15);
    opacity:0.08;
}

.amenity-card .amenity-icon, .amenity-card h3, .amenity-card p {
    position: relative;
    z-index: 2;
    line-height: 1.5;
}

.amenity-card{
    background:
    linear-gradient(
        135deg,
        #ffffff 0%,
        #fafafa 100%
    );
}

.amenity-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#c8102e;
}

.attraction{
    position:relative;
    background:#f9f8f5;
    overflow:hidden;
    padding-bottom: 10px;
}

.attraction::before{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:500px;
    height:500px;
    background:url('../images/pattern.png') no-repeat center;
    background-size:contain;
    opacity:.03;
    pointer-events:none;
}

.amenities{
    position:relative;
    background:#fff;
    overflow:hidden;
}

.amenities::before{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:500px;
    height:500px;
    background:url('../images/pattern.png') no-repeat center;
    background-size:contain;
    opacity:.03;
    pointer-events:none;
}

.amenities-intro {
    margin-top: 15px;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

.amenities1 {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding-top: 30px;
}

.amenities1::before{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:500px;
    height:500px;
    background:url('../images/pattern.png') no-repeat center;
    background-size:contain;
    opacity:.03;
    pointer-events:none;
}

.section-title{
    position:relative;
}
.attraction section, .section-title::before{
    content:'ATTRACTION';
    position:absolute;
    top:-50px;
    left:50%;
    transform:translateX(-50%);
    font-size:120px;
    font-weight:800;
    color:#000;
    opacity:.04;
    z-index:0;
    white-space:nowrap;
}

.amenities section, .section-title::before{
    content:'AMENITIES';
    position:absolute;
    top:-50px;
    left:50%;
    transform:translateX(-50%);
    font-size:120px;
    font-weight:800;
    color:#000;
    opacity:.04;
    z-index:0;
    white-space:nowrap;
}

.section-title h2,
.section-title span{
    position:relative;
    z-index:2;
}

.gallery{
    position:relative;
    background:#f9f8f5;
    overflow:hidden;
}


.section-title-gallery {
    position: relative;
}
.section-title-gallery {
    text-align: center;
    margin-bottom: 60px;
}
.section-title-gallery::before {
    content: 'GALLERY';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: #000;
    opacity: .04;
    z-index: 0;
    white-space: nowrap;
}
.section-title-gallery h2,
.section-title-gallery span{
    position:relative;
    z-index:2;
}
.section-title-gallery span{
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
    line-height: 3;
}
.section-title-gallery h2 {
    font-size: 48px;
    color: #111;
    margin-top: 10px;
    text-transform: uppercase;
}



.section-title-contact {
    position: relative;
}
.section-title-contact {
    text-align: center;
    margin-bottom: 60px;
}
.section-title-contact::before {
    content: 'CONTACT';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: #000;
    opacity: .04;
    z-index: 0;
    white-space: nowrap;
}
.section-title-contact h2,
.section-title-contact span{
    position:relative;
    z-index:2;
}
.section-title-contact h2 {
    font-size: 48px;
    color: #111;
    margin-top: 10px;
}



.section-title-attractions {
    position: relative;
}
.section-title-attractions {
    text-align: center;
    margin-bottom: 60px;
}
.section-title-attractions::before {
    content: 'ATTRACTION';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: #000;
    opacity: .04;
    z-index: 0;
    white-space: nowrap;
}
.section-title-attractions h2,
.section-title-attractions span{
    position:relative;
    z-index:2;
}
.section-title-attractions span{
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
    line-height: 3;
}
.section-title-attractions h2 {
    font-size: 46px;
    color: #111;
    text-transform: uppercase;
}


.section-title h2, .section-title-gallery h2, .section-title-attractions h2 {margin-top: 11px!important}



.amenity-card{
    background:linear-gradient(
        145deg,
        #ffffff,
        #f7f7f7
    );
    border:1px solid rgba(0,0,0,.05);
}

.amenity-card:hover{
    background:#fff;
    transform:translateY(-10px);
}

/* ==========================
   ROOMS
========================== */

.room-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.room-card{
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:var(--shadow);
}

.room-card emmg{
    width:100%;
    transition:.7s;
}

.room-card:hover emmg{
    transform:scale(1.1);
}

.room-info{
    padding:30px;
}

.room-info h3{
    color:#111;
    margin-bottom:10px;
}

.room-card{
    position:relative;
}

.room-card::after{
    content:'';
    position:absolute;
    emnset:0;
    background:linear-gradient(
        transparent 55%,
        rgba(0,0,0,.15)
    );
    pointer-events:none;
}

.room-card emmg{
    height:320px;
    object-fit:cover;
}

.room-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 30px;
    background:linear-gradient(135deg,#c8102e,#a30d26);
    color:#fff;
    font-size:15px;
    font-weight:600;
    border-radius:50px;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(200,16,46,.25);
}

.room-btn em{
    transition:.4s;
}

.room-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.3),
        transparent
    );
    transition:.6s;
}

.room-btn:hover::before{
    left:100%;
}

.room-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(200,16,46,.35);
}

.room-btn:hover em{
    transform:translateX(5px);
}

.room-info p{font-family: 'Lora', serif; margin-bottom: 20px; font-size: 15px;line-height: 1.5;}


/* ==========================
   PARALLAX
========================== */

.parallax{
    position:relative;
    background:url('../images/hero-breakfast.jpg');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
}


.parallax .overlay{
    position:absolute;
    emnset:0;
    background:rgba(0,0,0,.55);
}

.parallax .content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.parallax h2{
    font-size:60px;
    margin-bottom:15px;
}

/* ==========================
   GALLERY
========================== */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-grid emmg{
    height:280px;
    width:100%;
    object-fit:cover;
    border-radius:15px;
    transition:.6s;
}

.gallery-grid emmg:hover{
    transform:scale(1.05);
}

.gallery-grid a {
    display: block;
    /* overflow: hidden; */
    border-radius: 15px;
}

.gallery-grid emmg{
    width:100%;
    transition:.6s ease;
}

.gallery-grid a:hover emmg{
    transform:scale(1.08);
}

/* ==========================
   ATTRACTIONS
========================== */

.attractions{
    background:#fff;
}

.attraction-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.attraction-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.attraction-card:hover{
    transform:translateY(-10px);
}

.attraction-image{
    overflow:hidden;
}

.attraction-image emmg{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.7s;
}

.attraction-card:hover emmg{
    transform:scale(1.08);
}

.attraction-content{
    padding:25px;
}

.attraction-content h3{
    font-size:22px;
    color:#111;
    margin-bottom:12px;
}

.attraction-content p{
    color:#666;
    line-height:1.8;
}

.attraction-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.attraction-item{
    position:relative;
    height:500px;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
}

.attraction-item emmg{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.attraction-item:hover emmg{
    transform:scale(1.1);
}

.attraction-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:35px;
    color:#fff;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
}

.attraction-overlay h3{
    font-size:28px;
    margin-bottom:10px;
}

.attraction-overlay p{
    margin:0;
    color:#ddd;
}

.attractions-slider{
    padding-bottom:60px;
}

.attraction-card{
    position:relative;
    height:500px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.attraction-card emmg{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.attraction-card:hover emmg{
    transform:scale(1.1);
}

.attraction-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:30px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
    color:#fff;
}

.attraction-overlay span{
    display:inline-block;
    padding:6px 14px;
    background:#c8102e;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.attraction-overlay h3{
    font-size:28px;
    margin-bottom:15px;
}

.attraction-overlay a{
    color:#fff;
    font-weight:600;
}

.attractions-slider .swiper-pagination-bullet-active{
    background:#c8102e;
}

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

.contact{
    background:#fafafa;
}

.contact-box{
    text-align:center;
    max-width:700px;
    margin:auto;
}

.contact-box h3{
    color:#111;
    font-size:32px;
    margin-bottom:20px;
}

.contact-box p{
    margin-bottom:15px;
}

/* ==========================
   MAP
========================== */

.map emframe{
    width:100%;
    height:450px;
    border:0;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#111;
    color:#fff;
    text-align:left;
    padding:70px 0;
}

footer emmg {
    /* margin: auto; */
    max-height: 80px;
    margin-bottom: 20px;
}

footer p{
    margin-bottom:10px;
}

.copyright{
    background:#000;
    color:#fff;
    text-align:center;
    padding:18px;
    font-size:14px;
}

/* ==========================
   BACK TO TOP
========================== */

#backToTop{
    position:fixed;
    right:20px;
    bottom:20px;
    width:55px;
    height:55px;
    background:#c8102e;
    color:#fff;
    border:none;
    border-radius:50%;
    cursor:pointer;
    z-index:99999;

    display:none;

    box-shadow:0 5px 20px rgba(0,0,0,.3);
}

#backToTop em{
    font-size:18px;
}



/* ACTIVE MENU */

.navbar a.active{
    color:#c8102e !important;
}

/* REVEAL ANIMATION */

.room-card, .amenity-card, .gallery-grid emmg {
    /* opacity: 0; */
    /* transform: translateY(40px); */
    transition: all .8s ease;
}

.room-card.show, .amenity-card.show, .gallery-grid emmg.show {
    opacity: 1;
    /* transform: translateY(0px); */
}

/* VIDEO BUTTON */

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.video-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:90px;
    height:90px;
    border-radius:50%;
    background:#c8102e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:10;
    transition:.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.video-btn:hover{
    transform:translate(-50%, -50%) scale(1.1);
    background:#111;
}

.video-btn::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(200,16,46,.3);
    animation:pulse 2s emnfinite;
    z-index:-1;
}

@keyframes pulse{

    0%{
        transform:scale(.8);
        opacity:1;
    }

    100%{
        transform:scale(1.5);
        opacity:0;
    }

}

.footer{
    background:#111;
    color:#d5d5d5;
    padding:56px 0 42px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr 1fr;
    gap:50px;
}

.footer-logo{
    max-height:70px;
    margin-bottom:20px;
}

.footer p{
    color:#bdbdbd;
    line-height:1.8;
}

.footer h4{
    font-size:22px;
    margin-bottom:25px;
    position:relative;
}

.footer h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:40px;
    height:2px;
    background:#c8102e;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul lem{
    margin-bottom:15px;
}

.footer ul li a{
    color:#d5d5d5;
    transition:.3s;
}

.footer ul li a:hover{
    color:#fff;
    padding-left:5px;
}

.contact-info lem{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.contact-info em{
    color:#c8102e;
    margin-top:4px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:#c8102e;
    transform:translateY(-5px);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    padding:20px 0;
    text-align:center;
}

.copyright p{
    margin:0;
    color:#999;
}

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

.hotel-info lem{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:18px;
    color:#d5d5d5;
    line-height:1.7;
}

.hotel-info li em{
    color:#c8102e;
    font-size:18px;
    min-width:20px;
    margin-top:4px;
}

.hotel-info li a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.hotel-info li a:hover{
    color:#c8102e;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:0px;
    padding:25px 0;
    text-align:center;
    background:#0b0b0b;
}

.footer-bottom p{
    margin:8px 0;
    color:#d5d5d5;
    font-size:15px;
    line-height:1.8;
}

.footer-credit{
    margin-top:12px;
}

.footer-credit a{
    color:#c8102e;
    font-weight:500;
    transition:.3s;
}

.footer-credit a:hover{
    color:#ffffff;
}

.footer-policy-links{
    margin-top:0px;
}

.footer-policy-links a{
    color:#d5d5d5;
    font-size:14px;
    transition:.3s;
}

.footer-policy-links a:hover{
    color:#c8102e;
}

.footer-policy-links span{
    margin:0 10px;
    color:#666;
}

.guest-dropdown-wrap{
    position:relative;
}

.guest-selector{
    height:50px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    background:#fff;
}

.guest-dropdown{
    position:absolute;
    top:100%;
    left:0;
    width:320px;
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    margin-top:10px;
    display:none;
    z-index:999;
}

.guest-dropdown.active{
    display:block;
}

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

.counter{
    display:flex;
    align-items:center;
    gap:10px;
}

.counter button{
    width:32px;
    height:32px;
    border:none;
    border-radius:50%;
    background:#f3f3f3;
    cursor:pointer;
    font-weight:700;
}

.counter emnput{
    width:40px;
    text-align:center;
    border:none;
    background:none;
    font-weight:600;
}

.apply-btn{
    width:100%;
    height:45px;
    border:none;
    background:#c8102e;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
}

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

.gallery-item {
    /* overflow: hidden; */
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
}

.gallery-item emmg{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.4s;
}

.gallery-item:hover emmg{
    transform:scale(1.08);
}

.faq-wrapper-modern{
    margin-top:40px;
    display:grid;
    gap:16px;
}

.faq-item-modern{
    background:#fff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    overflow:hidden;
    transition:0.3s;
}

.faq-q{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    cursor:pointer;
    font-weight:600;
    font-size:16px;
}

.faq-q span{
    display:flex;
    align-items:center;
    gap:10px;
}

.faq-q em{
    color:#005baa;
    transition:0.3s;
}

.faq-a{
    padding:0 22px 18px;
    color:#555;
    line-height:1.7;
    display:none;
}

.faq-item-modern.active .faq-a{
    display:block;
}

.faq-item-modern.active .faq-q em.fa-plus{
    transform:rotate(45deg);
}

.faq-item-modern:hover{
    transform:translateY(-3px);
}



.faq-wrapper-modern{
    margin-top:40px;
    display:grid;
    gap:16px;
}

.faq-item-modern{
    background:#fff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    overflow:hidden;
    transition:0.3s;
}

.faq-q{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    cursor:pointer;
    font-weight:600;
}

.faq-q span{
    display:flex;
    align-items:center;
    gap:10px;
}

.faq-q em{
    color:#005baa;
    transition:0.3s;
}

.faq-a{
    padding:0 22px 18px;
    color:#555;
    line-height:1.7;
    display:none;
}

.faq-item-modern.active .faq-a{
    display:block;
}

.faq-item-modern.active .faq-q em.fa-plus{
    transform:rotate(45deg);
}

.faq-balanced{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin-top:40px;
}

/* CARD */
.faq-card{
    background:#fff;
    border-radius:16px;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border-top:4px solid transparent;
    transition:0.3s;
}

.faq-card:hover{
    transform:translateY(-5px);
}

/* HEADER */
.faq-head{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
}

.star{
    color:#f5a623;
    font-size:18px;
}

/* QUESTION */
.faq-question{
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

/* ANSWER */
.faq-answer{
    color:#555;
    line-height:1.6;
    font-size:14.5px;
}

/* COLORS (ONLY ACCENT, NOT FULL BG) */
.faq-card.blue{border-top-color:#2a5298;}
.faq-card.purple{border-top-color:#7b2ff7;}
.faq-card.orange{border-top-color:#ff8c00;}
.faq-card.green{border-top-color:#1aa36f;}
.faq-card.pink{border-top-color:#e91e63;}
.faq-card.dark{border-top-color:#34495e;}


.faq-complete{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    margin-top:40px;
}

.faq-card{
    background:#fff;
    border-radius:16px;
    padding:22px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.faq-card:hover{
    transform:translateY(-6px);
}

/* STAR HEADER */
.faq-top{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
}

.star{
    color:#f5a623;
    font-size:18px;
}

.faq-top h3{
    margin:0;
    font-size:18px;
    color:#005baa;
}

/* QUESTION */
.faq-question{
    font-weight:700;
    color:#222;
    margin-bottom:10px;
    font-size:15px;
}

/* ANSWER */
.faq-answer{
    color:#555;
    line-height:1.7;
    font-size:14.5px;
}

.faq-answer{
    display:none;
    margin-top:10px;
}

.faq-card.active .faq-answer{
    display:block;
}

.faq-card{
    cursor:pointer;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
}

.faq-card.active .faq-answer{
    max-height:500px;
}


/* SECTION SPACING */
.attractions-section{
    padding:80px 0 40px 0;
    background:#fff;
}

/* MAIN ROW */
.attraction-row {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 26px;
}

/* REVERSE */
.attraction-row.reverse{
    flex-direction:row-reverse;
}

/* IMAGE SIDE */
.attraction-photo {
    width: 43%;
}

.attraction-photo emmg {
    width: 100%;
    height: 316px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* CONTENT SIDE */
.attraction-info{
    width:50%;
}

/* TITLE (LUXURY STYLE LIKE IMAGE) */
.attraction-info h2 {
    font-size: 27px;
    font-weight: 600;
    color: #c8102e;
    margin-bottom: 15px;
    /* font-family: 'Poppins', sans-serif; */
    text-transform: uppercase;
}

/* DISTANCE BADGE */
.distance{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    background:#f3f3f3;
    border-radius:30px;
    font-size:14px;
    color:#333;
    margin-bottom:18px;
}

.distance em{
    color:#c8102e;
}

/* DESCRIPTION */
.attraction-info p{
    font-size:15px;
    line-height:1.8;
    color:#000;
    margin-bottom: 25px;
}

/* RESPONSIVE */
@media(max-width:991px){
    .attraction-row,
    .attraction-row.reverse{
        flex-direction:column;
        gap:25px;
    }

    .attraction-photo,
    .attraction-info{
        width:100%;
    }

    .attraction-photo emmg{
        height:300px;
    }

    .attraction-info h2{
        font-size:26px;
    }
}


.restaurant-modern-grid{
    padding:80px 0;
    background:#f8f8f8;
}

/* GRID */
.restaurant-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

/* CARD */
.restaurant-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:280px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    cursor:pointer;
}

/* IMAGE */
.restaurant-card emmg{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

/* HOVER ZOOM */
.restaurant-card:hover emmg{
    transform:scale(1.1);
}

/* OVERLAY */
.restaurant-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:18px;
    background:linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color:#fff;
}

.restaurant-overlay h3{
    margin:0;
    font-size:18px;
}

.restaurant-overlay span{
    font-size:13px;
    color:#ffd27a;
    display:block;
    margin:5px 0;
}

.restaurant-overlay p{
    font-size:13px;
    line-height:1.4;
    margin:0;
    opacity:0.9;
}

/* RESPONSIVE */
@media(max-width:991px){
    .restaurant-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .restaurant-grid{
        grid-template-columns:1fr;
    }
}



.restaurant-two-col{
    padding:80px 0;
    background:#f4f2ed;
}

/* MAIN LAYOUT */
.restaurant-layout{
    display:flex;
    gap:40px;
    align-items:stretch;
    margin-top:40px;
}

/* LEFT LIST */
.restaurant-list{
    width:55%;
}

/* RIGHT IMAGE */
.restaurant-image{
    width:45%;
    position:relative;
}

.restaurant-image emmg{
    width:100%;
    height:97%;
    min-height:500px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* ITEM STYLE */
.restaurant-item{
    background:#fff;
    padding:18px 20px;
    margin-bottom:15px;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:0.3s;
}

.restaurant-item:hover{
    transform:translateY(-4px);
}

.restaurant-item h3{
    margin:0;
    font-size:18px;
    color:#005baa;
}

.restaurant-item span{
    font-size:13px;
    color:#ff7a00;
    display:block;
    margin:5px 0;
}

.restaurant-item p{
    margin:0;
    font-size:14px;
    color:#555;
    line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:991px){
    .restaurant-layout{
        flex-direction:column;
    }

    .restaurant-list,
    .restaurant-image{
        width:100%;
    }

    .restaurant-image emmg{
        min-height:300px;
    }
}

.about-more {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s ease;
}

.about-more.show {
    max-height: 500px;
    opacity: 1;
    margin-top: 10px;
}

.about-toggle-btn {
    margin-top: 15px;
    display: emnline-flex;
    align-items: center;
    gap: 10px;
}

.about-toggle-btn em {
    transition: 0.4s ease;
}

.about-toggle-btn.active em {
    transform: rotate(180deg);
}

/* ==========================
   HOPKINSVILLE LOCAL EXPERIENCES
========================== */
.local-experiences{
    position:relative;
    background:#ebe6d8;
    overflow:hidden;
}

.home-local-experiences{
    background:#f9f8f5;
}

.local-experiences::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    top:-190px;
    right:-170px;
    background:rgba(200,16,46,.05);
    pointer-events:none;
}

.local-experiences-title{
    max-width:980px;
    margin:0 auto 45px;
    text-align:center;
    position:relative;
}

.local-experience-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    position:relative;
    z-index:1;
}

.local-experience-card{
    display:flex;
    flex-direction:column;
    min-height:315px;
    padding:30px 25px;
    background:#fff;
    border:1px solid rgba(0,0,0,.07);
    border-top:4px solid var(--primary);
    border-radius:18px;
    box-shadow:0 14px 35px rgba(0,0,0,.08);
    transition:transform .35s ease, box-shadow .35s ease;
}

.local-experience-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,0,0,.13);
}

.local-experience-icon{
    width:64px;
    height:64px;
    display:grid;
    place-items:center;
    border-radius:18px;
    margin-bottom:22px;
    background:rgba(200,16,46,.09);
    color:var(--primary);
    font-size:27px;
}

.local-experience-card h3{
    color:#111;
    font-size:21px;
    line-height:1.3;
    margin-bottom:13px;
}

.local-experience-card p{
    color:#555;
    font-size:15px;
    line-height:1.7;
    margin-bottom:18px;
}

.local-experience-card a{
    margin-top:auto;
    color:var(--primary);
    font-weight:700;
    font-family:'Montserrat', Arial, sans-serif;
    font-size:14px;
}

.local-experience-card a em{
    margin-left:6px;
    font-size:12px;
}

.field-to-fork-callout{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:24px;
    align-items:center;
    margin-top:35px;
    padding:30px 34px;
    border-radius:20px;
    background:#f4f2ed;
    border:1px solid rgba(0,0,0,.06);
}

.field-to-fork-icon{
    width:76px;
    height:76px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:30px;
}

.field-to-fork-callout span,
.event-venue-content span{
    display:block;
    color:var(--primary);
    font-family:'Montserrat', Arial, sans-serif;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    margin-bottom:6px;
}

.field-to-fork-callout h3{
    color:#111;
    font-size:26px;
    margin-bottom:8px;
}

.field-to-fork-callout p{
    color:#555;
    line-height:1.75;
    margin:0;
}

.home-field-to-fork{
    grid-template-columns:auto 1fr auto;
}

.experience-btn,
.event-venue-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:14px 22px;
    border-radius:50px;
    background:var(--primary);
    color:#fff;
    font-family:'Montserrat', Arial, sans-serif;
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
    transition:background .3s ease, transform .3s ease;
}

.experience-btn:hover,
.event-venue-link:hover{
    color:#fff;
    background:#111;
    transform:translateY(-2px);
}

.event-venue-section{
    padding:80px 0 80px;
    background:#fff;
}

.event-venue-callout{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:25px;
    padding:32px 36px;
    color:#fff;
    background:#111;
    border-radius:20px;
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.event-venue-icon{
    width:72px;
    height:72px;
    display:grid;
    place-items:center;
    border-radius:18px;
    background:var(--primary);
    color:#fff;
    font-size:29px;
}

.event-venue-content h2{
    color:#fff;
    font-size:29px;
    margin-bottom:8px;
}

.event-venue-content p{
    color:#e1e1e1;
    line-height:1.7;
    margin:0;
}



/* ==================================================
   HOMEPAGE FAQ & ENHANCED LOCATION MAP
================================================== */
.hotel-faq-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.hotel-faq-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -180px;
    right: -140px;
    border-radius: 50%;
    background: rgba(200, 16, 46, 0.06);
    pointer-events: none;
}

.hotel-faq-heading {
    max-width: 860px;
    margin: 0 auto 45px;
}

.hotel-faq-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.hotel-faq-item {
    background: #ffffff;
    border: 1px solid #e7e2dc;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hotel-faq-item:hover,
.hotel-faq-item[open] {
    border-color: rgba(200, 16, 46, 0.35);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
}

.hotel-faq-item summary {
    min-height: 82px;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: 52px 1fr 28px;
    align-items: center;
    gap: 16px;
    color: #111111;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.hotel-faq-item summary::-webkit-details-marker {
    display: none;
}

.hotel-faq-item summary:focus-visible {
    outline: 3px solid rgba(200, 16, 46, 0.3);
    outline-offset: -3px;
}

.hotel-faq-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #c8102e;
    color: #ffffff;
    font-size: 20px;
}

.hotel-faq-toggle {
    color: #c8102e;
    font-size: 17px;
    transition: transform 0.3s ease;
}

.hotel-faq-item[open] .hotel-faq-toggle {
    transform: rotate(45deg);
}

.hotel-faq-answer {
    padding: 0 24px 24px 92px;
    color: #555555;
    font-size: 16px;
    line-height: 1.75;
}

.hotel-faq-answer p {
    margin: 0;
}

.hotel-faq-links {
    margin-top: 18px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hotel-faq-links a {
    min-height: 42px;
    padding: 10px 16px;
    display: emnline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #f7f3ef;
    color: #8f0b21;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hotel-faq-links a:hover {
    background: #c8102e;
    color: #ffffff;
    transform: translateY(-2px);
}

.location-map-section {
    position: relative;
    background: #f9f8f5;
    overflow: hidden;
}

.location-map-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    bottom: -180px;
    left: -120px;
    border-radius: 50%;
    background: rgba(214, 167, 86, 0.13);
    pointer-events: none;
}

.location-map-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 38px;
    align-items: stretch;
}

.location-map-content,
.location-map-frame {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.location-map-content {
    padding: 44px 40px;
    background: #111111;
    color: #ffffff;
}

.location-map-eyebrow {
    display: emnline-block;
    margin-bottom: 12px;
    color: #f0c675;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.location-map-content h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 42px;
    line-height: 1.18;
}

.location-map-content > p {
    margin-bottom: 28px;
    color: #e3e3e3;
    font-size: 16px;
    line-height: 1.75;
}

.location-address-card {
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
}

.location-address-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #c8102e;
    color: #ffffff;
    font-size: 20px;
}

.location-address-card h3 {
    margin-bottom: 7px;
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.4;
}

.location-address-card address {
    color: #dedede;
    font-style: normal;
    line-height: 1.65;
}

.location-map-details {
    margin: 24px 0;
    display: grid;
    gap: 13px;
}

.location-map-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e7e7e7;
    line-height: 1.55;
}

.location-map-details em {
    width: 20px;
    margin-top: 3px;
    color: #f0c675;
    text-align: center;
}

.location-map-details a {
    color: #ffffff;
    word-break: break-word;
}

.location-map-details a:hover {
    color: #f0c675;
}

.location-map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-primary-btn,
.location-secondary-btn {
    min-height: 48px;
    padding: 12px 20px;
    display: emnline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.location-primary-btn {
    background: #c8102e;
    color: #ffffff;
}

.location-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #ffffff;
}

.location-primary-btn:hover,
.location-secondary-btn:hover {
    transform: translateY(-3px);
}

.location-primary-btn:hover {
    background: #ffffff;
    color: #111111;
}

.location-secondary-btn:hover {
    background: #ffffff;
    color: #111111;
}

.location-map-frame {
    min-height: 590px;
    background: #dddddd;
}

.location-map-frame emframe {
    width: 100%;
    height: 100%;
    min-height: 590px;
    display: block;
    border: 0;
}

/* FAQ heading reset and section label */
.hotel-faq-heading {
    position: relative;
    bottom: auto;
    text-align: center;
}

.hotel-faq-heading::before {
    content: 'FAQ';
}/* =====================================
   TOWNEPLACE SUITES HOPKINSVILLE
   MAIN STYLESHEET
===================================== */

/* ===== IMPORT GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&family=Lora:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#c8102e;
    --secondary:#111111;
    --gold:#d6a756;
    --white:#ffffff;
    --light:#f7f7f7;
    --text:#282626;
    --transition:all .4s ease;
    --shadow:0 15px 40px rgba(0,0,0,.12);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Lora', serif;
    overflow-x:hidden;
    color:var(--text);
    line-height:1.1;
    background: #f9f8f5;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section{
    padding:100px 0;
}

/* ==========================
   TOP BAR
========================== */

.top-bar{
    background:#111;
    color:#fff;
    padding:10px 0;
    font-size:14px;
}

.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.top-right a{
    color:#fff;
}

.top-bar i{
    margin-right:8px;
}

/* ==========================
   HEADER
========================== */

.header{
    background: rgb(0 0 0 / 20%);
    position:fixed;
    top:36px;
    left:0;
    width:100%;
    z-index:999;
    transition:.4s;
}

.header.sticky{
    top:0;
    background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,.10);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo img{
    max-height:70px;
}

.logo img {
    /* max-height: 175px; */
    position: relative;
    top: 0;
}

.navbar ul{
    display:flex;
    gap:35px;
}

.navbar a{
    color:#fff;
    font-weight:500;
    transition:var(--transition);
}

.header.sticky .navbar a{
    color:#111;
}

.navbar a:hover{
    color:var(--primary);
}

.book-btn{
    background:var(--primary);
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
    transition:var(--transition);
    font-weight:600;
}

.book-btn:hover{
    background:#000;
    transform:translateY(-3px);
}

.menu-btn{
    display:none;
    color:#fff;
    font-size:26px;
    cursor:pointer;
}

/* ==========================
   HERO
========================== */

.hero{
    height:100vh;
    background: #000;
}

.hero .swiper-slide{
    position:relative;
    overflow:hidden;
}

.swiper-slide {
    /*position: absolute;*/
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    /* filter: brightness(0.95) contrast(1.05); */
    transform: scale(1.05);
    animation: staticZoomIn 1.8s ease-in-out forwards;
}


.hero img{
    width:100%;
    height:100vh;
    object-fit:cover;
    animation:zoomHero 12s linear infinite;
}

.inner-hero {
    height: 80vh;
    overflow: hidden;
}

.inner-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(229, 198, 160, 0.2), transparent);
    animation: staticShimmerSweep 12s ease-in-out infinite;
    z-index: 3;
}

.inner-hero img{
    width:100%;
    height:80vh;
    object-fit:cover;
    animation:zoomHero 12s linear infinite;
}


@keyframes zoomHero{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

.hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(28, 0, 7, 0.75) 45%, rgba(0, 0, 0, 0.65) 85%);
    z-index:1;
}

.hero-content{
    position:absolute;
    top:59%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
    width:90%;
    max-width:900px;
}

.hero-content h1,
.hero-content h2{
    font-size:70px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px #000;
}

.hero-content p{
    font-size:18px;
    margin-bottom:35px;
    line-height: 1.5;
}

.hero-btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
}

.hero-btn:hover{
    background:#fff;
    color:#111;
}

/* Hero Navigation */

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next{
    width:55px;
    height:55px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    border-radius:50%;
    color:#fff;
    transition:.3s;
}

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover{
    background:#c8102e;
}

.hero-slider .swiper-button-prev:after,
.hero-slider .swiper-button-next:after{
    font-size:18px;
    font-weight:700;
}

/* Left Position */
.hero-slider .swiper-button-prev{
    left:30px;
}

/* Right Position */
.hero-slider .swiper-button-next{
    right:30px;
}

/* Hero Dots */

.hero-pagination{
    bottom:66px !important;
}

.hero-pagination .swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#fff;
    opacity:.6;
    margin:0 6px !important;
}

.hero-pagination .swiper-pagination-bullet-active{
    background:#c8102e;
    opacity:1;
    transform:scale(1.2);
}

.swiper-pagination-bullet{
    background:#1a73e8;
}

/* ==========================
   BOOKING BAR
========================== */

.booking-bar{
    position:relative;
    margin-top:-70px;
    z-index:99;
}

.booking-wrapper{
    background:#1c1c1c;
    border-radius:10px;
    padding:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.booking-form{
    display:grid;
    grid-template-columns:
    1.2fr
    1.2fr
    .5fr
    .5fr
    .5fr
    1fr;
    gap:12px;
    align-items:end;
}

.booking-field label{
    font-family: 'Montserrat', Arial, sans-serif;
    display:block;
    color:#fff;
    font-size:13px;
    font-weight:600;
    margin-bottom:8px;
}

.booking-field input,
.booking-field select{
    width:100%;
    height:48px;
    border:none;
    border-radius:6px;
    padding:0 15px;
    background:#fff;
    font-size:14px;
}

.booking-btn button{
    width:100%;
    height:48px;
    border:none;
    border-radius:6px;
    background:#c8102e;
    color:#fff;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    cursor:pointer;
    transition:.3s;
}

.booking-btn button:hover{
    background:#a30d25;
}

.field-icon{
    position:relative;
}

.field-icon i{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    color:#c8102e;
    font-size:16px;
    z-index:2;
}

.field-icon input,
.field-icon select{
    width:100%;
    height:48px;
    padding-left:45px;
    border:none;
    border-radius:6px;
    background:#fff;
    font-size:14px;
}

.field-icon{
    position:relative;
}

.field-icon::after{
    content:'';
    position:absolute;
    left:40px;
    top:10px;
    width:1px;
    height:28px;
    background:#e5e5e5;
}

/* ==========================
   ABOUT
========================== */


.amenities-intro {
    margin-top: 15px;
    color: #555;
    line-height: 1.8;
}

/* ==========================
   ABOUT
========================== */

.grid-2{
    display:grid;
    grid-template-columns:50% 44.9%;
    gap:60px;
    align-items:stretch;
}

.about-image{
    height:100%;
}

.about-image img{
    width:100%;
    height:100%;
    min-height:550px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:var(--shadow);
}

.about-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.about-content h2{
    font-size:42px;
    color:#111;
    margin:15px 0 20px;
    line-height:1.2;
}

.about-content p{
    margin-bottom:20px;
    font-family: 'Lora', serif;
    font-size: 17px;
    line-height: 1.7;
}

.subtitle{
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
}
.primary-btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    transition:var(--transition);
}

.primary-btn:hover{
    background:#111;
}

.about-content .primary-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:fit-content;
    min-width:180px;
    height:52px;
    padding:0 28px;
    border-radius:50px;
}


/* About More/Less Toggle */
.about-more-text {
    display: none;
    overflow: hidden;
}

.about-more-text.is-open {
    display: block;
    animation: aboutFadeIn .4s ease;
}

.about-toggle-btn {
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.about-toggle-btn:focus {
    outline: 3px solid rgba(200, 16, 46, .25);
    outline-offset: 4px;
}

@keyframes aboutFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* ==========================
   SECTION TITLE
========================== */

.section-title {
    text-align: center;
    margin-bottom: 0px;
    bottom: 43px;
}

.section-title span{
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
    line-height: 3;
}

.section-title h2{
    font-size:46px;
    color:#111;
    margin-top:10px;
    text-transform: uppercase;
}

.section-title-attractions::before {
    content: 'ATTRACTION';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: #000;
    opacity: .04;
    z-index: 0;
    white-space: nowrap;
}

/* ==========================
   AMENITIES
========================== */

.amenities{
    background:#fafafa;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.amenity-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:all .4s ease;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border:1px solid rgba(0,0,0,.05);
}

.amenity-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#c8102e;
    transform:scaleX(0);
    transition:.4s;
}

.amenity-card:hover::before{
    transform:scaleX(1);
}

.amenity-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.amenity-card i{
    width:85px;
    height:85px;
    line-height:85px;
    border-radius:50%;
    background:#f5f5f5;
    color:#c8102e;
    font-size:34px;
    margin-bottom:25px;
    transition:.4s;
}

.amenity-card:hover i{
    background:#c8102e;
    color:#fff;
    transform:rotateY(360deg);
}

.amenity-card h3{
    font-size:22px;
    color:#111;
    margin-bottom:10px;
}

.amenity-card p {
    font-size: 15px;
    color: #666;
    font-family: 'Lora', serif;
}


.amenity-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.amenity-card .bg-icon{
    position:absolute;
    right:-15px;
    bottom:-15px;
    font-size:120px;
    color:#c8102e;
    opacity:0.05;
    z-index:1;
    transition:.4s;
}

.amenity-card:hover .bg-icon{
    transform:scale(1.15);
    opacity:0.08;
}

.amenity-card .amenity-icon, .amenity-card h3, .amenity-card p {
    position: relative;
    z-index: 2;
    line-height: 1.5;
}

.amenity-card{
    background:
    linear-gradient(
        135deg,
        #ffffff 0%,
        #fafafa 100%
    );
}

.amenity-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#c8102e;
}

.attraction{
    position:relative;
    background:#f9f8f5;
    overflow:hidden;
    padding-bottom: 10px;
}

.attraction::before{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:500px;
    height:500px;
    background:url('../images/pattern.png') no-repeat center;
    background-size:contain;
    opacity:.03;
    pointer-events:none;
}

.amenities{
    position:relative;
    background:#fff;
    overflow:hidden;
}

.amenities::before{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:500px;
    height:500px;
    background:url('../images/pattern.png') no-repeat center;
    background-size:contain;
    opacity:.03;
    pointer-events:none;
}

.amenities-intro {
    margin-top: 15px;
    color: #555;
    line-height: 1.8;
    text-align: center;
}

.amenities1 {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding-top: 30px;
}

.amenities1::before{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:500px;
    height:500px;
    background:url('../images/pattern.png') no-repeat center;
    background-size:contain;
    opacity:.03;
    pointer-events:none;
}

.section-title{
    position:relative;
}
.attraction section, .section-title::before{
    content:'ATTRACTION';
    position:absolute;
    top:-50px;
    left:50%;
    transform:translateX(-50%);
    font-size:120px;
    font-weight:800;
    color:#000;
    opacity:.04;
    z-index:0;
    white-space:nowrap;
}

.amenities section, .section-title::before{
    content:'AMENITIES';
    position:absolute;
    top:-50px;
    left:50%;
    transform:translateX(-50%);
    font-size:120px;
    font-weight:800;
    color:#000;
    opacity:.04;
    z-index:0;
    white-space:nowrap;
}

.section-title h2,
.section-title span{
    position:relative;
    z-index:2;
}

.gallery{
    position:relative;
    background:#f9f8f5;
    overflow:hidden;
}


.section-title-gallery {
    position: relative;
}
.section-title-gallery {
    text-align: center;
    margin-bottom: 60px;
}
.section-title-gallery::before {
    content: 'GALLERY';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: #000;
    opacity: .04;
    z-index: 0;
    white-space: nowrap;
}
.section-title-gallery h2,
.section-title-gallery span{
    position:relative;
    z-index:2;
}
.section-title-gallery span{
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
    line-height: 3;
}
.section-title-gallery h2 {
    font-size: 48px;
    color: #111;
    margin-top: 10px;
    text-transform: uppercase;
}



.section-title-contact {
    position: relative;
}
.section-title-contact {
    text-align: center;
    margin-bottom: 60px;
}
.section-title-contact::before {
    content: 'CONTACT';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: #000;
    opacity: .04;
    z-index: 0;
    white-space: nowrap;
}
.section-title-contact h2,
.section-title-contact span{
    position:relative;
    z-index:2;
}
.section-title-contact h2 {
    font-size: 48px;
    color: #111;
    margin-top: 10px;
}



.section-title-attractions {
    position: relative;
}
.section-title-attractions {
    text-align: center;
    margin-bottom: 60px;
}
.section-title-attractions::before {
    content: 'ATTRACTION';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    font-weight: 800;
    color: #000;
    opacity: .04;
    z-index: 0;
    white-space: nowrap;
}
.section-title-attractions h2,
.section-title-attractions span{
    position:relative;
    z-index:2;
}
.section-title-attractions span{
    color:var(--primary);
    font-weight:600;
    letter-spacing:2px;
    line-height: 3;
}
.section-title-attractions h2 {
    font-size: 46px;
    color: #111;
    text-transform: uppercase;
}


.section-title h2, .section-title-gallery h2, .section-title-attractions h2 {margin-top: 11px!important}



.amenity-card{
    background:linear-gradient(
        145deg,
        #ffffff,
        #f7f7f7
    );
    border:1px solid rgba(0,0,0,.05);
}

.amenity-card:hover{
    background:#fff;
    transform:translateY(-10px);
}

/* ==========================
   ROOMS
========================== */

.room-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.room-card{
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:var(--shadow);
}

.room-card img{
    width:100%;
    transition:.7s;
}

.room-card:hover img{
    transform:scale(1.1);
}

.room-info{
    padding:30px;
}

.room-info h3{
    color:#111;
    margin-bottom:10px;
}

.room-card{
    position:relative;
}

.room-card::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        transparent 55%,
        rgba(0,0,0,.15)
    );
    pointer-events:none;
}

.room-card img{
    height:320px;
    object-fit:cover;
}

.room-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 30px;
    background:linear-gradient(135deg,#c8102e,#a30d26);
    color:#fff;
    font-size:15px;
    font-weight:600;
    border-radius:50px;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(200,16,46,.25);
}

.room-btn i{
    transition:.4s;
}

.room-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.3),
        transparent
    );
    transition:.6s;
}

.room-btn:hover::before{
    left:100%;
}

.room-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(200,16,46,.35);
}

.room-btn:hover i{
    transform:translateX(5px);
}

.room-info p{font-family: 'Lora', serif; margin-bottom: 20px; font-size: 15px;line-height: 1.5;}


/* ==========================
   PARALLAX
========================== */

.parallax{
    position:relative;
    background:url('../images/hero-breakfast.jpg') #000;
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    height:500px;
    display:flex;
    align-items:center;
    justify-content:center;
}


.parallax .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.parallax .content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
}

.parallax h2{
    font-size:60px;
    margin-bottom:15px;
}

/* ==========================
   GALLERY
========================== */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.gallery-grid img{
    height:280px;
    width:100%;
    object-fit:cover;
    border-radius:15px;
    transition:.6s;
}

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

.gallery-grid a {
    display: block;
    /* overflow: hidden; */
    border-radius: 15px;
}

.gallery-grid img{
    width:100%;
    transition:.6s ease;
}

.gallery-grid a:hover img{
    transform:scale(1.08);
}

/* ==========================
   ATTRACTIONS
========================== */

.attractions{
    background:#fff;
}

.attraction-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.attraction-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.attraction-card:hover{
    transform:translateY(-10px);
}

.attraction-image{
    overflow:hidden;
}

.attraction-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.7s;
}

.attraction-card:hover img{
    transform:scale(1.08);
}

.attraction-content{
    padding:25px;
}

.attraction-content h3{
    font-size:22px;
    color:#111;
    margin-bottom:12px;
}

.attraction-content p{
    color:#666;
    line-height:1.8;
}

.attraction-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.attraction-item{
    position:relative;
    height:500px;
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
}

.attraction-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

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

.attraction-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:35px;
    color:#fff;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
}

.attraction-overlay h3{
    font-size:28px;
    margin-bottom:10px;
}

.attraction-overlay p{
    margin:0;
    color:#ddd;
}

.attractions-slider{
    padding-bottom:60px;
}

.attraction-card{
    position:relative;
    height:500px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.attraction-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.attraction-card:hover img{
    transform:scale(1.1);
}

.attraction-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:30px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
    color:#fff;
}

.attraction-overlay span{
    display:inline-block;
    padding:6px 14px;
    background:#c8102e;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.attraction-overlay h3{
    font-size:28px;
    margin-bottom:15px;
}

.attraction-overlay a{
    color:#fff;
    font-weight:600;
}

.attractions-slider .swiper-pagination-bullet-active{
    background:#c8102e;
}

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

.contact{
    background:#fafafa;
}

.contact-box{
    text-align:center;
    max-width:700px;
    margin:auto;
}

.contact-box h3{
    color:#111;
    font-size:32px;
    margin-bottom:20px;
}

.contact-box p{
    margin-bottom:15px;
}

/* ==========================
   MAP
========================== */

.map iframe{
    width:100%;
    height:450px;
    border:0;
}

/* ==========================
   FOOTER
========================== */

footer{
    background:#111;
    color:#fff;
    text-align:left;
    padding:70px 0;
}

footer img {
    /* margin: auto; */
    max-height: 80px;
    margin-bottom: 20px;
}

footer p{
    margin-bottom:10px;
}

.copyright{
    background:#000;
    color:#fff;
    text-align:center;
    padding:18px;
    font-size:14px;
}

/* ==========================
   BACK TO TOP
========================== */

#backToTop{
    position:fixed;
    right:20px;
    bottom:20px;
    width:55px;
    height:55px;
    background:#c8102e;
    color:#fff;
    border:none;
    border-radius:50%;
    cursor:pointer;
    z-index:99999;

    display:none;

    box-shadow:0 5px 20px rgba(0,0,0,.3);
}

#backToTop i{
    font-size:18px;
}



/* ACTIVE MENU */

.navbar a.active{
    color:#c8102e !important;
}

/* REVEAL ANIMATION */

.room-card, .amenity-card, .gallery-grid img {
    /* opacity: 0; */
    /* transform: translateY(40px); */
    transition: all .8s ease;
}

.room-card.show, .amenity-card.show, .gallery-grid img.show {
    opacity: 1;
    /* transform: translateY(0px); */
}

/* VIDEO BUTTON */

.about-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.video-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:90px;
    height:90px;
    border-radius:50%;
    background:#c8102e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:10;
    transition:.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.video-btn:hover{
    transform:translate(-50%, -50%) scale(1.1);
    background:#111;
}

.video-btn::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(200,16,46,.3);
    animation:pulse 2s infinite;
    z-index:-1;
}

@keyframes pulse{

    0%{
        transform:scale(.8);
        opacity:1;
    }

    100%{
        transform:scale(1.5);
        opacity:0;
    }

}

.footer{
    background:#111;
    color:#d5d5d5;
    padding:56px 0 42px;
}

.footer a{
    background:#111;
    color:#d5d5d5;
    
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr 1fr;
    gap:50px;
}

.footer-logo{
    max-height:70px;
    margin-bottom:20px;
}

.add{padding: 0; margin: 0;}
.footer p{
    color:#bdbdbd;
    line-height:1.8;
}

.footer h4{
    font-size:22px;
    margin-bottom:25px;
    position:relative;
}

.footer h4 a{
    font-size:22px;
    margin-bottom:25px;
    position:relative;
    color: #d5d5d5;
}

.footer h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:40px;
    height:2px;
    background:#c8102e;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:15px;
}

.footer ul li a{
    color:#d5d5d5;
    transition:.3s;
}

.footer ul li a:hover{
    color:#fff;
    padding-left:5px;
}

.contact-info li{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.contact-info i{
    color:#c8102e;
    margin-top:4px;
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:#c8102e;
    transform:translateY(-5px);
}

.copyright{
    border-top:1px solid rgba(255,255,255,.08);
    padding:20px 0;
    text-align:center;
}

.copyright p{
    margin:0;
    color:#999;
}

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

.hotel-info li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:18px;
    color:#d5d5d5;
    line-height:1.7;
}

.hotel-info li i{
    color:#c8102e;
    font-size:18px;
    min-width:20px;
    margin-top:4px;
}

.hotel-info li a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.hotel-info li a:hover{
    color:#c8102e;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:0px;
    padding:25px 0;
    text-align:center;
    background:#0b0b0b;
}

.footer-bottom p{
    margin:8px 0;
    color:#d5d5d5;
    font-size:15px;
    line-height:1.8;
}

.footer-credit{
    margin-top:12px;
}

.footer-credit a{
    color:#c8102e;
    font-weight:500;
    transition:.3s;
}

.footer-credit a:hover{
    color:#ffffff;
}

.footer-policy-links{
    margin-top:0px;
}

.footer-policy-links a{
    color:#d5d5d5;
    font-size:14px;
    transition:.3s;
}

.footer-policy-links a:hover{
    color:#c8102e;
}

.footer-policy-links span{
    margin:0 10px;
    color:#fff;
}

.guest-dropdown-wrap{
    position:relative;
}

.guest-selector{
    height:50px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    cursor:pointer;
    background:#fff;
}

.guest-dropdown{
    position:absolute;
    top:100%;
    left:0;
    width:320px;
    background:#fff;
    border-radius:12px;
    padding:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    margin-top:10px;
    display:none;
    z-index:999;
}

.guest-dropdown.active{
    display:block;
}

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

.counter{
    display:flex;
    align-items:center;
    gap:10px;
}

.counter button{
    width:32px;
    height:32px;
    border:none;
    border-radius:50%;
    background:#f3f3f3;
    cursor:pointer;
    font-weight:700;
}

.counter input{
    width:40px;
    text-align:center;
    border:none;
    background:none;
    font-weight:600;
}

.apply-btn{
    width:100%;
    height:45px;
    border:none;
    background:#c8102e;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
}

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

.gallery-item {
    /* overflow: hidden; */
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    position: relative;
}

.gallery-item img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.4s;
}

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

.faq-wrapper-modern{
    margin-top:40px;
    display:grid;
    gap:16px;
}

.faq-item-modern{
    background:#fff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    overflow:hidden;
    transition:0.3s;
}

.faq-q{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    cursor:pointer;
    font-weight:600;
    font-size:16px;
}

.faq-q span{
    display:flex;
    align-items:center;
    gap:10px;
}

.faq-q i{
    color:#005baa;
    transition:0.3s;
}

.faq-a{
    padding:0 22px 18px;
    color:#555;
    line-height:1.7;
    display:none;
}

.faq-item-modern.active .faq-a{
    display:block;
}

.faq-item-modern.active .faq-q i.fa-plus{
    transform:rotate(45deg);
}

.faq-item-modern:hover{
    transform:translateY(-3px);
}



.faq-wrapper-modern{
    margin-top:40px;
    display:grid;
    gap:16px;
}

.faq-item-modern{
    background:#fff;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    overflow:hidden;
    transition:0.3s;
}

.faq-q{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    cursor:pointer;
    font-weight:600;
}

.faq-q span{
    display:flex;
    align-items:center;
    gap:10px;
}

.faq-q i{
    color:#005baa;
    transition:0.3s;
}

.faq-a{
    padding:0 22px 18px;
    color:#555;
    line-height:1.7;
    display:none;
}

.faq-item-modern.active .faq-a{
    display:block;
}

.faq-item-modern.active .faq-q i.fa-plus{
    transform:rotate(45deg);
}

.faq-balanced{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin-top:40px;
}

/* CARD */
.faq-card{
    background:#fff;
    border-radius:16px;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border-top:4px solid transparent;
    transition:0.3s;
}

.faq-card:hover{
    transform:translateY(-5px);
}

/* HEADER */
.faq-head{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
}

.star{
    color:#f5a623;
    font-size:18px;
}

/* QUESTION */
.faq-question{
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

/* ANSWER */
.faq-answer{
    color:#555;
    line-height:1.6;
    font-size:14.5px;
}

/* COLORS (ONLY ACCENT, NOT FULL BG) */
.faq-card.blue{border-top-color:#2a5298;}
.faq-card.purple{border-top-color:#7b2ff7;}
.faq-card.orange{border-top-color:#ff8c00;}
.faq-card.green{border-top-color:#1aa36f;}
.faq-card.pink{border-top-color:#e91e63;}
.faq-card.dark{border-top-color:#34495e;}


.faq-complete{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    margin-top:40px;
}

.faq-card{
    background:#fff;
    border-radius:16px;
    padding:22px;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.faq-card:hover{
    transform:translateY(-6px);
}

/* STAR HEADER */
.faq-top{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
}

.star{
    color:#f5a623;
    font-size:18px;
}

.faq-top h3{
    margin:0;
    font-size:18px;
    color:#005baa;
}

/* QUESTION */
.faq-question{
    font-weight:700;
    color:#222;
    margin-bottom:10px;
    font-size:15px;
}

/* ANSWER */
.faq-answer{
    color:#555;
    line-height:1.7;
    font-size:14.5px;
}

.faq-answer{
    display:none;
    margin-top:10px;
}

.faq-card.active .faq-answer{
    display:block;
}

.faq-card{
    cursor:pointer;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:0.4s ease;
}

.faq-card.active .faq-answer{
    max-height:500px;
}


/* SECTION SPACING */
.attractions-section{
    padding:80px 0 40px 0;
    background:#fff;
}

/* MAIN ROW */
.attraction-row {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 26px;
}

/* REVERSE */
.attraction-row.reverse{
    flex-direction:row-reverse;
}

/* IMAGE SIDE */
.attraction-photo {
    width: 43%;
}

.attraction-photo img {
    width: 100%;
    height: 316px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* CONTENT SIDE */
.attraction-info{
    width:50%;
}

/* TITLE (LUXURY STYLE LIKE IMAGE) */
.attraction-info h2 {
    font-size: 27px;
    font-weight: 600;
    color: #c8102e;
    margin-bottom: 15px;
    /* font-family: 'Poppins', sans-serif; */
    text-transform: uppercase;
}

/* DISTANCE BADGE */
.distance{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    background:#f3f3f3;
    border-radius:30px;
    font-size:14px;
    color:#333;
    margin-bottom:18px;
}

.distance i{
    color:#c8102e;
}

/* DESCRIPTION */
.attraction-info p{
    font-size:15px;
    line-height:1.8;
    color:#000;
    margin-bottom: 25px;
}

/* RESPONSIVE */
@media(max-width:991px){
    .attraction-row,
    .attraction-row.reverse{
        flex-direction:column;
        gap:25px;
    }

    .attraction-photo,
    .attraction-info{
        width:100%;
    }

    .attraction-photo img{
        height:300px;
    }

    .attraction-info h2{
        font-size:26px;
    }
}


.restaurant-modern-grid{
    padding:80px 0;
    background:#f8f8f8;
}

/* GRID */
.restaurant-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:40px;
}

/* CARD */
.restaurant-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:280px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    cursor:pointer;
}

/* IMAGE */
.restaurant-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}

/* HOVER ZOOM */
.restaurant-card:hover img{
    transform:scale(1.1);
}

/* OVERLAY */
.restaurant-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:18px;
    background:linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color:#fff;
}

.restaurant-overlay h3{
    margin:0;
    font-size:18px;
}

.restaurant-overlay span{
    font-size:13px;
    color:#ffd27a;
    display:block;
    margin:5px 0;
}

.restaurant-overlay p{
    font-size:13px;
    line-height:1.4;
    margin:0;
    opacity:0.9;
}

/* RESPONSIVE */
@media(max-width:991px){
    .restaurant-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .restaurant-grid{
        grid-template-columns:1fr;
    }
}



.restaurant-two-col{
    padding:80px 0;
    background:#f4f2ed;
}

/* MAIN LAYOUT */
.restaurant-layout{
    display:flex;
    gap:40px;
    align-items:stretch;
    margin-top:40px;
}

/* LEFT LIST */
.restaurant-list{
    width:55%;
}

/* RIGHT IMAGE */
.restaurant-image{
    width:45%;
    position:relative;
}

.restaurant-image img{
    width:100%;
    height:97%;
    min-height:500px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* ITEM STYLE */
.restaurant-item{
    background:#fff;
    padding:18px 20px;
    margin-bottom:15px;
    border-radius:14px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    transition:0.3s;
}

.restaurant-item:hover{
    transform:translateY(-4px);
}

.restaurant-item h3{
    margin:0;
    font-size:18px;
    color:#005baa;
}

.restaurant-item span{
    font-size:13px;
    color:#ff7a00;
    display:block;
    margin:5px 0;
}

.restaurant-item p{
    margin:0;
    font-size:14px;
    color:#555;
    line-height:1.5;
}

/* RESPONSIVE */
@media(max-width:991px){
    .restaurant-layout{
        flex-direction:column;
    }

    .restaurant-list,
    .restaurant-image{
        width:100%;
    }

    .restaurant-image img{
        min-height:300px;
    }
}

.about-more {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.6s ease;
}

.about-more.show {
    max-height: 500px;
    opacity: 1;
    margin-top: 10px;
}

.about-toggle-btn {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.about-toggle-btn i {
    transition: 0.4s ease;
}

.about-toggle-btn.active i {
    transform: rotate(180deg);
}

/* ==========================
   HOPKINSVILLE LOCAL EXPERIENCES
========================== */
.local-experiences{
    position:relative;
    background:#ebe6d8;
    overflow:hidden;
}

.home-local-experiences{
    background:#f9f8f5;
}

.local-experiences::before{
    content:'';
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    top:-190px;
    right:-170px;
    background:rgba(200,16,46,.05);
    pointer-events:none;
}

.local-experiences-title{
    max-width:980px;
    margin:0 auto 45px;
    text-align:center;
    position:relative;
}

.local-experience-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    position:relative;
    z-index:1;
}

.local-experience-card{
    display:flex;
    flex-direction:column;
    min-height:315px;
    padding:30px 25px;
    background:#fff;
    border:1px solid rgba(0,0,0,.07);
    border-top:4px solid var(--primary);
    border-radius:18px;
    box-shadow:0 14px 35px rgba(0,0,0,.08);
    transition:transform .35s ease, box-shadow .35s ease;
}

.local-experience-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,0,0,.13);
}

.local-experience-icon{
    width:64px;
    height:64px;
    display:grid;
    place-items:center;
    border-radius:18px;
    margin-bottom:22px;
    background:rgba(200,16,46,.09);
    color:var(--primary);
    font-size:27px;
}

.local-experience-card h3{
    color:#111;
    font-size:21px;
    line-height:1.3;
    margin-bottom:13px;
}

.local-experience-card p{
    color:#555;
    font-size:15px;
    line-height:1.7;
    margin-bottom:18px;
}

.local-experience-card a{
    margin-top:auto;
    color:var(--primary);
    font-weight:700;
    font-family:'Montserrat', Arial, sans-serif;
    font-size:14px;
}

.local-experience-card a i{
    margin-left:6px;
    font-size:12px;
}

.field-to-fork-callout{
    display:grid;
    grid-template-columns:auto 1fr;
    gap:24px;
    align-items:center;
    margin-top:35px;
    padding:30px 34px;
    border-radius:20px;
    background:#f4f2ed;
    border:1px solid rgba(0,0,0,.06);
}

.field-to-fork-icon{
    width:76px;
    height:76px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    font-size:30px;
}

.field-to-fork-callout span,
.event-venue-content span{
    display:block;
    color:#dc5a6f;
    font-family:'Montserrat', Arial, sans-serif;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    margin-bottom:6px;
}

.field-to-fork-callout h3{
    color:#111;
    font-size:26px;
    margin-bottom:8px;
}

.field-to-fork-callout p{
    color:#555;
    line-height:1.75;
    margin:0;
}

.home-field-to-fork{
    grid-template-columns:auto 1fr auto;
}

.experience-btn,
.event-venue-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:14px 22px;
    border-radius:50px;
    background:var(--primary);
    color:#fff;
    font-family:'Montserrat', Arial, sans-serif;
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
    transition:background .3s ease, transform .3s ease;
}

.experience-btn:hover,
.event-venue-link:hover{
    color:#fff;
    background:#111;
    transform:translateY(-2px);
}

.event-venue-section{
    padding:80px 0 80px;
    background:#fff;
}

.event-venue-callout{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:25px;
    padding:32px 36px;
    color:#fff;
    background:#111;
    border-radius:20px;
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.event-venue-icon{
    width:72px;
    height:72px;
    display:grid;
    place-items:center;
    border-radius:18px;
    background:var(--primary);
    color:#fff;
    font-size:29px;
}

.event-venue-content h2{
    color:#fff;
    font-size:29px;
    margin-bottom:8px;
}

.event-venue-content p{
    color:#e1e1e1;
    line-height:1.7;
    margin:0;
}



/* ==================================================
   HOMEPAGE FAQ & ENHANCED LOCATION MAP
================================================== */
.hotel-faq-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.hotel-faq-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -180px;
    right: -140px;
    border-radius: 50%;
    background: rgba(200, 16, 46, 0.06);
    pointer-events: none;
}

.hotel-faq-heading {
    max-width: 860px;
    margin: 0 auto 45px;
}

.hotel-faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.hotel-faq-item {
    background: #ffffff;
    border: 1px solid #e7e2dc;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hotel-faq-item:hover,
.hotel-faq-item[open] {
    border-color: rgba(200, 16, 46, 0.35);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.1);
}

.hotel-faq-item summary {
    min-height: 82px;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: 52px 1fr 28px;
    align-items: center;
    gap: 16px;
    color: #111111;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.hotel-faq-item summary::-webkit-details-marker {
    display: none;
}

.hotel-faq-item summary:focus-visible {
    outline: 3px solid rgba(200, 16, 46, 0.3);
    outline-offset: -3px;
}

.hotel-faq-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #c8102e;
    color: #ffffff;
    font-size: 20px;
}

.hotel-faq-toggle {
    color: #c8102e;
    font-size: 17px;
    transition: transform 0.3s ease;
}

.hotel-faq-item[open] .hotel-faq-toggle {
    transform: rotate(45deg);
}

.hotel-faq-answer {
    padding: 0 24px 24px 92px;
    color: #555555;
    font-size: 16px;
    line-height: 1.75;
}

.hotel-faq-answer p {
    margin: 0;
}

.hotel-faq-links {
    margin-top: 18px !important;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hotel-faq-links a {
    min-height: 42px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: #f7f3ef;
    color: #8f0b21;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.hotel-faq-links a:hover {
    background: #c8102e;
    color: #ffffff;
    transform: translateY(-2px);
}

.location-map-section {
    position: relative;
    background: #f9f8f5;
    overflow: hidden;
}

.location-map-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    bottom: -180px;
    left: -120px;
    border-radius: 50%;
    background: rgba(214, 167, 86, 0.13);
    pointer-events: none;
}

.location-map-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 38px;
    align-items: stretch;
}

.location-map-content,
.location-map-frame {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.location-map-content {
    padding: 44px 40px;
    background: #111111;
    color: #ffffff;
}

.location-map-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: #f0c675;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.location-map-content h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 42px;
    line-height: 1.18;
}

.location-map-content > p {
    margin-bottom: 28px;
    color: #e3e3e3;
    font-size: 16px;
    line-height: 1.75;
}

.location-address-card {
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
}

.location-address-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #c8102e;
    color: #ffffff;
    font-size: 20px;
}

.location-address-card h3 {
    margin-bottom: 7px;
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 17px;
    line-height: 1.4;
}

.location-address-card address {
    color: #dedede;
    font-style: normal;
    line-height: 1.65;
}

.location-map-details {
    margin: 24px 0;
    display: grid;
    gap: 13px;
}

.location-map-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e7e7e7;
    line-height: 1.55;
}

.location-map-details i {
    width: 20px;
    margin-top: 3px;
    color: #f0c675;
    text-align: center;
}

.location-map-details a {
    color: #ffffff;
    word-break: break-word;
}

.location-map-details a:hover {
    color: #f0c675;
}

.location-map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-primary-btn,
.location-secondary-btn {
    min-height: 48px;
    padding: 12px 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.location-primary-btn {
    background: #c8102e;
    color: #ffffff;
}

.location-secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #ffffff;
}

.location-primary-btn:hover,
.location-secondary-btn:hover {
    transform: translateY(-3px);
}

.location-primary-btn:hover {
    background: #ffffff;
    color: #111111;
}

.location-secondary-btn:hover {
    background: #ffffff;
    color: #111111;
}

.location-map-frame {
    min-height: 590px;
    background: #dddddd;
}

.location-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 590px;
    display: block;
    border: 0;
}

/* FAQ heading reset and section label */
.hotel-faq-heading {
    position: relative;
    bottom: auto;
    text-align: center;
}

.hotel-faq-heading::before {
    content: 'FAQ';
}