/* =====================================
   CAPITOL HILL MOTEL INNER PAGES
   Common: top bar, sticky header, hero, footer
   Page: amenities
===================================== */

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

:root {
    --primary: #c8102e;
    --primary-dark: #9f0d25;
    --gold: #e29f0b;
    --gold-dark: #8f6304;
    --navy: #1d2939;
    --black: #111111;
    --white: #ffffff;
    --light: #f8f8f8;
    --muted: #666666;
    --border: rgba(17, 17, 17, 0.08);
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
    --transition: all 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    color: #282626;
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 100000;
    padding: 12px 18px;
    background: var(--white);
    color: var(--black);
    border-radius: 5px;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* ==========================
   TOP BAR - COMMON
========================== */

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

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

.top-left,
.top-right a {
    display: inline-flex;
    align-items: center;
}

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

.top-bar i {
    margin-right: 8px;
    color: var(--gold);
}

/* ==========================
   HEADER - COMMON
========================== */

.header {
    position: fixed;
    top: 42px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.22);
    line-height: 1.1;
    transition: var(--transition);
}

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

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

.logo {
    width: 220px;
    min-width: 220px;
    display: block;
}

.logo img {
    position: absolute;
    top: 0;
    width: auto;
    max-width: 220px;
    max-height: 175px;
    object-fit: contain;
}

.navbar {
    /* margin-left: auto; */
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar a {
    position: relative;
    display: inline-flex;
    padding: 10px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    transition: var(--transition);
}

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

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.navbar a:hover,
.navbar a:focus-visible,
.navbar a.active {
    color: var(--gold) !important;
}

.header.sticky .navbar a:hover,
.header.sticky .navbar a:focus-visible,
.header.sticky .navbar a.active {
    color: var(--gold-dark) !important;
}

.navbar a:hover::after,
.navbar a:focus-visible::after,
.navbar a.active::after {
    transform: scaleX(1);
}

.book-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 40px;
    background: var(--primary);
    color: #fff;
    font-family: 'Lora', serif;
    font-weight: 600;
    transition: var(--transition);
}

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

.menu-btn {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

.header.sticky .menu-btn {
    color: #111;
}

/* ==========================
   SINGLE IMAGE HERO - COMMON
========================== */

.inner-hero {
    height: 80vh;
    min-height: 80vh;
    background: #000;
    overflow: hidden;
}

.inner-hero .swiper-wrapper,
.inner-hero .swiper-slide {
    height: 100%;
}

.inner-hero .swiper-slide {
    position: relative;
}

.inner-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: innerHeroZoom 12s ease-in-out infinite alternate;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.30) 36%, rgba(35, 0, 8, 0.76) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.25), transparent 60%);
}

.inner-hero-content {
    position: absolute;
    left: 50%;
    bottom: 128px;
    z-index: 2;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}

.inner-hero-content span {
    display: inline-block;
    margin-bottom: 20px;
    color: #f4b62f;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.inner-hero-content h1 {
    margin: 0 0 20px;
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 2px 2px 1px #000;
}

.inner-hero-content p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
    text-align: center;
}

@keyframes innerHeroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

/* ==========================
   SHARED INNER TITLES
========================== */

.section-kicker {
    display: inline-block;
    color: var(--gold-dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    line-height: 1.4;
    text-transform: uppercase;
}

.inner-section-heading {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.inner-section-heading h2,
.room-amenities-content h2,
.inner-intro-content h2 {
    color: var(--navy);
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 700;
}

.inner-section-heading h2 {
    margin: 14px 0 16px;
    text-transform: uppercase;
}

.inner-section-heading p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
}

/* ==========================
   AMENITIES INTRO / ABOUT
========================== */

.section {
    padding: 60px 0;
}

/* Amenities page enhancement only */
.amenities-page {
    position: relative;
    overflow: hidden;
    background: #fffcfc;
    padding-bottom: 50px;
}

.amenities-page::before {
    content: "";
    position: absolute;
    top: 80px;
    right: -140px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(0, 91, 170, 0.08);
    z-index: 0;
}

.amenities-page::after {
    content: "";
    position: absolute;
    bottom: 60px;
    left: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(252, 180, 20, 0.10);
    z-index: 0;
}

.amenities-page .container {
    position: relative;
    z-index: 1;
}

.amenities-page .section-title {
    max-width: 1190px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

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

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


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

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

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

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

.inner-intro-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 85px 0 78px;
    background: #fafafa;
}

.inner-intro-section::before {
    content: "";
    position: absolute;
    top: 125px;
    left: -150px;
    z-index: -1;
    width: 325px;
    height: 325px;
    border-radius: 50%;
    background: rgba(247, 198, 91, 0.17);
    pointer-events: none;
}

.inner-intro-section::after {
    content: "";
    position: absolute;
    top: 40px;
    right: -245px;
    z-index: -1;
    width: 510px;
    height: 510px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    pointer-events: none;
}

.inner-intro-section .container {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
}

.inner-intro-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.inner-intro-content::before {
    content: 'AMENITIES';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(65px, 10vw, 145px);
    font-weight: 800;
    letter-spacing: 4px;
    line-height: 1;
    opacity: 0.025;
    white-space: nowrap;
}

.inner-intro-watermark {
    position: absolute;
    top: -66px;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    color: #1d2939;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(86px, 8vw, 148px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 2px;
    white-space: nowrap;
    opacity: 0.035;
    pointer-events: none;
    user-select: none;
}

.inner-intro-section .section-kicker {
    position: relative;
    display: inline-block;
    color: #c8102e;
    font-family: "Lora", serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.inner-intro-section .inner-intro-content h2 {
    max-width: 1500px;
    margin: 28px auto 24px;
    color: #111111;
    font-family: "Lora", serif;
    font-size: 46px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.inner-intro-copy {
    max-width: 1480px;
    margin: 0 auto;
}

.inner-intro-section .inner-intro-content p {
    margin: 0 auto 20px;
    color: #4d4d4d;
    font-family: "Lora", serif;
    font-size: clamp(17px, 1.15vw, 21px);
    line-height: 1.75;
}

.inner-intro-section .inner-intro-content p:last-child {
    margin-bottom: 0;
}

.inner-intro-section .inner-intro-content strong {
    color: #333333;
    font-weight: 700;
}

/* =====================================
   TABLET
===================================== */

@media screen and (max-width: 991px) {

    .amenities section, .section-title::before {
        top: -25px;
        font-size: 42px;
    }
}

@media (max-width: 767px) {

    .amenities section, .section-title::before {
        top: -35px;
        font-size: 55px;
        letter-spacing: 1px;
    }
}

    .inner-intro-section {
        padding: 76px 0 72px;
    }

    .inner-intro-section::before {
        top: 125px;
        left: -190px;
    }

    .inner-intro-watermark {
        top: -51px;
        font-size: clamp(80px, 13vw, 122px);
    }

    .inner-intro-section .section-kicker {
        font-size: 18px;
    }

    .inner-intro-section .inner-intro-content h2 {
        margin-top: 24px;
        font-size: clamp(37px, 5.2vw, 50px);
    }

    .inner-intro-section .inner-intro-content p {
        font-size: 17px;
        line-height: 1.75;
    }
}

/* =====================================
   MOBILE
===================================== */

@media screen and (max-width: 767px) {

    .inner-intro-section {
        padding: 64px 0 60px;
    }

    .inner-intro-section .container {
        width: calc(100% - 32px);
    }

    .inner-intro-section::before {
        top: 118px;
        left: -215px;
        width: 300px;
        height: 300px;
    }

    .inner-intro-section::after {
        right: -330px;
    }

    .inner-intro-watermark {
        top: -34px;
        font-size: clamp(60px, 17vw, 92px);
        opacity: 0.04;
    }

    .inner-intro-section .section-kicker {
        font-size: 15px;
        letter-spacing: 1.7px;
    }

    .inner-intro-section .inner-intro-content h2 {
        margin: 21px auto 19px;
        font-size: clamp(30px, 8.4vw, 42px);
        line-height: 1.12;
        letter-spacing: -0.35px;
    }

    .inner-intro-section .inner-intro-content p {
        font-size: 15.5px;
        line-height: 1.72;
    }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media screen and (max-width: 480px) {

    .inner-intro-section {
        padding: 58px 0 54px;
    }

    .inner-intro-section .container {
        width: calc(100% - 26px);
    }

    .inner-intro-watermark {
        top: -22px;
        font-size: 60px;
    }

    .inner-intro-section .inner-intro-content h2 {
        font-size: 29px;
    }
}

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

.inner-amenities-section {
    position: relative;
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.inner-amenities-section::before {
    content: 'AMENITIES';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(65px, 10vw, 145px);
    font-weight: 800;
    letter-spacing: 4px;
    line-height: 1;
    opacity: 0;
    white-space: nowrap;
}

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

.inner-amenity-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    padding: 36px 25px 30px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: linear-gradient(145deg, #fff, #f7f7f7);
    text-align: center;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
    transition: var(--transition);
}

.inner-amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0.26);
    transition: transform 0.35s ease;
}

.inner-amenity-card:hover,
.inner-amenity-card:focus-within {
    transform: translateY(-9px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.13);
}

.inner-amenity-card:hover::before,
.inner-amenity-card:focus-within::before {
    transform: scaleX(1);
}

.inner-amenity-icon {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 23px;
    border-radius: 50%;
    background: #f1f1f1;
    color: var(--primary);
    font-size: 34px;
    transition: var(--transition);
}

.inner-amenity-card:hover .inner-amenity-icon {
    background: var(--primary);
    color: #fff;
    transform: rotateY(360deg);
}

.inner-amenity-card h3 {
    margin-bottom: 11px;
    color: #111;
    font-size: 20px;
    line-height: 1.3;
}

.inner-amenity-card p {
    color: #666;
    font-size: 14.5px;
    line-height: 1.7;
}

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

.room-amenities-section {
    padding: 100px 0;
    background: #fffcfc;
}

.room-amenities-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 60px;
    align-items: center;
}

.room-amenities-content h2 {
    margin: 14px 0 16px;
}

.room-amenities-content > p {
    max-width: 680px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 17px;
}

.room-amenities-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 18px;
}

