/* ============================================
   AMENITIES PAGE - TRADITIONAL MAROON THEME
   Dark maroon/brown theme with mandala art
   ============================================ */

/* Ensure text content is visible by default (GSAP will animate card-image and card-content) */
.amenity-card .card-title,
.amenity-card .card-title-tamil,
.amenity-card .card-description,
.amenity-card .card-description-tamil,
.amenity-card .card-features,
.feature-item,
.cta-section {
    visibility: visible !important;
}

/* Fallback: If JavaScript is disabled, show everything */
.no-js .amenity-card .card-image,
.no-js .amenity-card .card-content,
.no-js .amenity-card .card-icon {
    opacity: 1 !important;
    transform: none !important;
}

/* CSS Variables for Traditional Theme */
:root {
    --am-maroon: #4a1516;
    --am-dark-maroon: #2d0c0d;
    --am-brown: #3d2422;
    --am-deep: #1f0e0e;
    --am-cream: #f5e6d3;
    --am-gold: #c9973d;
    --am-gold-light: #d4a84b;
    --am-gold-dark: #a67c2e;
    --am-copper: #9e6644;
    --am-beige: #e8dcc8;
    --am-sand: #ddc9a5;
    --am-terracotta: #8b4532;
}

/* Body styling for amenities page */
body.amenities-page {
    background: linear-gradient(180deg, 
        var(--am-cream) 0%, 
        var(--am-beige) 50%,
        var(--am-cream) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Side Decorations - amen-side.png */
/* Right side - original image */
body.amenities-page::after {
    content: '';
    position: fixed;
    top: 0;
    right: -50px;
    width: 200px;
    height: 100vh;
    background: url('img/amen-side.png') right top repeat-y;
    background-size: 200px auto;
    opacity: 0.9;
    pointer-events: none;
    z-index: 50;
}

/* Left side - mirrored image */
body.amenities-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 150px;
    height: 100vh;
    background: url('img/amen-side.png') left top repeat-y;
    background-size: 200px auto;
    opacity: 0.9;
    pointer-events: none;
    z-index: 50;
    transform: scaleX(-1);
}

/* Background mandalas hidden */
.mandala-rotate-1,
.mandala-rotate-2,
.mandala-rotate-3 {
    display: none;
}

/* Background animations removed */

@keyframes rotateMandala1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateMandala2 {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateMandala3 {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Overlay removed to show mandala background clearly */

/* ============================================
   NAVBAR SECTION FOR AMENITIES PAGE
   ============================================ */
.amenities-navbar {
    position: relative;
    z-index: 200;
    background: linear-gradient(180deg, 
        rgba(74, 21, 22, 0.98) 0%, 
        rgba(45, 12, 13, 0.98) 100%);
    box-shadow: 0 4px 30px rgba(45, 12, 13, 0.4);
    padding: 10px 0;
}

.amenities-navbar::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--am-gold) 0px,
        var(--am-gold) 5px,
        transparent 5px,
        transparent 15px,
        var(--am-maroon) 15px,
        var(--am-maroon) 20px,
        transparent 20px,
        transparent 30px
    );
    opacity: 0.7;
}

.amenities-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.amenities-navbar .logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.amenities-navbar .logo img:hover {
    transform: scale(1.05);
}

.amenities-navbar .nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.amenities-navbar .nav-menu li a {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--am-cream);
    text-decoration: none;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.amenities-navbar .nav-menu li a:hover {
    color: var(--am-gold);
    background: rgba(201, 151, 61, 0.15);
}

.amenities-navbar .nav-menu li a.active {
    color: var(--am-gold);
    background: rgba(201, 151, 61, 0.2);
    border-bottom: 2px solid var(--am-gold);
}

/* Mobile Menu Toggle */
.amenities-navbar .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.amenities-navbar .menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--am-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   HEADER WITH NAVIGATION
   ============================================ */
.amenities-header {
    position: relative;
    z-index: 200;
    background: linear-gradient(180deg, 
        rgba(74, 21, 22, 0.98) 0%, 
        rgba(45, 12, 13, 0.98) 100%);
    box-shadow: 0 4px 30px rgba(45, 12, 13, 0.4);
}

