/* General */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Luxury brand typography */
body {
    font-family: 'Cormorant Garamond', serif;
}

.site-header a,
.footer-col h4,
.nav-links a {
    font-family: 'Marcellus', serif;
    letter-spacing: 0.5px;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.call-btn {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* ---------------- HEADER ---------------- */

.site-header {
    background: #08554D;
    padding: 10px 0;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.header-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.call-btn,
.contact-btn {
    background: #ffc107;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    color: #000;
    border: none;
    cursor: pointer;
}

.contact-btn {
    padding: 8px 18px;
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    display: none;
}

/* Mobile nav */
@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 75px;
        right: 0;
        background: #004d47;
        flex-direction: column;
        width: 250px;
        padding: 20px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* ---------------- FOOTER ---------------- */

.site-footer {
    background: #08554D;
    color: #fff;
    padding: 50px 0 20px;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* only 2 columns now */
    gap: 40px;
}

/* Footer Column Titles */
.footer-col h4 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #ffc107;
}

/* Footer Links */
.footer-col a {
    display: block;
    margin: 6px 0;
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

/* Email Section */
.footer-email {
    text-align: center;
    color: #fff;
    margin: 20px 0 10px;
    font-size: 16px;
    opacity: 0.9;
    word-break: break-word;
}

/* Disclaimer */
.footer-disclaimer {
    width: 90%;
    max-width: 900px;
    margin: 20px auto 10px;
    color: #ddd;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
    opacity: 0.85;
}

/* Bottom Strip */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    opacity: 0.7;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Featured Properties Section */
.featured-section {
    position: relative;
    padding: 70px 0;
    color: #fff;
}

.featured-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.featured-title span {
    background: #08554D;
    color: #fff;
    padding: 5px 12px;
    border-radius: 10px;
}

/* Slider container */
.featured-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    z-index: 3;
}

.property-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px;
    scroll-behavior: smooth;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 3;
}

.property-slider::-webkit-scrollbar {
    display: none;
}

/* Highlighted Exclusive Card */
.highlight-card {
    border: 2px solid #0d8f6f;
    box-shadow: 0 6px 26px rgba(0, 128, 96, 0.25);
    transform: scale(1.02);
}

.highlight-card:hover {
    box-shadow: 0 8px 32px rgba(0, 128, 96, 0.35);
}

/* Exclusive Badge */
.badge.exclusive {
    background: #008060;
    color: #fff;
    font-weight: 600;
}

/* Elegant short description */
.short-desc {
    font-size: 14px;
    color: #555;
    margin: 10px 0 18px;
    line-height: 1.4;
}

/* Card */
.property-card {
    background: white;
    min-width: 360px;
    max-width: 360px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    flex-shrink: 0;
    transition: 0.3s ease;
}

.property-card:hover {
    transform: translateY(-4px);
}

/* Image */
.property-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* Content */
.property-content {
    padding: 18px;
}

/* Badges */
.badge-group {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.badge {
    background: #e6f0ff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: #0050a0;
}

/* Titles */
.property-title {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: #222;
}

.builder {
    color: #666;
    font-size: 14px;
    margin: 5px 0 10px;
}

/* Price */
.price {
    color: #008060;
    font-size: 20px;
    font-weight: 800;
    margin: 8px 0;
    position: relative;
    z-index: 2;
}

/* Location */
.location {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

/* Footer Btns */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.details-btn {
    flex: 1;
    text-align: center;
    background: #006a58;
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}

.share-btn {
    margin-left: 10px;
    border: none;
    background: #eef3f5;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(3px);
}

/* Modal Box */
.modal-box {
    background: #ffffff;
    width: 92%;
    max-width: 450px;
    padding: 32px;
    padding-top: 45px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Smooth Fade + Slide Animation */
.modal-animate {
    animation: modalFadeIn 0.32s ease forwards;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Close Button */
.close-btn {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 26px;
    cursor: pointer;
    color: #444;
    transition: 0.2s;
}
.close-btn:hover {
    color: #000;
}

/* Title */
.modal-title {
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #003b34;
}

/* Inputs */
.modal-input,
.modal-textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-family: "Cormorant Garamond", serif;
    transition: 0.25s ease;
    background: #fafafa;
}

.modal-input:focus,
.modal-textarea:focus {
    border-color: #008060;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0,128,96,0.15);
    outline: none;
}

/* Submit Button */
.modal-submit-btn {
    width: 100%;
    padding: 13px;
    background: #006a58;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.modal-submit-btn:hover {
    background: #004e42;
}


/* ================================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 500px) {

    .modal-box {
        padding: 26px;
        padding-top: 40px;
        border-radius: 14px;
    }

    .modal-title {
        font-size: 22px;
    }

    .modal-input,
    .modal-textarea {
        padding: 11px 12px;
        font-size: 14.5px;
    }

    .modal-submit-btn {
        padding: 12px;
        font-size: 16px;
    }

    .close-btn {
        font-size: 24px;
        right: 15px;
        top: 10px;
    }
}


/* Background Slides */
.banner-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: #000;
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: fadeSlide 15s infinite;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Slider sequencing */
.banner-slide:nth-child(1) { animation-delay: 0s; }
.banner-slide:nth-child(2) { animation-delay: 5s; }
.banner-slide:nth-child(3) { animation-delay: 10s; }

@keyframes fadeSlide {
    0% { opacity: 0; }
    5% { opacity: 1; }
    30% { opacity: 1; }
    35% { opacity: 0; }
    100% { opacity: 0; }
}

/* ABOUT US SECTION */
.about-section {
    padding: 80px 0;
    background: #f8f8f8;
    text-align: center;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-title span {
    background: #008060;
    color: #fff;
    padding: 5px 12px;
    border-radius: 10px;
}

.about-container {
    width: 85%;
    max-width: 900px;
    margin: auto;
}

.about-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* ABOUT BG with Overlay */
/* .about-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.35);
    z-index: 0;
} */

.about-bg .info-grid {
    position: relative;
    z-index: 2;
}

/* DISCLAIMER SECTION */
.disclaimer-section {
    padding: 60px 0;
    background: #e9e9e9;
}

.disclaimer-container {
    width: 85%;
    max-width: 900px;
    margin: auto;
}

.disclaimer-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.disclaimer-text {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: center;
}

.disclaimer-premium {
    background: #222;
    color: #aaa;
    padding: 30px 20px;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
}

/* MAIN SECTION WRAPPER */
.info-section {
    padding: 90px 0;
    background: #f7f7f7;
}

/* GRID LAYOUT */
.info-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD STYLE */
.info-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.09);
}

/* TITLES */
.info-card h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-card h2 span {
    background: #008060;
    color: #fff;
    padding: 4px 12px;
    border-radius: 10px;
}

.info-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* INLINE CONTACT FORM WRAPPER */
.inline-contact-form {
    margin-top: 10px;
}

.inline-contact-form input,
.inline-contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    font-size: 15px;
    background: #fafafa;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.inline-contact-form input:focus,
.inline-contact-form textarea:focus {
    border-color: #008060;
    box-shadow: 0 0 0 3px rgba(0,128,96,0.15);
    background: #fff;
    outline: none;
}

/* BUTTON */
.inline-contact-form .contact-submit {
    width: 100%;
    background: #006a58;
    color: #fff;
    padding: 14px 0;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.inline-contact-form .contact-submit:hover {
    background: #004e42;
    transform: translateY(-2px);
}

/* WHY CHOOSE US */
.why-list {
    margin-top: 15px;
}

.why-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.why-icon {
    background: #e6f5f1;
    color: #008060;
    font-size: 20px;
    padding: 8px 12px;
    border-radius: 10px;
}

/* BLOG SECTION */
.blog-section {
    padding: 90px 0;
    background: #fafafa;
    background-size: cover;
    background-repeat: repeat;
}

/* Container */
.blog-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Title */
.blog-title {
    text-align: center;
    font-size: 36px;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.blog-title span {
    background: #006a58;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Cards */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.10);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.06);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

/* Image */
.blog-img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

/* Content */
.blog-content {
    padding: 24px;
    margin-left: 10px;
}

.blog-content h3 {
    font-size: 21px;
    font-family: "Marcellus", serif;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 16px;
    font-family: "Cormorant Garamond", serif;
    line-height: 1.55;
    color: #444;
    margin-bottom: 18px;
}

/* Read More Button */
.blog-read {
    font-family: "Marcellus", serif;
    font-size: 15px;
    font-weight: 600;
    color: #006a58;
    text-decoration: none;
    transition: 0.2s;
}

.blog-read:hover {
    text-decoration: underline;
}

/* Soft Overlay */
.section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.70);
    z-index: 1;
}

/* PROJECT HERO */
.project-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.project-hero-img,
.project-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

.project-hero-bg img {
    height: 500px;
    filter: brightness(0.45);
    opacity: 0.78;
}

.project-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.project-hero-content h1 {
    font-size: 46px;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.project-hero-content p {
    font-size: 18px;
    margin-top: 8px;
    font-weight: 500;
}

/* PROJECT DETAILS */
.project-details .project-section {
    margin-bottom: 40px;
}

.project-details h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #006a58;
}

.project-highlights,
.project-pricing {
    list-style: none;
    padding-left: 0;
}

.project-highlights li,
.project-pricing li {
    padding: 8px 0;
    font-size: 16px;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.amenity,
.amenity-item {
    background: #e6f5f1;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    color: #006a58;
}

.section-wrapper {
    padding: 80px 0;
    line-height: 1.65;
}

.light-bg {
    background: #f9f9f9;
}

/* Two Column Layout */
.two-col {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.left, .right {
    flex: 1;
    min-width: 300px;
}

/* Info card */
.info-card-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-card-box ul li {
    margin-bottom: 8px;
}

/* Highlights */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, auto));
    gap: 20px;
}

/* Pricing */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.price-card {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.price-card .price {
    font-size: 24px;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
    gap: 15px;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.cta-row {
    margin-top: 25px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    background: #006a58;
    color: #fff;
    padding: 10px 26px;
    border-radius: 30px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #004e42;
}

.cta-btn.outline {
    background: transparent;
    color: #006a58;
    border: 2px solid #006a58;
}

.cta-btn.outline:hover {
    background: #e6f5f1;
}

/* Special style only for hero section outline button */
.project-hero .cta-btn.outline {
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.project-hero .cta-btn.outline:hover {
    background: rgba(255, 255, 255, 0.38);
    color: #003b34;
}

/* BLOG POST PAGE */
.blog-hero {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.blog-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.blog-hero-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.blog-hero-overlay h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.blog-content {
    padding: 60px 0;
    max-width: 900px;
}

.blog-meta p {
    margin-right: 20px;
    display: inline-block;
    color: #555;
}

.blog-article {
    margin-top: 25px;
    line-height: 1.75;
    font-size: 18px;
}

.blog-tags {
    margin-top: 40px;
}

.blog-tags .tag {
    background: #e6f5f1;
    padding: 6px 12px;
    border-radius: 6px;
    margin-right: 8px;
    color: #006a58;
}

.blog-share {
    margin-top: 30px;
}

.blog-share a {
    margin-right: 15px;
    color: #006a58;
}

.related-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.related-card {
    width: 30%;
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

/* LEGAL PAGES */
.legal-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: #f4f7f6;
}

.legal-hero h1 {
    font-size: 38px;
    font-family: "Playfair Display", serif;
}

.legal-content {
    padding: 50px 0;
    max-width: 900px;
    color: #333;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 35px;
    font-family: "Marcellus", serif;
}

.legal-content p, 
.legal-content ul {
    font-size: 17px;
    line-height: 1.65;
    margin-top: 12px;
    font-family: "Cormorant Garamond", serif;
}

/* TOAST MESSAGE */
.toast-message {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #006a58, #00a37a);
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 15px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.toast-message.show {
    opacity: 1;
}

/* =============================
   RESPONSIVE
   ============================= */
@media(max-width: 1100px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 780px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 30px;
    }

    .blog-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .banner-slide img {
        object-fit: cover;
        height: 100%;
    }
    
    .about-title {
        font-size: 26px;
    }

    .disclaimer-title {
        font-size: 21px;
    }

    .about-text,
    .disclaimer-text {
        font-size: 14px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 28px;
    }

    .info-card h2 {
        font-size: 22px;
    }
}

@media(max-width: 600px) {
    .property-card {
        min-width: 300px;
        max-width: 300px;
    }

    .property-img {
        height: 200px;
    }

    .featured-title {
        font-size: 26px;
    }
}

/* Highlight Grid */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    perspective: 1000px; /* needed for 3D */
}

/* Highlight Card */
.highlight-card {
    background: #ffffff;
    padding: 26px 22px;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    transform-style: preserve-3d;
    cursor: default;
}

/* Title */
.highlight-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #003b34;
}

/* Text */
.highlight-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Hover 3D rotate */
@media (hover: hover) {
    .highlight-card:hover {
        transform: rotateY(8deg) rotateX(6deg) translateY(-6px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.18);
    }
}

/* Subtle glow edge */
.highlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,128,96,0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.highlight-card:hover::after {
    opacity: 1;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

/* Amenity Card */
.amenity-item {
    background: linear-gradient(180deg, #ffffff, #fafafa);
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #003b34;
    text-align: center;
    position: relative;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid rgba(0,0,0,0.04);
    cursor: default;
}

/* Gold accent line */
.amenity-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 1px solid transparent;
    background: linear-gradient(
        135deg,
        rgba(212,175,55,0.9),
        rgba(255,215,128,0.6),
        rgba(212,175,55,0.9)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    opacity: 0.35;
    pointer-events: none;
}

/* Hover effect */
@media (hover: hover) {
    .amenity-item:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.16);
    }

    .amenity-item:hover::before {
        opacity: 0.8;
    }
}

/* Emoji polish */
.amenity-item {
    letter-spacing: 0.3px;
}

/* Mobile safe */
@media (max-width: 600px) {
    .amenity-item {
        font-size: 14px;
        padding: 14px 16px;
    }
}