.room-amenities-list span {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fafafa;
    color: #3e3e3e;
    font-size: 14.5px;
    line-height: 1.45;
}

.room-amenities-list i {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    border-radius: 50%;
    background: var(--gold);
    color: #111;
    font-size: 11px;
}

.room-amenities-image {
    position: relative;
    min-height: 720px;
    border-radius: 28px;
}

.room-amenities-image > img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.room-image-note {
    position: absolute;
    left: -34px;
    bottom: 35px;
    width: min(390px, 92%);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 23px;
    border-radius: 18px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.23);
}

.room-image-note > i {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: #111;
    font-size: 21px;
}

.room-image-note strong,
.room-image-note span {
    display: block;
}

.room-image-note strong {
    font-size: 17px;
    line-height: 1.35;
}

.room-image-note span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.45;
}

/* ==========================
   CTA
========================== */

.inner-cta-section {
    position: relative;
    padding: 85px 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(10, 15, 25, 0.95), rgba(10, 15, 25, 0.82)),
        url('../images/guest-room.webp') center / cover no-repeat;
}

.inner-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    color: #fff;
}

.inner-cta-content > div:first-child {
    max-width: 760px;
}

.inner-cta-content span {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.inner-cta-content h2 {
    margin: 12px 0 12px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
}

.inner-cta-content p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

.inner-cta-actions {
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.inner-cta-primary,
.inner-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 27px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    transition: var(--transition);
}

.inner-cta-primary {
    background: var(--gold);
    color: #111;
}

.inner-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.48);
    color: #fff;
}

.inner-cta-primary:hover,
.inner-cta-primary:focus-visible,
.inner-cta-secondary:hover,
.inner-cta-secondary:focus-visible {
    transform: translateY(-3px);
}

.inner-cta-primary:hover,
.inner-cta-primary:focus-visible {
    background: #fff;
}

.inner-cta-secondary:hover,
.inner-cta-secondary:focus-visible {
    background: #fff;
    color: #111;
}

/* ==========================
   PREMIUM FOOTER - COMMON
========================== */

.chm-footer {
    position: relative;
    padding: 100px 0 50px;
    overflow: hidden;
    background:
        linear-gradient(rgba(10, 15, 25, 0.94), rgba(10, 15, 25, 0.96)),
        url('../images/park.jpg') center / cover no-repeat;
    color: #fff;
}

.chm-footer::before {
    content: '';
    position: absolute;
    top: -250px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.08;
}

.chm-footer-inner {
    position: relative;
    z-index: 2;
}

.chm-footer-main {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.chm-footer-logo {
    max-width: 190px;
    margin: 0 auto 25px;
}

.chm-footer-main h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
}

.chm-footer-main p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    line-height: 1.8;
}

.chm-footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 35px;
}

.chm-footer-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 20px;
    transition: var(--transition);
}

.chm-footer-social a:hover,
.chm-footer-social a:focus-visible {
    background: var(--gold);
    color: #111;
    transform: translateY(-6px);
}

.chm-footer-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 70px;
}

.chm-footer-card {
    text-align: left;
    padding: 35px 25px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 25px;
    backdrop-filter: blur(12px);
    transition: .4s;
}

.chm-footer-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.chm-footer-card i {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0px 25px;
    border-radius: 50%;
    background: #f7c65b;
    color: #111;
    font-size: 25px;
}

.chm-footer-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
}

.chm-footer-card p {
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.7;
}

.chm-footer-card a {
    display: inline-block;
    margin-top: 15px;
    color: var(--gold);
    font-weight: 700;
}

.chm-footer-contact i {
    width: auto;
    height: auto;
    background: none;
    color: #f7c65b;
    font-size: 16px;
    margin: 0;
}
.chm-footer-contact a {
    color: rgba(255, 255, 255, .8);
    font-weight: 600;
}
.chm-footer-contact a:hover{
    color:#f7c65b;
}
.chm-footer-contact p {
    display: flex;
    align-items: baseline;
    /* justify-content: center; */
    gap: 8px;
    margin: 0;
}

.chm-footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px 34px;
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.chm-footer-menu a {
    color: rgba(255, 255, 255, 0.80);
    font-weight: 600;
    transition: var(--transition);
}

.chm-footer-menu a:hover,
.chm-footer-menu a:focus-visible,
.chm-footer-menu a.active {
    color: var(--gold);
}