.amenities-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--am-gold) 0px,
        var(--am-gold) 5px,
        transparent 5px,
        transparent 15px,
        var(--am-maroon) 15px,
        var(--am-maroon) 20px,
        transparent 20px,
        transparent 30px
    );
    opacity: 0.7;
}

.amenities-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
}

.nav-logo a {
    display: block;
}

.nav-logo img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.amenities-header .nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.amenities-header .nav-menu li a {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--am-cream);
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.5px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
}

.amenities-header .nav-menu li a span {
    font-weight: 600;
    color: var(--am-gold);
}

.amenities-header .nav-menu li a:hover {
    color: var(--am-gold);
    background: rgba(201, 151, 61, 0.15);
}

.amenities-header .nav-menu li a:hover span {
    color: var(--am-cream);
}

.amenities-header .nav-menu li a.active {
    color: var(--am-gold);
    background: rgba(201, 151, 61, 0.2);
    border-bottom: 2px solid var(--am-gold);
}

/* ============================================
   DROPDOWN MENU - Avanti's World
   ============================================ */
.amenities-header .nav-dropdown {
    position: relative;
}

.amenities-header .nav-dropdown .dropdown-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.amenities-header .nav-dropdown .dropdown-arrow {
    margin-top: 4px;
    transition: transform 0.3s ease;
}

.amenities-header .nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.amenities-header .nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background: linear-gradient(180deg, 
        rgba(45, 12, 13, 0.98) 0%, 
        rgba(74, 21, 22, 0.98) 100%);
    border: 1px solid rgba(201, 151, 61, 0.3);
    border-radius: 12px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.amenities-header .nav-dropdown .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--am-gold), 
        transparent);
    border-radius: 2px;
}

.amenities-header .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.amenities-header .nav-dropdown .dropdown-menu li {
    margin: 0;
}

.amenities-header .nav-dropdown .dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--am-cream);
    text-decoration: none;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.amenities-header .nav-dropdown .dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--am-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.amenities-header .nav-dropdown .dropdown-menu li a:hover {
    background: rgba(201, 151, 61, 0.15);
    color: var(--am-gold);
    padding-left: 30px;
}

.amenities-header .nav-dropdown .dropdown-menu li a:hover::before {
    opacity: 1;
}

.amenities-header .nav-dropdown .dropdown-menu li:not(:last-child)::after {
    content: '';
    display: block;
    margin: 0 15px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(201, 151, 61, 0.2), 
        transparent);
}

.amenities-header .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.amenities-header .menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--am-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.amenities-header .menu-toggle:hover span {
    background: var(--am-cream);
}

/* Hamburger to X animation */
.amenities-header .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.amenities-header .menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.amenities-header .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Header Titles (for section intro) */
.header-titles {
    text-align: center;
}

.page-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--am-dark-maroon);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.page-title-tamil {
    font-family: 'Noto Serif Tamil', serif;
    font-size: 1rem;
    color: var(--am-maroon);
    margin-top: 5px;
    opacity: 0.9;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Mobile Responsive Navbar */
@media (max-width: 1024px) {
    .amenities-navbar .container {
        padding: 0 20px;
    }
    
    .amenities-navbar .nav-menu {
        gap: 20px;
    }
    
    .amenities-navbar .nav-menu li a {
        font-size: 0.75rem;
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .amenities-navbar .menu-toggle {
        display: flex;
    }
    
    .amenities-navbar .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, 
            rgba(74, 21, 22, 0.98) 0%, 
            rgba(45, 12, 13, 0.98) 100%);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 199;
    }
    
    .amenities-navbar .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .amenities-navbar .nav-menu li a {
        font-size: 0.9rem;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(201, 151, 61, 0.2);
    }
    
    .amenities-navbar .logo img {
        height: 50px;
    }
}

/* ============================================
   HERO BANNER
   ============================================ */
