:root {
    --primary-green: #1B3022;
    --accent-gold: #D4AF37;
    --soft-bg: #F9FAFB;
    --text-muted: #6B7280;
}

body {
    font-family: 'Inter', 'Lato', sans-serif;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);

    color: #111827;
}

.playfair {
    font-family: 'Playfair Display', serif;
}

.gold-text {
    color: var(--accent-gold);
}

.green-text,
.text-green {
    color: #154724 !important;
}

/* Hero Section */
.hotel-hero {
    position: relative;
    height: 450px;
    background-image: url('../images/bg_hero_1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hotel-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hotel-hero h1 {
    position: relative;
    font-size: 24px;
    font-weight: 400;
}

/* Welcome Section */
.section-padding {
    padding: 80px 0;
}

.welcome-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-item label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-item span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* Installations Section */
.bg-soft {}

.inst-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.inst-card:hover {
    transform: translateY(-10px);
}

.inst-img-wrapper {
    position: relative;
    height: 200px;
}

.inst-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inst-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.inst-content {
    padding: 24px;
}

.inst-content .category {
    margin-bottom: 8px;
    display: block;
    font-weight: 500;
}

.inst-content h3 {
    font-size: 24px;
    margin-bottom: 12px;

}

.inst-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Grid Section for Location/Wifi/Attention */
.grid-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    border: 1px solid #E5E7EB;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.card-header-group {
    margin-bottom: 24px;
    display: block;
    width: 100%;
}

.hotel-icon-box {
    display: table;
    width: 100%;
    margin: 20px 0;
    border-collapse: separate;
    border-spacing: 0;
}

.hotel-icon-badge {
    vertical-align: top;
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, #D1A139 0%, #F6BD43 100%);
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.hotel-icon-badge i {
    line-height: 48px;
    font-size: 1.2rem;
}

.hotel-icon-text {
    display: table-cell;
    vertical-align: top;
    padding-left: 16px;
}

.card-footer-img {
    width: 100%;
    flex-grow: 1;
    min-height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-top: 20px;
    display: block;
}

.wifi-laptop-img {
    width: 100%;
    flex-grow: 1;
    min-height: 300px;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 20px;
    display: block;
}

.cta-section {
    border-radius: 24px;
    padding: 40px;
    display: block;
    height: 100%;
    box-sizing: border-box;
}

.cta-icons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-item {
    display: flex;
    align-items: center;
    margin-right: 30px;
    margin-bottom: 15px;
}

.cta-item .icon-circle {
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.title-card {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* CTA Icon Badges override */
.cta-section .hotel-icon-badge {
    background-color: white !important;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border-radius: 10px;
    padding: 0;
}

.cta-section .hotel-icon-badge i {
    line-height: 40px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .welcome-img {
        height: 300px;
    }

    .section-padding {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .hotel-hero {
        height: 260px;
    }

    .hotel-hero h1 {
        font-size: 1.6rem;
    }

    .welcome-img {
        height: 220px;
        margin-bottom: 20px;
    }

    .section-padding {
        padding: 36px 0;
    }

    .grid-card {
        padding: 20px;
    }

    .inst-img-wrapper {
        height: 200px;
    }

    .wifi-laptop-img {
        min-height: 180px;
    }

    .cta-section {
        padding: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .title-card {
        font-size: 1.25rem;
    }
}