.chm-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: #0b1220;
}

.chm-footer-bottom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 0;
}

.chm-footer-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
}

.chm-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.6;
}

.chm-footer-bottom a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

.chm-footer-bottom a:hover,
.chm-footer-bottom a:focus-visible {
    color: var(--gold);
}

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

#backToTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 17px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: var(--transition);
}

#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover,
#backToTop:focus-visible {
    background: #000;
    transform: translateY(-3px);
}

/* ==========================
   REVEAL
========================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1180px) {
    .header .container { gap: 20px; }
    .logo { width: 185px; min-width: 185px; }
    .logo img { max-width: 185px; }
    .navbar ul { gap: 21px; }
    .navbar a { font-size: 15px; }
    .book-btn { padding-inline: 25px; }
    .inner-amenities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .container { width: 92%; }

    .top-bar { display: none; }

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

    .header .container {
        padding: 15px 0;
    }

    .logo {
        width: 172px;
        min-width: 172px;
    }

    .logo img {
        max-width: 172px;
        max-height: 149px;
    }

    .menu-btn {
        display: inline-flex;
        order: 3;
        color: #111;
    }

    .book-btn { display: none; }

    .navbar {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        margin: 0;
        padding: 20px 4% 28px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        transition: left 0.35s ease;
    }

    .navbar.active { left: 0; }

    .navbar ul {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .navbar a,
    .header.sticky .navbar a {
        display: flex;
        width: 100%;
        padding: 14px 16px;
        border-bottom: 1px solid #ededed;
        border-radius: 8px;
        color: #111 !important;
    }

    .navbar a::after { display: none; }

    .navbar a.active,
    .header.sticky .navbar a.active {
        border-left: 4px solid var(--primary);
        background: #fff3f5;
        color: var(--primary) !important;
    }

    .inner-hero {
        height: 650px;
        min-height: 650px;
    }

    .inner-hero-content { bottom: 95px; }

    .inner-intro-section,
    .inner-amenities-section,
    .room-amenities-section {
        padding: 80px 0;
    }

    .inner-intro-grid,
    .room-amenities-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .inner-intro-image {
        min-height: 500px;
        max-width: 760px;
        margin: 0 auto;
    }

    .inner-intro-image > img { height: 500px; }

    .inner-intro-badge {
        right: 24px;
        bottom: 28px;
    }

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

    .room-amenities-image {
        min-height: 540px;
        max-width: 760px;
        margin: 0 auto;
    }

    .room-amenities-image > img { height: 540px; }
    .room-image-note { left: 25px; }

    .inner-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .inner-cta-actions {
        width: 100%;
        max-width: 390px;
    }

    .chm-footer-cards { grid-template-columns: 1fr; }
    .chm-footer-card { max-width: 680px; width: 100%; margin: 0 auto; }
}

@media (max-width: 767px) {
    .container { width: calc(100% - 32px); }

    .header .container { padding: 15px 0; }
    .logo { width: 150px; min-width: 150px; }
    .logo img { max-width: 150px; max-height: 149px; }
    .navbar { top: 90px; max-height: calc(100vh - 90px); }

    .inner-hero {
        height: 560px;
        min-height: 560px;
    }

    .inner-hero-content { bottom: 72px; }
    .inner-hero-content h1 { font-size: 46px; }
    .inner-hero-content p { font-size: 17px; }

    .inner-intro-section,
    .inner-amenities-section,
    .room-amenities-section {
        padding: 65px 0;
    }

    .inner-intro-image { min-height: auto; }
    .inner-intro-image > img { height: 390px; }

    .inner-intro-badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 30px);
        margin: -45px auto 0;
    }

    .intro-highlights { grid-template-columns: 1fr; }
    .intro-highlight { min-height: 90px; flex-direction: row; text-align: left; }

    .inner-section-heading { margin-bottom: 36px; }
    .inner-amenities-grid { grid-template-columns: 1fr; }
    .inner-amenity-card { min-height: auto; padding: 32px 22px; }

    .room-amenities-list { grid-template-columns: 1fr; }
    .room-amenities-image { min-height: auto; }
    .room-amenities-image > img { height: 430px; }

    .room-image-note {
        position: relative;
        left: auto;
        bottom: auto;
        width: calc(100% - 30px);
        margin: -45px auto 0;
    }

    .inner-cta-section { padding: 65px 0; }
    .inner-cta-actions { max-width: none; }
    .inner-cta-primary,
    .inner-cta-secondary { width: 100%; }

    .chm-footer { padding: 70px 0 40px; }
    .chm-footer-main h2 { font-size: 31px; }
    .chm-footer-main p { font-size: 15px; }
    .chm-footer-logo { max-width: 150px; }
    .chm-footer-social a { width: 43px; height: 43px; font-size: 17px; }
    .chm-footer-cards { margin-top: 48px; }
    .chm-footer-card { padding: 30px 20px; }
    .chm-footer-menu { margin-top: 45px; gap: 14px 24px; }
    .chm-footer-menu a { font-size: 14px; }
    .chm-footer-bottom-links { gap: 7px; text-align: center; }

    #backToTop { right: 15px; bottom: 15px; width: 48px; height: 48px; }
}

@media (max-width: 480px) {
    .container { width: calc(100% - 26px); }
    .menu-btn { width: 43px; height: 43px; }
    .inner-hero { height: 500px; min-height: 500px; }
    .inner-hero-content { bottom: 58px; }
    .inner-hero-content h1 { font-size: 38px; }
    .inner-hero-content p { font-size: 15px; }
    .inner-intro-image > img { height: 330px; }
    .room-amenities-image > img { height: 350px; }
    .inner-intro-content h2,
    .room-amenities-content h2,
    .inner-section-heading h2 { font-size: 30px; }
    .inner-intro-content p { font-size: 15.5px; }
    .chm-footer-main h2 { font-size: 27px; }
    .chm-footer-menu { flex-direction: column; align-items: center; }
    .chm-footer-bottom-links > span { display: none; }
    .chm-footer-bottom-links { flex-direction: column; }
}

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

/* ==========================
   ATTRACTION INTRO SECTION
========================== */


.attraction-page {
    position: relative;
    overflow: hidden;
    background: #fffcfc;
    padding-bottom: 50px;
}


.attraction-page::before {

    content: "";

    position: absolute;

    top: 80px;
    right: -140px;

    width: 320px;
    height: 320px;

    border-radius:50%;

    background: rgba(247,198,91,.17);

    z-index:0;

}



.attraction-page::after {

    content: "";

    position:absolute;

    bottom:60px;
    left:-120px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(200,16,46,.08);

    z-index:0;

}



.attraction-page .container {

    position:relative;
    z-index:1;

}



.attraction-page .section-title {

    max-width:1190px;

    margin-left:auto;
    margin-right:auto;

    text-align:center;

}



.attraction-page .section-title::before {

    content:'ATTRACTIONS';

    position:absolute;

    top:-80px;

    left:50%;

    transform:translateX(-50%);

    font-size:120px;

    font-weight:800;

    color:#000;

    opacity:.04;

    white-space:nowrap;

}



.attraction-page .section-title span {

    color:#c8102e;

    font-weight:600;

    letter-spacing:2px;

    line-height:3;

}