.amenities-hero {
    position: relative;
    z-index: 100;
    height: 300px;
    background: linear-gradient(135deg, 
        var(--am-dark-maroon) 0%, 
        var(--am-maroon) 50%,
        var(--am-brown) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.amenities-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: url('img/m-bg-1.png') center/contain no-repeat;
    opacity: 0.15;
    animation: rotateMandala3 60s linear infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, 
        transparent 0%, 
        rgba(31, 14, 14, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
}

.hero-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--am-gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subheading {
    font-family: 'Noto Serif Tamil', serif;
    font-size: 1.3rem;
    color: var(--am-cream);
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}


/* ============================================
   HERO BANNER
   ============================================ */
.amenities-hero {
    position: relative;
    z-index: 100;
    height: 300px;
    background: linear-gradient(135deg, 
        var(--am-dark-maroon) 0%, 
        var(--am-maroon) 50%,
        var(--am-brown) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.amenities-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: url('img/m-bg-1.png') center/contain no-repeat;
    opacity: 0.15;
    animation: rotateMandala3 60s linear infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, 
        transparent 0%, 
        rgba(31, 14, 14, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
}

.hero-heading {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--am-gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subheading {
    font-family: 'Noto Serif Tamil', serif;
    font-size: 1.3rem;
    color: var(--am-cream);
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-description {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.amenities-main {
    position: relative;
    z-index: 100;
    padding: 0;
    max-width: 100%;
    margin: 0 auto;
}

/* Section Intro */
.section-intro {
    text-align: center;
    padding: 60px 40px 50px;
}

.mandala-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.divider-line {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--am-gold) 50%, 
        transparent 100%);
}

.divider-mandala {
    width: 50px;
    height: 50px;
    background: url('img/m-bg-1.png') center/contain no-repeat;
    opacity: 0.6;
    animation: rotateMandala3 20s linear infinite;
}

.section-main-title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--am-dark-maroon);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-main-tamil {
    font-family: 'Noto Serif Tamil', serif;
    font-size: 1.2rem;
    color: var(--am-maroon);
    opacity: 0.85;
}

/* ============================================
   AMENITIES GRID - INDIVIDUAL FULL-WIDTH SECTIONS
   ============================================ */
.amenities-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 0;
    padding: 40px 20px;
}

/* ============================================
   AMENITY CARDS - ALTERNATING LAYOUT
   ============================================ */
.amenity-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 90px;
    min-height: 400px;
    max-height: 500px;
    position: relative;
    overflow: visible;
    background: transparent;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
    border-radius: 0;
    box-shadow: none;
    padding: 30px 60px;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
}

/* No card backgrounds - transparent */
.amenity-card:nth-child(odd),
.amenity-card:nth-child(even) {
    background: transparent;
}

/* Reverse layout for even cards - Image RIGHT, Content LEFT */
.amenity-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* Side decorations removed */
.amenity-card:nth-child(odd)::before,
.amenity-card:nth-child(even)::before {
    display: none;
}


/* Card border removed */

.amenity-card:hover {
    box-shadow: none;
}

/* Featured Card Style - Same diamond shape as other cards */
.amenity-card.featured {
    min-height: 400px;
    max-height: 500px;
    background: transparent;
}

/* Grand Marriage Hall - Diamond Shape like others */
.amenity-card.featured .card-image {
    width: 340px;
    height: 340px;
    min-width: 340px;
    transform: rotate(45deg);
    border-radius: 22px;
    box-shadow: 
        0 20px 50px rgba(74, 21, 22, 0.3),
        0 0 0 5px var(--am-gold),
        0 0 0 10px rgba(74, 21, 22, 0.15);
}

.amenity-card.featured .card-image img {
    width: 142%;
    height: 142%;
    transform: rotate(-45deg) scale(1);
    position: absolute;
    top: -21%;
    left: -21%;
}

.amenity-card.featured:hover .card-image {
    transform: rotate(45deg) scale(1.05);
}

.amenity-card.featured:hover .card-image img {
    transform: rotate(-45deg) scale(1.12);
}

.amenity-card.featured .card-overlay {
    transform: rotate(-45deg);
    width: 142%;
    height: 142%;
    top: -21%;
    left: -21%;
}

.amenity-card.featured .card-content {
    flex: 1;
}

.featured-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-dark));
    color: var(--am-dark-maroon);
    padding: 12px 25px;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 15;
    box-shadow: 0 8px 25px rgba(201, 151, 61, 0.4);
}

/* Move featured badge to right for even cards */
.amenity-card:nth-child(even) .featured-badge {
    left: auto;
    right: 25px;
}

