:root {
    --primary: #A2B518;
    --accent: #C9A96E;
    --dark: #1F383D;
    --text-light: #6B7280;
    --border: #E5E7EB;
    --bg-warm: #FAFAFA;
    --white: #FFFFFF;
    --primary-hover: #7A8C0E;
}
.amenities-hero {
    position: relative;
    padding: 10rem 1.5rem 6rem;
    text-align: center;
    background: linear-gradient(135deg, var(--dark), #2A4A50);
    overflow: hidden;
}
.amenities-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(162,181,24,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.amenities-hero .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.amenities-hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #fff;
    margin-bottom: 0.75rem;
    font-weight: 700;
    opacity: 0;
    animation: fadeInDown 0.8s 0.3s ease-out forwards;
}
.amenities-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s 0.6s ease-out forwards;
}
.amenities-section {
    padding: 5rem 1.5rem;
    background: var(--bg-warm, #FAFAFA);
}
.amenities-section .container {
    max-width: 960px;
    margin: 0 auto;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.amenity-item {
    background: var(--white, #fff);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border, #E5E7EB);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
}
.amenity-item.animate-in {
    animation: fadeInCard 0.6s ease-out forwards;
}
.amenity-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: rgba(162,181,24,0.3);
}
.amenity-item i {
    font-size: 1.75rem;
    color: var(--primary, #A2B518);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(162,181,24,0.1);
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.amenity-item:hover i {
    background: var(--primary, #A2B518);
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
}
.amenity-item span {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.4;
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
    .amenities-hero {
        padding: 8rem 1.25rem 4rem;
    }
    .amenities-section {
        padding: 3rem 1.25rem;
    }
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .amenity-item {
        padding: 1.5rem 1rem;
    }
    .amenity-item i {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}