.attraction-page .section-title h2 {

    font-size:30px;

    color:#111;

    margin-top:10px;

    text-transform:uppercase;

}



.attraction-intro {

    margin-top:15px;

    color:#555;

    line-height:1.8;

    text-align:center;

}

/* ==========================
   DESTINATION SHOWCASE
========================== */

.attractions-showcase-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0 105px;
    background: #fff;
}

.attractions-showcase-section::before {
    content: '';
    position: absolute;
    top: -210px;
    left: -210px;
    width: 430px;
    height: 430px;
    border: 70px solid rgba(200, 16, 46, 0.035);
    border-radius: 50%;
}

.attractions-showcase-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 340px;
    gap: 25px;
}

.attraction-showcase-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #111;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.13);
    isolation: isolate;
}

.attraction-showcase-featured {
    grid-row: span 2;
}

.attraction-showcase-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s ease;
}

.attraction-showcase-card:hover > img,
.attraction-showcase-card:focus-within > img {
    transform: scale(1.08);
}

.attraction-showcase-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(7, 11, 20, 0.96) 0%, rgba(7, 11, 20, 0.60) 48%, rgba(7, 11, 20, 0.10) 100%);
}

.attraction-showcase-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 5px;
    background: var(--gold);
    transform: scaleX(0.22);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.attraction-showcase-card:hover::after,
.attraction-showcase-card:focus-within::after {
    transform: scaleX(1);
}

.attraction-showcase-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 30px;
    color: #fff;
}

.attraction-showcase-featured .attraction-showcase-content {
    padding: 38px;
}

.attraction-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.attraction-showcase-content h3 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 27px;
    line-height: 1.24;
}

.attraction-showcase-featured .attraction-showcase-content h3 {
    font-size: 35px;
}

.attraction-showcase-content p {
    max-width: 720px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 14.5px;
    line-height: 1.65;
}

.attraction-showcase-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}

.attraction-showcase-content a:hover,
.attraction-showcase-content a:focus-visible {
    color: #fff;
    transform: translateX(4px);
}

/* ==========================
   VISIT TYPES
========================== */

.visit-types-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #f8f8f8;
}

.visit-types-section::after {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(247, 198, 91, 0.12);
}

.visit-types-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 65px;
    align-items: center;
}

.visit-types-content h2 {
    margin: 14px 0 18px;
    color: var(--navy);
    font-size: clamp(35px, 4vw, 48px);
    line-height: 1.1;
}

.visit-types-content p {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.82;
}

.visit-types-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 14px 26px;
    border-radius: 50px;
    background: var(--navy);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    transition: var(--transition);
}

.visit-types-link:hover,
.visit-types-link:focus-visible {
    background: var(--primary);
    transform: translateY(-3px);
}

.visit-types-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.visit-type-card {
    min-height: 245px;
    padding: 29px 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.065);
    transition: var(--transition);
}

.visit-type-card:hover,
.visit-type-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.12);
}

.visit-type-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 18px;
    background: var(--gold);
    color: #111;
    font-size: 23px;
    transition: var(--transition);
}

.visit-type-card:hover .visit-type-icon {
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    transform: rotate(8deg);
}

.visit-type-card h3 {
    margin-bottom: 9px;
    color: var(--navy);
    font-size: 20px;
    line-height: 1.35;
}

.visit-type-card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
    .attractions-page-intro {
        padding: 76px 0 70px;
    }

    .attractions-watermark {
        top: -35px;
        font-size: clamp(68px, 13vw, 110px);
    }

    .attractions-showcase-section,
    .visit-types-section {
        padding: 80px 0;
    }

    .attractions-showcase-grid {
        grid-auto-rows: 330px;
    }

    .attraction-showcase-featured {
        grid-column: span 2;
        grid-row: auto;
    }

    .visit-types-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 767px) {
    .attractions-page-intro {
        padding: 64px 0 60px;
    }

    .attractions-page-intro::before {
        right: -235px;
    }

    .attractions-page-intro::after {
        left: -205px;
    }

    .attractions-watermark {
        top: -22px;
        font-size: clamp(53px, 17vw, 78px);
        letter-spacing: 1px;
    }

    .attractions-page-intro .section-kicker {
        font-size: 15px;
    }

    .attractions-intro-content h2 {
        margin-top: 20px;
        font-size: clamp(30px, 8vw, 40px);
    }

    .attractions-intro-copy p {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .attractions-showcase-section,
    .visit-types-section {
        padding: 65px 0;
    }

    .attractions-showcase-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 400px;
        gap: 20px;
    }

    .attraction-showcase-featured {
        grid-column: auto;
    }

    .attraction-showcase-content,
    .attraction-showcase-featured .attraction-showcase-content {
        padding: 25px 22px;
    }

    .attraction-showcase-content h3,
    .attraction-showcase-featured .attraction-showcase-content h3 {
        font-size: 25px;
    }

    .visit-types-grid {
        grid-template-columns: 1fr;
    }

    .visit-type-card {
        min-height: auto;
    }

    .visit-types-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .attractions-showcase-grid {
        grid-auto-rows: 430px;
    }

    .attraction-showcase-content p {
        font-size: 14px;
    }

    .attraction-category {
        font-size: 10px;
    }

    .visit-types-content h2 {
        font-size: 30px;
    }
}

/* =====================================
   LOCATION INTRO SECTION
===================================== */

.location-page{
    position:relative;
    overflow:hidden;
    background:#fffcfc;
    padding-bottom:50px;
}

.location-page::before{
    content:"";
    position:absolute;
    top:80px;
    right:-140px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(247,198,91,.17);
    z-index:0;
}

.location-page::after{
    content:"";
    position:absolute;
    bottom:60px;
    left:-120px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(200,16,46,.08);
    z-index:0;
}

.location-page .container{
    position:relative;
    z-index:1;
}

.location-page .section-title{
    max-width:1190px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
    position:relative;
}

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

.location-page .section-title span{
    position:relative;
    z-index:2;
    color:#c8102e;
    font-weight:600;
    letter-spacing:2px;
    line-height:3;
    text-transform:uppercase;
}

.location-page .section-title h2{
    position:relative;
    z-index:2;
    font-size:45px;
    color:#111;
    margin-top:10px;
    line-height:1.2;
    text-transform:uppercase;
}

.location-intro{
    position:relative;
    z-index:2;
    margin-top:15px;
    color:#555;
    line-height:1.8;
    text-align:center;
    font-size:17px;
}

.location-intro strong{
    color:#333;
    font-weight:700;
}


/* TABLET */

@media(max-width:991px){

.location-page{
    padding-bottom:60px;
}

.location-page::before{
    right:-190px;
    width:280px;
    height:280px;
}

.location-page::after{
    left:-170px;
    width:230px;
    height:230px;
}

.location-page .section-title::before{
    top:-55px;
    font-size:90px;
}

.location-page .section-title h2{
    font-size:36px;
}

.location-intro{
    font-size:16px;
    line-height:1.75;
}

}


/* MOBILE */