/* Card Image - Diamond Shape */
.card-image {
    position: relative;
    width: 340px;
    height: 340px;
    min-width: 340px;
    flex-shrink: 0;
    overflow: hidden;
    z-index: 5;
    transform: rotate(45deg);
    border-radius: 22px;
    box-shadow: 
        0 20px 50px rgba(74, 21, 22, 0.3),
        0 0 0 5px var(--am-gold),
        0 0 0 10px rgba(74, 21, 22, 0.15);
    /* Only transition hover effects, not GSAP animations */
    transition: box-shadow 0.3s ease;
}

.card-image img {
    width: 142%;
    height: 142%;
    object-fit: cover;
    object-position: center;
    transform: rotate(-45deg) scale(1);
    position: absolute;
    top: -21%;
    left: -21%;
    /* Fast hover transition only */
    transition: transform 0.3s ease;
}

/* Zoom effect on hover */
.amenity-card:hover .card-image {
    transform: rotate(45deg) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(74, 21, 22, 0.4),
        0 0 0 5px var(--am-gold-light),
        0 0 0 10px rgba(201, 151, 61, 0.25);
}

.amenity-card:hover .card-image img {
    transform: rotate(-45deg) scale(1.12);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(74, 21, 22, 0.08) 0%, 
        rgba(45, 12, 13, 0.2) 100%);
    pointer-events: none;
    transition: background 0.3s ease;
    transform: rotate(-45deg);
    width: 142%;
    height: 142%;
    top: -21%;
    left: -21%;
}

.amenity-card:hover .card-overlay {
    background: linear-gradient(135deg, 
        rgba(74, 21, 22, 0.02) 0%, 
        rgba(201, 151, 61, 0.12) 100%);
}

/* Card Icon - positioned at bottom center of diamond */
.card-icon {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 0 3px var(--am-cream);
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-icon svg {
    width: 22px;
    height: 22px;
    color: var(--am-dark-maroon);
}

.amenity-card:hover .card-icon {
    transform: translateX(-50%) scale(1.15) rotate(10deg);
    box-shadow: 
        0 12px 35px rgba(201, 151, 61, 0.6),
        0 0 0 4px var(--am-cream);
}

/* Icon stays centered for all cards */
.amenity-card:nth-child(even) .card-icon {
    left: 50%;
    right: auto;
}

/* Featured card icon - bottom right */
.amenity-card.featured .card-icon {
    bottom: 15px;
    right: 15px;
    left: auto;
    transform: none;
}

.amenity-card.featured:hover .card-icon {
    transform: scale(1.15) rotate(10deg);
}

/* Card Content */
.card-content {
    flex: 1;
    padding: 35px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
    background: rgba(255, 255, 255, 0.6);
    border: 3px solid transparent;
    border-radius: 15px;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)),
        linear-gradient(135deg, 
            var(--am-gold) 0%, 
            var(--am-gold-light) 25%, 
            #fff5d4 50%, 
            var(--am-gold-light) 75%, 
            var(--am-gold) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 
        0 10px 30px rgba(74, 21, 22, 0.1),
        0 0 15px rgba(201, 151, 61, 0.3),
        0 0 30px rgba(201, 151, 61, 0.15),
        inset 0 0 20px rgba(201, 151, 61, 0.05);
    animation: shimmerBorder 3s ease-in-out infinite;
}

@keyframes shimmerBorder {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(74, 21, 22, 0.1),
            0 0 15px rgba(201, 151, 61, 0.3),
            0 0 30px rgba(201, 151, 61, 0.15),
            inset 0 0 20px rgba(201, 151, 61, 0.05);
    }
    50% {
        box-shadow: 
            0 10px 30px rgba(74, 21, 22, 0.1),
            0 0 25px rgba(201, 151, 61, 0.5),
            0 0 50px rgba(201, 151, 61, 0.25),
            inset 0 0 30px rgba(201, 151, 61, 0.1);
    }
}

/* Decorative vertical line - LEFT for odd cards */
.amenity-card:nth-child(odd) .card-content::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 0;
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, 
        transparent 0%,
        var(--am-gold) 20%,
        var(--am-maroon) 50%,
        var(--am-gold) 80%,
        transparent 100%);
    border-radius: 2px;
}