@media(max-width:767px){

.location-page{
    padding-bottom:50px;
}

.location-page .container{
    width:calc(100% - 32px);
}

.location-page::before{
    top:100px;
    right:-220px;
    width:260px;
    height:260px;
}

.location-page::after{
    bottom:40px;
    left:-200px;
    width:220px;
    height:220px;
}

.location-page .section-title::before{
    top:-35px;
    font-size:55px;
    letter-spacing:1px;
}

.location-page .section-title span{
    font-size:15px;
    letter-spacing:1.5px;
}

.location-page .section-title h2{
    margin-top:15px;
    font-size:30px;
    line-height:1.15;
}

.location-intro{
    margin-top:18px;
    font-size:15.5px;
    line-height:1.75;
}

}


/* SMALL MOBILE */

@media(max-width:480px){

.location-page{
    padding-bottom:45px;
}

.location-page .container{
    width:calc(100% - 26px);
}

.location-page .section-title::before{
    top:-25px;
    font-size:42px;
}

.location-page .section-title span{
    font-size:14px;
}

.location-page .section-title h2{
    font-size:27px;
}

.location-intro{
    font-size:15px;
    line-height:1.7;
}

}

/* =====================================
   LOCATION MAP SECTION
===================================== */

.location-map-section{
    padding:90px 0;
    background:#f8f8f8;
}

.location-map-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:stretch;
}


.location-info-card{
    position:relative;
    overflow:hidden;
    padding:50px 45px;
    border-radius:28px;
    background:#dc1f2d;
    color:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}


.location-info-card::after{
    content:"";
    position:absolute;
    right:-100px;
    bottom:-100px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}


.location-badge{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    background:rgba(255,255,255,.18);
    color:#fff;
    font-size:14px;
    font-weight:700;
}


.location-info-card h2{
    margin:25px 0 18px;
    font-size:38px;
    line-height:1.2;
    color:#fff;
}


.location-info-card>p{
    color:rgba(255,255,255,.9);
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
}


.location-detail-list{
    margin-top:30px;
}


.location-detail-item{
    position:relative;
    z-index:2;
    display:flex;
    gap:18px;
    padding:22px 0;
    border-top:1px solid rgba(255,255,255,.25);
}


.location-detail-icon{
    flex:0 0 62px;
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    background:#fff;
    color:#0068b7;
    font-size:24px;
}


.location-detail-item h4{
    margin-bottom:5px;
    color:#fff;
    font-size:20px;
}


.location-detail-item p{
    color:rgba(255,255,255,.9);
    font-size:16px;
    line-height:1.6;
}



.location-map-card{
    padding:35px;
    border-radius:28px;
    background:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}


.location-map-card h3{
    margin-bottom:25px;
    color:#1d2939;
    font-size:34px;
}


.location-google-map{
    height:520px;
    overflow:hidden;
    border-radius:20px;
}


.location-google-map iframe{
    width:100%;
    height:100%;
    border:0;
}


.location-direction-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:25px;
    padding:15px 30px;
    border-radius:50px;
    background:#0068b7;
    color:#fff;
    font-weight:700;
    transition:.3s ease;
}


.location-direction-btn:hover{
    background:#111;
    transform:translateY(-3px);
}

/* =====================================
   LOCATION SEARCH SECTION
===================================== */

.location-search-section{
    padding:80px 0;
    background:#fff;
}

.location-search-box{
    max-width:1500px;
    margin:auto;
    padding:70px 80px;
    border-radius:35px;
    background:#faf9f5;
    box-shadow:0 20px 45px rgba(0,0,0,.05);
    text-align:center;
}


.location-search-heading span{
    display:inline-flex;
    align-items:center;
    gap:18px;
    color:#005baa;
    font-family:'Montserrat',sans-serif;
    font-size:14px;
    font-weight:800;
    letter-spacing:5px;
    text-transform:uppercase;
}


.location-search-heading span::before,
.location-search-heading span::after{
    content:"";
    width:45px;
    height:2px;
    background:#f7c65b;
}


.location-search-heading h2{
    margin:35px 0 20px;
    color:#132b46;
    font-size:48px;
    line-height:1.2;
    font-weight:700;
}


.location-search-heading p{
    margin-bottom:45px;
    color:#536477;
    font-size:17px;
    line-height:1.7;
}



.location-search-form{
    max-width:850px;
    margin:auto;
    display:flex;
    gap:20px;
    align-items:center;
}


.location-search-form input{
    flex:1;
    height:64px;
    padding:0 30px;
    border:1px solid #d7e0e8;
    border-radius:40px;
    background:#fff;
    color:#555;
    font-size:16px;
    outline:none;
}


.location-search-form input::placeholder{
    color:#7b8794;
}


.location-search-form button{
    height:64px;
    padding:0 55px;
    border:0;
    border-radius:40px;
    background:#005baa;
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s ease;
}


.location-search-form button:hover{
    background:#111;
    transform:translateY(-3px);
}



/* TABLET */

@media(max-width:991px){

.location-search-box{
    padding:55px 40px;
}


.location-search-heading h2{
    font-size:38px;
}


.location-search-form{
    max-width:100%;
}

}



/* MOBILE */

@media(max-width:767px){

.location-search-section{
    padding:60px 0;
}


.location-search-box{
    padding:45px 20px;
    border-radius:25px;
}


.location-search-heading span{
    font-size:12px;
    letter-spacing:3px;
}


.location-search-heading span::before,
.location-search-heading span::after{
    width:25px;
}


.location-search-heading h2{
    margin:25px 0 15px;
    font-size:30px;
}


.location-search-heading p{
    font-size:15px;
    margin-bottom:30px;
}


.location-search-form{
    flex-direction:column;
}


.location-search-form input,
.location-search-form button{
    width:100%;
}


.location-search-form button{
    height:58px;
}

}


/* =====================================
   LOCATION MAP SECTION
===================================== */

.location-map-section{
    padding:90px 0;
    background:#f8f8f8;
}

.location-map-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:stretch;
}


.location-info-card{
    position:relative;
    overflow:hidden;
    padding:50px 45px;
    border-radius:28px;
    background:#b23031;
    color:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}


.location-info-card::after{
    content:"";
    position:absolute;
    right:-100px;
    bottom:-100px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}


.location-badge{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    background:rgba(255,255,255,.18);
    color:#fff;
    font-size:14px;
    font-weight:700;
}


.location-info-card h2{
    margin:25px 0 18px;
    font-size:38px;
    line-height:1.2;
    color:#fff;
}


.location-info-card>p{
    color:rgba(255,255,255,.9);
    font-size:17px;
    line-height:1.8;
    margin-bottom:30px;
}


.location-detail-list{
    margin-top:30px;
}


.location-detail-item{
    position:relative;
    z-index:2;
    display:flex;
    gap:18px;
    padding:22px 0;
    border-top:1px solid rgba(255,255,255,.25);
}


.location-detail-icon{
    flex:0 0 62px;
    width:62px;
    height:62px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:15px;
    background:#fff;
    color:#f6a932;
    font-size:24px;
}


.location-detail-item h4{
    margin-bottom:5px;
    color:#fff;
    font-size:20px;
}


.location-detail-item p{
    color:rgba(255,255,255,.9);
    font-size:16px;
    line-height:1.6;
}



.location-map-card{
    padding:35px;
    border-radius:28px;
    background:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}


.location-map-card h3{
    margin-bottom:25px;
    color:#1d2939;
    font-size:34px;
}


.location-google-map{
    height:520px;
    overflow:hidden;
    border-radius:20px;
}


.location-google-map iframe{
    width:100%;
    height:100%;
    border:0;
}