/* Decorative vertical line - RIGHT for even cards */
.amenity-card:nth-child(even) .card-content::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    left: auto;
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, 
        transparent 0%,
        var(--am-gold) 20%,
        var(--am-maroon) 50%,
        var(--am-gold) 80%,
        transparent 100%);
    border-radius: 2px;
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--am-dark-maroon);
    margin-bottom: 8px;
    letter-spacing: 1px;
    transform: translateX(0);
    transition: all 0.4s ease;
    position: relative;
}

/* Title underline animation */
.card-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--am-gold), var(--am-maroon));
    transition: width 0.5s ease;
}

.amenity-card:hover .card-title::after {
    width: 100%;
}

.amenity-card:hover .card-title {
    color: var(--am-maroon);
    transform: translateX(5px);
}

.card-title-tamil {
    font-family: 'Noto Serif Tamil', serif;
    font-size: 1rem;
    color: var(--am-maroon);
    margin-bottom: 15px;
    opacity: 0.85;
    transform: translateX(0);
    transition: all 0.4s ease 0.1s;
}

.amenity-card:hover .card-title-tamil {
    transform: translateX(5px);
    opacity: 1;
}

.card-description {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--am-brown);
    line-height: 1.7;
    margin-bottom: 10px;
    transform: translateY(0);
    transition: all 0.4s ease 0.15s;
}

.amenity-card:hover .card-description {
    transform: translateY(-3px);
}

.card-description-tamil {
    font-family: 'Noto Serif Tamil', serif;
    font-size: 0.9rem;
    color: var(--am-maroon);
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.85;
    font-style: italic;
    padding-left: 15px;
    border-left: 3px solid var(--am-gold);
    transform: translateY(0);
    transition: all 0.4s ease 0.2s;
}

.amenity-card:hover .card-description-tamil {
    transform: translateY(-3px);
    opacity: 1;
    border-left-color: var(--am-gold-light);
}

/* For even cards, border on right side */
.amenity-card:nth-child(even) .card-description-tamil {
    padding-left: 0;
    padding-right: 15px;
    border-left: none;
    border-right: 3px solid var(--am-gold);
    text-align: right;
}

/* Feature Tags */
.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.feature-tag {
    padding: 8px 16px;
    background: linear-gradient(135deg, 
        rgba(74, 21, 22, 0.1) 0%, 
        rgba(74, 21, 22, 0.05) 100%);
    border: 1px solid rgba(74, 21, 22, 0.2);
    border-radius: 25px;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--am-maroon);
    transition: all 0.3s ease;
    transform: translateY(0) scale(1);
}

/* Staggered animation on card hover */
.amenity-card:hover .feature-tag:nth-child(1) {
    animation: tagPop 0.4s ease forwards;
    animation-delay: 0s;
}
.amenity-card:hover .feature-tag:nth-child(2) {
    animation: tagPop 0.4s ease forwards;
    animation-delay: 0.1s;
}
.amenity-card:hover .feature-tag:nth-child(3) {
    animation: tagPop 0.4s ease forwards;
    animation-delay: 0.2s;
}
.amenity-card:hover .feature-tag:nth-child(4) {
    animation: tagPop 0.4s ease forwards;
    animation-delay: 0.3s;
}

@keyframes tagPop {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.08); }
    100% { transform: translateY(-3px) scale(1.02); }
}

.feature-tag:hover {
    background: linear-gradient(135deg, var(--am-maroon), var(--am-dark-maroon));
    color: var(--am-cream);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(74, 21, 22, 0.35);
}

/* ============================================
   ADDITIONAL FEATURES SECTION
   ============================================ */
.additional-features {
    text-align: center;
    padding: 80px 40px;
    margin-top: 20px;
    background: linear-gradient(180deg, 
        var(--am-beige) 0%, 
        var(--am-cream) 100%);
    position: relative;
}

/* Side decorations removed */
.additional-features::before,
.additional-features::after {
    display: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(245, 230, 211, 0.9) 100%);
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 
        0 10px 30px rgba(74, 21, 22, 0.1),
        0 0 0 1px rgba(212, 168, 83, 0.2);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(74, 21, 22, 0.2),
        0 0 0 2px rgba(212, 168, 83, 0.4);
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon img {
    opacity: 1;
    transform: scale(1.1);
}