.location-direction-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:25px;
    padding:15px 30px;
    border-radius:50px;
    background:#0068b7;
    color:#fff;
    font-weight:700;
    transition:.3s ease;
}


.location-direction-btn:hover{
    background:#111;
    transform:translateY(-3px);
}



/* TABLET */

@media(max-width:991px){

.location-map-layout{
    grid-template-columns:1fr;
}


.location-info-card{
    padding:40px 30px;
}


.location-info-card h2{
    font-size:32px;
}


.location-google-map{
    height:450px;
}

}



/* MOBILE */

@media(max-width:767px){

.location-map-section{
    padding:65px 0;
}


.location-info-card{
    padding:35px 22px;
    border-radius:20px;
}


.location-info-card h2{
    font-size:28px;
}


.location-info-card>p{
    font-size:15px;
}


.location-detail-item{
    gap:14px;
}


.location-detail-icon{
    width:52px;
    height:52px;
    flex-basis:52px;
    font-size:20px;
}


.location-detail-item h4{
    font-size:18px;
}


.location-detail-item p{
    font-size:14px;
}


.location-map-card{
    padding:22px;
    border-radius:20px;
}


.location-map-card h3{
    font-size:28px;
}


.location-google-map{
    height:350px;
}


.location-direction-btn{
    width:100%;
    justify-content:center;
}

}


/* TABLET */

@media(max-width:991px){

.location-map-layout{
    grid-template-columns:1fr;
}


.location-info-card{
    padding:40px 30px;
}


.location-info-card h2{
    font-size:32px;
}


.location-google-map{
    height:450px;
}

}



/* MOBILE */

@media(max-width:767px){

.location-map-section{
    padding:65px 0;
}


.location-info-card{
    padding:35px 22px;
    border-radius:20px;
}


.location-info-card h2{
    font-size:28px;
}


.location-info-card>p{
    font-size:15px;
}


.location-detail-item{
    gap:14px;
}


.location-detail-icon{
    width:52px;
    height:52px;
    flex-basis:52px;
    font-size:20px;
}


.location-detail-item h4{
    font-size:18px;
}


.location-detail-item p{
    font-size:14px;
}


.location-map-card{
    padding:22px;
    border-radius:20px;
}


.location-map-card h3{
    font-size:28px;
}


.location-google-map{
    height:350px;
}


.location-direction-btn{
    width:100%;
    justify-content:center;
}

}

.contact-page{
    position:relative;
    overflow:hidden;
    background:#fffcfc;
    padding-bottom:50px;
}

.contact-page::before{
    content:"";
    position:absolute;
    top:80px;
    right:-140px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(247,198,91,.17);
    z-index:0;
}

.contact-page::after{
    content:"";
    position:absolute;
    bottom:60px;
    left:-120px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(200,16,46,.08);
    z-index:0;
}

.contact-page .container{
    position:relative;
    z-index:1;
}

.contact-page .section-title{
    max-width:1190px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

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

.contact-page .section-title span{
    color:#c8102e;
    font-weight:600;
    letter-spacing:2px;
    line-height:3;
}

.contact-page .section-title h2{
    font-size:45px;
    color:#111;
    margin-top:10px;
    line-height:1.2;
    text-transform:uppercase;
}

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

.contact-intro strong{
    color:#333;
    font-weight:700;
}

@media(max-width:991px){

.contact-page .section-title::before{
    top:-55px;
    font-size:90px;
}

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

.contact-intro{
    font-size:16px;
}

}

@media(max-width:767px){

.contact-page{
    padding-bottom:50px;
}

.contact-page .container{
    width:calc(100% - 32px);
}

.contact-page .section-title::before{
    top:-35px;
    font-size:55px;
}

.contact-page .section-title span{
    font-size:15px;
}

.contact-page .section-title h2{
    font-size:30px;
}

.contact-intro{
    font-size:15.5px;
    line-height:1.75;
}

}

@media(max-width:480px){

.contact-page .section-title::before{
    top:-25px;
    font-size:42px;
}

.contact-page .section-title h2{
    font-size:27px;
}

.contact-intro{
    font-size:15px;
}

}

/* =====================================
   LOCATION ADDRESS SECTION
===================================== */

.location-address-section{
    padding:46px 0;
    background:#fff;
}

.location-address-layout{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:35px;
    align-items:stretch;
}


.location-map-box{
    height:610px;
    overflow:hidden;
    border-radius:35px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}


.location-map-box iframe{
    width:100%;
    height:100%;
    border:0;
}



.location-address-card{
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px 45px;
    border-radius:35px;
    background:#07548f;
    color:#fff;
}


.location-address-card::after{
    content:"";
    position:absolute;
    right:-100px;
    bottom:-100px;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
}


.location-address-card span{
    position:relative;
    z-index:2;
    color:#69b8e8;
    font-family:'Montserrat',sans-serif;
    font-size:14px;
    font-weight:800;
    letter-spacing:5px;
}


.location-address-card h2{
    position:relative;
    z-index:2;
    margin:40px 0 35px;
    color:#fff;
    font-size:55px;
    line-height:1.15;
}


.location-address-card p{
    position:relative;
    z-index:2;
    color:#fff;
    font-size:18px;
    line-height:2;
    margin-bottom:45px;
}


.location-address-btn{
    position:relative;
    z-index:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    padding:18px 38px;
    border-radius:50px;
    background:#f7b91c;
    color:#111;
    font-weight:800;
    font-size:16px;
    transition:.3s ease;
}


.location-address-btn:hover{
    background:#fff;
    transform:translateY(-3px);
}



/* TABLET */

@media(max-width:991px){

.location-address-layout{
    grid-template-columns:1fr;
}


.location-map-box{
    height:450px;
}


.location-address-card{
    min-height:500px;
}


.location-address-card h2{
    font-size:45px;
}

}



/* MOBILE */

@media(max-width:767px){

.location-address-section{
    padding:65px 0;
}


.location-map-box{
    height:350px;
    border-radius:25px;
}


.location-address-card{
    padding:45px 30px;
    border-radius:25px;
}


.location-address-card span{
    font-size:12px;
    letter-spacing:3px;
}


.location-address-card h2{
    margin:25px 0;
    font-size:34px;
}


.location-address-card p{
    font-size:16px;
    line-height:1.8;
}


.location-address-btn{
    width:100%;
}

}

/* =====================================
   CONTACT DETAILS CARDS
===================================== */

.contact-details-section{
    padding:80px 0;
    background:#fff;
}

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

.contact-detail-card{
    padding:45px 35px;
    border-radius:28px;
    background:#fff;
    text-align:center;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.35s ease;
}

.contact-detail-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.14);
}

.contact-detail-icon{
    width:90px;
    height:90px;
    margin:0 auto 30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--gold);
    color:#fff;
    font-size:32px;
}

.contact-detail-card h3{
    margin-bottom:20px;
    color:#07548f;
    font-size:28px;
    line-height:1.3;
}

.contact-detail-card p{
    min-height:90px;
    margin-bottom:25px;
    color:#536477;
    font-size:17px;
    line-height:1.8;
}

.contact-detail-card a{
    color:#c58b00;
    font-weight:800;
    font-size:16px;
    transition:.3s ease;
}

.contact-detail-card a:hover{
    color:#07548f;
}


/* TABLET */

@media(max-width:991px){

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

}


/* MOBILE */

@media(max-width:767px){

.contact-details-section{
    padding:60px 0;
}

.contact-details-grid{
    grid-template-columns:1fr;
}

.contact-detail-card{
    padding:35px 25px;
}

.contact-detail-icon{
    width:75px;
    height:75px;
    font-size:26px;
}

.contact-detail-card h3{
    font-size:24px;
}

.contact-detail-card p{
    min-height:auto;
    font-size:15px;
}

}

/* =====================================
   SITEMAP PAGE
===================================== */

.sitemap-page{
    position:relative;
    overflow:hidden;
    background:#fffcfc;
    padding-bottom:50px;
}

.sitemap-page::before{
    content:"";
    position:absolute;
    top:80px;
    right:-140px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(247,198,91,.17);
    z-index:0;
}

.sitemap-page::after{
    content:"";
    position:absolute;
    bottom:60px;
    left:-120px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(200,16,46,.08);
    z-index:0;
}

.sitemap-page .container{
    position:relative;
    z-index:1;
}

.sitemap-page .section-title{
    max-width:1190px;
    margin:auto;
    text-align:center;
    position:relative;
}

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

.sitemap-page .section-title span{
    position:relative;
    z-index:2;
    color:#c8102e;
    font-weight:600;
    letter-spacing:2px;
    line-height:3;
    text-transform:uppercase;
}

.sitemap-page .section-title h2{
    position:relative;
    z-index:2;
    font-size:45px;
    color:#111;
    margin-top:10px;
    line-height:1.2;
    text-transform:uppercase;
}

.sitemap-intro{
    position:relative;
    z-index:2;
    margin-top:15px;
    color:#555;
    font-size:17px;
    line-height:1.8;
    text-align:center;
}


/* =====================================
   SITEMAP LINKS CARDS
===================================== */

.sitemap-links-section{
    padding:80px 0;
    background:#fff;
}

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

.sitemap-link-card{
    position:relative;
    overflow:hidden;
    padding:40px 30px;
    border-radius:25px;
    background:#fff;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.35s ease;
}

.sitemap-link-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#c8102e;
    transform:scaleX(.25);
    transition:.35s ease;
}

.sitemap-link-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.14);
}

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

.sitemap-icon{
    width:75px;
    height:75px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#07548f;
    color:#fff;
    font-size:30px;
    transition:.35s ease;
}

.sitemap-link-card:hover .sitemap-icon{
    background:#c8102e;
    transform:rotateY(360deg);
}

.sitemap-link-card h3{
    margin-bottom:15px;
    color:#1d2939;
    font-size:24px;
    line-height:1.3;
}

.sitemap-link-card p{
    min-height:75px;
    margin-bottom:20px;
    color:#666;
    font-size:15px;
    line-height:1.7;
}

.sitemap-link-card a{
    color:#c58b00;
    font-weight:800;
    transition:.3s ease;
}

.sitemap-link-card a:hover{
    color:#07548f;
}


/* =====================================
   TABLET
===================================== */

@media(max-width:991px){

.sitemap-page .section-title::before{
    top:-55px;
    font-size:90px;
}

.sitemap-page .section-title h2{
    font-size:36px;
}

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

.sitemap-intro{
    font-size:16px;
}

}


/* =====================================
   MOBILE
===================================== */

@media(max-width:767px){

.sitemap-page{
    padding-bottom:50px;
}

.sitemap-page .container{
    width:calc(100% - 32px);
}

.sitemap-page::before{
    right:-220px;
    width:260px;
    height:260px;
}

.sitemap-page::after{
    left:-200px;
    width:220px;
    height:220px;
}

.sitemap-page .section-title::before{
    top:-35px;
    font-size:55px;
}

.sitemap-page .section-title span{
    font-size:15px;
}

.sitemap-page .section-title h2{
    font-size:30px;
}

.sitemap-intro{
    font-size:15.5px;
    line-height:1.75;
}

.sitemap-links-section{
    padding:60px 0;
}

.sitemap-links-grid{
    grid-template-columns:1fr;
}

.sitemap-link-card{
    padding:35px 25px;
}

.sitemap-link-card h3{
    font-size:22px;
}

}


/* =====================================
   SMALL MOBILE
===================================== */

@media(max-width:480px){

.sitemap-page .section-title::before{
    top:-25px;
    font-size:42px;
}

.sitemap-page .section-title h2{
    font-size:27px;
}

.sitemap-intro{
    font-size:15px;
}

.sitemap-icon{
    width:65px;
    height:65px;
    font-size:25px;
}

}

/* =====================================
   FAQ PAGE INTRO
===================================== */

.faq-page{
    position:relative;
    overflow:hidden;
    background:#fffcfc;
    padding-bottom:50px;
}

.faq-page::before{
    content:"";
    position:absolute;
    top:80px;
    right:-140px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(247,198,91,.17);
    z-index:0;
}

.faq-page::after{
    content:"";
    position:absolute;
    bottom:60px;
    left:-120px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(200,16,46,.08);
    z-index:0;
}

.faq-page .container{
    position:relative;
    z-index:1;
}

.faq-page .section-title{
    max-width:1190px;
    margin:auto;
    text-align:center;
    position:relative;
}

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

.faq-page .section-title span{
    position:relative;
    z-index:2;
    color:#c8102e;
    font-weight:600;
    letter-spacing:2px;
    line-height:3;
    text-transform:uppercase;
}

.faq-page .section-title h2{
    position:relative;
    z-index:2;
    font-size:45px;
    color:#111;
    margin-top:10px;
    line-height:1.2;
    text-transform:uppercase;
}

.faq-intro{
    position:relative;
    z-index:2;
    margin-top:15px;
    color:#555;
    font-size:17px;
    line-height:1.8;
    text-align:center;
}


/* =====================================
   FAQ ACCORDION SECTION
===================================== */

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

.faq-wrapper{
    max-width:1000px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 12px 35px rgba(0,0,0,.07);
    transition:.35s ease;
}

.faq-item:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.faq-question{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:24px 30px;
    border:0;
    background:#fff;
    color:#1d2939;
    font-family:'Lora',serif;
    font-size:20px;
    font-weight:700;
    text-align:left;
    cursor:pointer;
}

.faq-question i{
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#07548f;
    color:#fff;
    font-size:14px;
    transition:.3s ease;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
    background:#c8102e;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 30px;
    opacity:0;
    transform:translateY(-8px);
    transition:max-height .45s ease, padding .45s ease, opacity .35s ease, transform .35s ease;
}

.faq-item.active .faq-answer{
    max-height:500px;
    padding:0 30px 25px;
    opacity:1;
    transform:translateY(0);
}