.feature-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--am-dark-maroon);
    margin-bottom: 8px;
}

.feature-item .tamil-text {
    font-family: 'Noto Serif Tamil', serif;
    font-size: 0.85rem;
    color: var(--am-maroon);
    opacity: 0.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, 
        var(--am-dark-maroon) 0%, 
        var(--am-maroon) 50%,
        var(--am-brown) 100%);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Side decorations removed */
.cta-section::before,
.cta-section::after {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--am-gold);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

.cta-content .tamil-text {
    font-family: 'Noto Serif Tamil', serif;
    font-size: 1.3rem;
    color: var(--am-cream);
    margin-bottom: 20px;
    opacity: 0.95;
}

.cta-content > p:last-of-type {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--am-gold), var(--am-gold-dark));
    color: var(--am-dark-maroon);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(201, 151, 61, 0.4);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(201, 151, 61, 0.5);
}

.cta-btn svg {
    transition: transform 0.3s ease;
}

.cta-btn:hover svg {
    transform: translateX(5px);
}

/* ============================================
   FOOTER
   ============================================ */
.amenities-footer {
    background: linear-gradient(180deg, 
        var(--am-dark-maroon) 0%, 
        #1a0a0a 100%);
    padding: 50px;
    text-align: center;
    position: relative;
    z-index: 200;
}

.amenities-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--am-gold) 50%,
        transparent 100%);
}

.footer-content p {
    font-family: 'Lato', sans-serif;
    color: var(--am-cream);
    opacity: 0.8;
    margin: 5px 0;
    font-size: 0.9rem;
}

/* ============================================
   WHATSAPP BUTTON OVERRIDE
   ============================================ */