.faq-answer p{
    margin:0;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

.faq-answer p a {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.faq-answer p a:hover {
    margin: 0;
    color: #000;
    font-size: 16px;
    line-height: 1.8;
}


/* =====================================
   TABLET
===================================== */

@media(max-width:991px){

.faq-page .section-title::before{
    top:-55px;
    font-size:90px;
}

.faq-page .section-title h2{
    font-size:36px;
}

.faq-intro{
    font-size:16px;
}

.faq-section{
    padding:70px 0;
}

.faq-question{
    font-size:18px;
    padding:22px 25px;
}

}


/* =====================================
   MOBILE
===================================== */

@media(max-width:767px){

.faq-page{
    padding-bottom:50px;
}

.faq-page .container{
    width:calc(100% - 32px);
}

.faq-page::before{
    right:-220px;
    width:260px;
    height:260px;
}

.faq-page::after{
    left:-200px;
    width:220px;
    height:220px;
}

.faq-page .section-title::before{
    top:-35px;
    font-size:55px;
}

.faq-page .section-title span{
    font-size:15px;
}

.faq-page .section-title h2{
    font-size:30px;
}

.faq-intro{
    font-size:15.5px;
    line-height:1.75;
}

.faq-section{
    padding:60px 0;
}

.faq-question{
    padding:20px;
    font-size:16px;
}

.faq-question i{
    width:30px;
    height:30px;
    flex:0 0 30px;
}

.faq-answer{
    padding:0 20px 20px;
}

.faq-answer p{
    font-size:15px;
}

}


/* =====================================
   SMALL MOBILE
===================================== */

@media(max-width:480px){

.faq-page .section-title::before{
    top:-25px;
    font-size:42px;
}

.faq-page .section-title h2{
    font-size:27px;
}

.faq-intro{
    font-size:15px;
}

.faq-question{
    font-size:15px;
    padding:18px;
}

}

/* =====================================
   GALLERY PAGE SECTION
===================================== */

.gallery-page-section{
    padding:80px 0;
    background:#fff;
}

.gallery-page-section .section-title{
    max-width:1100px;
    margin:auto;
    text-align:center;
}

.gallery-page-section .section-title::before{
    content:'GALLERY';
    position:absolute;
    top:-80px;
    left:50%;
    transform:translateX(-50%);
    font-size:120px;
    font-weight:800;
    color:#000;
    opacity:.04;
    white-space:nowrap;
}

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


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

.gallery-tabs-section{
    padding:70px 0;
    background:#fbf6f6;
}

.gallery-tabs{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:45px;
}

.gallery-tab{
    padding:13px 32px;
    border:0;
    border-radius:50px;
    background:#fff;
    color:#1d2939;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s ease;
}

.gallery-tab:hover,
.gallery-tab.active{
    background:#c8102e;
    color:#fff;
    transform:translateY(-3px);
}


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

.gallery-grid-modern{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}


.gallery-item-modern{
    position:relative;
    display:block;
    height:320px;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}


.gallery-item-modern::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    opacity:0;
    transition:.4s ease;
}


.gallery-item-modern img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}


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


.gallery-item-modern:hover::after{
    opacity:1;
}


/* =====================================
   LIGHTBOX SUPPORT
===================================== */

.glightbox-clean .gslide-image img{
    border-radius:15px;
}


/* =====================================
   TABLET
===================================== */

@media(max-width:991px){

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


.gallery-item-modern{
    height:280px;
}


.gallery-page-section .section-title::before{
    font-size:90px;
}

}


/* =====================================
   MOBILE
===================================== */

@media(max-width:767px){

.gallery-page-section{
    padding:60px 0;
}


.gallery-tabs-section{
    padding:50px 0;
}


.gallery-tabs{
    gap:10px;
}


.gallery-tab{
    padding:11px 22px;
    font-size:14px;
}


.gallery-grid-modern{
    grid-template-columns:1fr;
}


.gallery-item-modern{
    height:250px;
}


.gallery-page-section .section-title::before{
    top:-35px;
    font-size:55px;
}


.gallery-intro{
    font-size:15.5px;
}

}

/* =====================================
   GLIGHTBOX PREMIUM CAPTION STYLE
===================================== */

.glightbox-container .gslide-description{
    background:transparent !important;
    padding:0 !important;
}

.glightbox-container .gslide-description.description-bottom{
    position:absolute;
    left:50%;
    bottom:30px;
    transform:translateX(-50%);
    width:calc(100% - 60px);
    max-width:700px;
}

.glightbox-container .gslide-title{
    margin:0;
    padding:18px 25px 8px;
    border-radius:20px 20px 0 0;
    background:rgba(15,23,42,.92);
    color:#fff;
    font-family:'Lora',serif;
    font-size:24px;
    font-weight:700;
    line-height:1.3;
    text-align:left;
    backdrop-filter:blur(12px);
}

.glightbox-container .gslide-desc{
    padding:0 25px 20px;
    border-radius:0 0 20px 20px;
    background:rgba(15,23,42,.92);
    color:rgba(255,255,255,.78);
    font-family:'Lora',serif;
    font-size:15px;
    line-height:1.6;
    text-align:left;
    backdrop-filter:blur(12px);
}


/* Close Button */

.glightbox-container .gclose{
    top:25px;
    right:25px;
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
}


/* Next Previous Buttons */

.glightbox-container .gnext,
.glightbox-container .gprev{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
}


.glightbox-container .gnext:hover,
.glightbox-container .gprev:hover,
.glightbox-container .gclose:hover{
    background:#c8102e;
}



/* Mobile */

@media(max-width:767px){

.glightbox-container .gslide-description.description-bottom{
    bottom:15px;
    width:calc(100% - 30px);
}

.glightbox-container .gslide-title{
    font-size:18px;
    padding:15px 18px 6px;
}

.glightbox-container .gslide-desc{
    padding:0 18px 15px;
    font-size:13px;
}

}

/* =====================================
   GLIGHTBOX CUSTOM CAPTION
===================================== */

.glightbox-container .gslide-description{
    background:transparent!important;
    padding:0!important;
}

.glightbox-container .gslide-title{
    width:100%;
    margin:0!important;
    padding:16px 22px 8px!important;
    background:rgba(15,23,42,.95)!important;
    color:#fff!important;
    font-family:'Lora',serif!important;
    font-size:22px!important;
    font-weight:700!important;
    line-height:1.4!important;
    border-radius:18px 18px 0 0!important;
}

.glightbox-container .gslide-desc{
    width:100%;
    padding:0 22px 18px!important;
    background:rgba(15,23,42,.95)!important;
    color:rgba(255,255,255,.8)!important;
    font-family:'Lora',serif!important;
    font-size:15px!important;
    line-height:1.6!important;
    border-radius:0 0 18px 18px!important;
}

.glightbox-container .gslide-description.description-bottom{
    width:calc(100% - 80px);
    max-width:700px;
    left:50%;
    bottom:35px;
    transform:translateX(-50%);
    position:absolute;
}


.glightbox-container .gslide-title::first-letter{
    color:#f7c65b;
}


/* Arrow Buttons */

.glightbox-container .gnext,
.glightbox-container .gprev{
    width:55px!important;
    height:55px!important;
    border-radius:50%!important;
    background:rgba(0,0,0,.55)!important;
}


.glightbox-container .gnext:hover,
.glightbox-container .gprev:hover{
    background:#c8102e!important;
}


/* Close Button */

.glightbox-container .gclose{
    width:45px!important;
    height:45px!important;
    border-radius:50%!important;
    background:rgba(0,0,0,.55)!important;
}


@media(max-width:767px){

.glightbox-container .gslide-description.description-bottom{
    width:calc(100% - 30px);
    bottom:15px;
}

.glightbox-container .gslide-title{
    font-size:18px!important;
}

.glightbox-container .gslide-desc{
    font-size:13px!important;
}

}