body.amenities-page .whatsapp-float {
    z-index: 1000;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animations for cards */
.amenity-card:nth-child(1) { transition-delay: 0.1s; }
.amenity-card:nth-child(2) { transition-delay: 0.15s; }
.amenity-card:nth-child(3) { transition-delay: 0.2s; }
.amenity-card:nth-child(4) { transition-delay: 0.25s; }
.amenity-card:nth-child(5) { transition-delay: 0.3s; }
.amenity-card:nth-child(6) { transition-delay: 0.35s; }
.amenity-card:nth-child(7) { transition-delay: 0.4s; }
.amenity-card:nth-child(8) { transition-delay: 0.45s; }
.amenity-card:nth-child(9) { transition-delay: 0.5s; }
.amenity-card:nth-child(10) { transition-delay: 0.55s; }

.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.15s; }
.feature-item:nth-child(3) { transition-delay: 0.2s; }
.feature-item:nth-child(4) { transition-delay: 0.25s; }
.feature-item:nth-child(5) { transition-delay: 0.3s; }
.feature-item:nth-child(6) { transition-delay: 0.35s; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (max-width: 1400px) {
    .amenity-card {
        min-height: auto;
        max-height: none;
        padding: 25px;
    }
    
    .card-image {
        width: 300px;
        height: 300px;
        min-width: 300px;
    }
    
    .amenity-card.featured .card-image {
        width: 300px;
        height: 300px;
        min-width: 300px;
    }
    
    .card-content {
        padding: 25px 35px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 1200px) {
    body.amenities-page::before,
    body.amenities-page::after {
        width: 150px;
        background-size: 150px auto;
    }
    
    .amenities-grid {
        gap: 35px;
        padding: 30px 15px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .amenity-card {
        padding: 20px;
    }
    
    .card-image {
        width: 280px;
        height: 280px;
        min-width: 280px;
    }
    
    .amenity-card.featured .card-image {
        width: 280px;
        height: 280px;
        min-width: 280px;
    }
    
    .card-content {
        padding: 20px 30px;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        bottom: -20px;
    }
    
    .card-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    body.amenities-page::before,
    body.amenities-page::after {
        width: 100px;
        background-size: 100px auto;
        opacity: 0.7;
    }
    
    .amenities-main {
        padding: 20px 0;
    }
    
    .amenities-grid {
        gap: 30px;
        padding: 25px 15px;
    }

    .amenity-card {
        flex-direction: column !important;
        align-items: center;
        min-height: auto;
        max-height: none;
        padding: 30px 20px 40px;
        text-align: center;
    }
    
    /* Diamond image for tablet */
    .card-image {
        width: 220px;
        height: 220px;
        min-width: 220px;
        margin-bottom: 30px;
    }
    
    /* Featured card diamond on tablet */
    .amenity-card.featured .card-image {
        width: 220px;
        height: 220px;
        min-width: 220px;
        margin-bottom: 30px;
    }
    
    .card-content {
        width: 100%;
        padding: 20px 15px;
    }
    
    .card-title {
        font-size: 1.35rem;
    }
    
    .card-title::after {
        display: none;
    }
    
    .card-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .card-description-tamil {
        font-size: 0.85rem;
        text-align: center !important;
        border-left: none !important;
        border-right: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border-top: 2px solid var(--am-gold);
        padding-top: 10px;
    }
    
    /* Hide side mandalas on tablet */
    .amenity-card:nth-child(odd)::before,
    .amenity-card:nth-child(even)::before {
        display: none;
    }
    
    /* Reset decorative lines for mobile */
    .amenity-card:nth-child(odd) .card-content::before,
    .amenity-card:nth-child(even) .card-content::before {
        display: none;
    }
    
    /* Icon for tablet - centered below diamond */
    .card-icon {
        width: 42px;
        height: 42px;
        bottom: -15px;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }
    
    .amenity-card:hover .card-icon {
        transform: translateX(-50%) scale(1.1) rotate(10deg);
    }
    
    .amenity-card:nth-child(even) .card-icon {
        left: 50% !important;
        right: auto !important;
    }
    
    /* Featured card icon */
    .amenity-card.featured .card-icon {
        bottom: 12px;
        right: 12px !important;
        left: auto !important;
        transform: none;
    }
    
    .amenity-card.featured:hover .card-icon {
        transform: scale(1.1) rotate(10deg);
    }
    
    .card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .card-features {
        justify-content: center;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
}

/* Mobile Landscape / Small Tablet */
@media (max-width: 768px) {
    body.amenities-page::before,
    body.amenities-page::after {
        width: 60px;
        background-size: 60px auto;
        opacity: 0.5;
    }
    
    /* Mobile Navigation */
    .amenities-nav {
        padding: 10px 15px;
    }
    
    .nav-logo img {
        height: 50px;
    }
    
    .amenities-header .menu-toggle {
        display: flex;
    }
    
    .amenities-header .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, 
            var(--am-dark-maroon) 0%, 
            var(--am-maroon) 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .amenities-header .nav-menu.active {
        right: 0;
    }
    
    .amenities-header .nav-menu li a {
        font-size: 1rem;
        padding: 15px 25px;
    }

    /* Mobile Dropdown Styles */
    .amenities-header .nav-dropdown .dropdown-toggle {
        flex-direction: row;
        gap: 8px;
    }

    .amenities-header .nav-dropdown .dropdown-arrow {
        margin-top: 0;
    }

    .amenities-header .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        min-width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 8px;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        padding: 0;
        box-shadow: none;
    }

    .amenities-header .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 10px 0;
    }

    .amenities-header .nav-dropdown .dropdown-menu::before {
        display: none;
    }

    .amenities-header .nav-dropdown .dropdown-menu li a {
        padding: 10px 20px;
        font-size: 0.9rem;
        text-align: center;
    }

    .amenities-header .nav-dropdown .dropdown-menu li a:hover {
        padding-left: 20px;
    }

    .page-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .page-title-tamil {
        font-size: 0.95rem;
    }

    .amenities-grid {
        gap: 25px;
        padding: 20px 10px;
    }
    
    .amenity-card {
        padding: 25px 15px 35px;
    }
    
    .card-image {
        width: 180px;
        height: 180px;
        min-width: 180px;
        margin-bottom: 25px;
        border-radius: 15px;
        box-shadow: 
            0 15px 35px rgba(74, 21, 22, 0.25),
            0 0 0 3px var(--am-gold);
    }
    
    .amenity-card.featured .card-image {
        width: 180px;
        height: 180px;
        min-width: 180px;
        margin-bottom: 25px;
    }
    
    .card-content {
        padding: 15px 10px;
    }
    
    .card-title {
        font-size: 1.25rem;
        margin-bottom: 5px;
    }
    
    .card-title-tamil {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .card-description {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    .card-description-tamil {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .card-features {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        bottom: -15px;
    }
    
    .card-icon svg {
        width: 18px;
        height: 18px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
    
    .feature-item {
        padding: 20px 12px;
    }
    
    .feature-item .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-item h4 {
        font-size: 0.9rem;
    }

    .section-main-title {
        font-size: 1.6rem;
    }
    
    .section-main-tamil {
        font-size: 0.95rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-section {
        padding: 35px 20px;
        border-radius: 15px;
        margin: 0 15px;
    }
    
    .additional-features {
        padding: 40px 15px;
    }
    
}

/* Mobile Portrait */
@media (max-width: 480px) {
    body.amenities-page::before,
    body.amenities-page::after {
        width: 40px;
        background-size: 40px auto;
        opacity: 0.4;
    }
    
    .amenities-header {
        padding: 12px 15px;
    }
    
    .page-title {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
    }
    
    .page-title-tamil {
        font-size: 0.85rem;
    }
    
    .section-intro {
        padding: 25px 10px 15px;
    }
    
    .section-main-title {
        font-size: 1.3rem;
    }
    
    .section-main-tamil {
        font-size: 0.8rem;
    }
    
    .amenities-grid {
        gap: 20px;
        padding: 15px 8px;
    }
    
    .amenity-card {
        padding: 20px 12px 30px;
        border-radius: 15px;
    }
    
    .card-image {
        width: 160px;
        height: 160px;
        min-width: 160px;
        margin-bottom: 20px;
        border-radius: 12px;
        box-shadow: 
            0 12px 28px rgba(74, 21, 22, 0.2),
            0 0 0 2px var(--am-gold);
    }
    
    .amenity-card.featured .card-image {
        width: 160px;
        height: 160px;
        min-width: 160px;
        margin-bottom: 20px;
    }
    
    .card-content {
        padding: 12px 8px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-title-tamil {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .card-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .card-description-tamil {
        font-size: 0.75rem;
        padding-top: 8px;
    }
    
    .card-features {
        gap: 4px;
    }
    
    .feature-tag {
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
        bottom: -12px;
    }
    
    .card-icon svg {
        width: 16px;
        height: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 0 10px;
    }

    .feature-item {
        padding: 15px 10px;
    }

    .feature-item .feature-icon {
        font-size: 1.5rem;
    }

    .feature-item h4 {
        font-size: 0.75rem;
    }
    
    .feature-item .tamil-text {
        font-size: 0.7rem;
    }

    .cta-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .additional-features {
        padding: 30px 10px;
    }
    
    .cta-section {
        margin: 0 10px;
        padding: 30px 15px;
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .footer-content {
        padding: 20px 15px;
    }
    
    .footer-content p {
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .page-title {
        font-size: 0.95rem;
    }
    
    .amenities-grid {
        gap: 15px;
        padding: 10px 5px;
    }
    
    .amenity-card {
        padding: 15px 10px 25px;
    }
    
    .card-image {
        width: 140px;
        height: 140px;
        min-width: 140px;
        margin-bottom: 18px;
        border-radius: 10px;
    }
    
    .amenity-card.featured .card-image {
        width: 140px;
        height: 140px;
        min-width: 140px;
        margin-bottom: 18px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-description {
        font-size: 0.75rem;
    }
    
    .feature-tag {
        padding: 3px 6px;
        font-size: 0.6rem;
    }
    
    .card-icon {
        width: 30px;
        height: 30px;
        bottom: -10px;
    }
    
    .card-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
body.amenities-page::-webkit-scrollbar {
    width: 10px;
}

body.amenities-page::-webkit-scrollbar-track {
    background: var(--am-cream);
}

body.amenities-page::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        var(--am-maroon), 
        var(--am-dark-maroon));
    border-radius: 5px;
}

body.amenities-page::-webkit-scrollbar-thumb:hover {
    background: var(--am-dark-maroon);
}

