:root {
    --primary: #001f3f;      /* Soft navy */
    --accent: #1abc9c;       /* Fresh teal */
    --bg-light: #f8f9fa;
    --card-white: #ffffff;
    --text-dark: #333;
}

/* Top Header */
.top-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 1040;
}
.top-header .info-group { gap: 40px; }
.top-header .info-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.top-header .info-item i { color: var(--accent); font-size: 16px; }
.top-header .info-text small { display: block; font-size: 12px; color: #888; }
.top-header .info-text strong, .top-header .info-text a strong { font-size: 15px; color: #333; }
.top-header .social-icons a { color: #555; font-size: 18px; margin-left: 15px; transition: color 0.3s; }
.top-header .social-icons a:hover { color: var(--accent); }
.top-header .dashed-divider {
    height: 35px; width: 1px;
    background: repeating-linear-gradient(to bottom, transparent 0px, transparent 4px, #ddd 4px, #ddd 8px);
}

/* Navbar */
.main-navbar {
    background: transparent;
    transition: all 0.4s ease;
    padding: 20px 0;
    z-index: 1030;
    position: fixed;
    top: 0; left: 0; right: 0;
}
.main-navbar.scrolled {
    background: var(--primary);
    padding: 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.main-navbar .navbar-brand h2 { color: #fff; font-size: 32px; font-weight: bold; }
.main-navbar .nav-link {
    color: #fff !important;
    font-size: 16px;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: background 0.3s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { background: rgba(255,255,255,0.15); }
.main-navbar .navbar-toggler { border: none; }
.main-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#lang-toggle {
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    font-weight: bold;
    transition: all 0.3s;
}
#lang-toggle:hover { background: rgba(255,255,255,0.2); }

/* Hero */
.hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.2)), url('https://www.shutterstock.com/image-photo/defocused-background-modern-minimalist-living-260nw-2577245993.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-content h1 { font-size: 4rem; }
.trust-badge { font-size: 1.2rem; margin-top: 1rem; }
.scroll-hint {
    position: absolute;
    bottom: 30px;
    animation: bounce 2s infinite;
    color: white;
}
@keyframes bounce {
    0%,20%,50%,80%,100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}
@media (max-width: 768px) {
    .hero .hero-content { text-align: left; max-width: 90%; }
}

/* Price Banner */
.price-banner {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 40px 0;
    margin: -60px auto 60px;
    max-width: 800px;
    border-radius: 16px;
    position: relative;
    z-index: 10;
}

/* === UNIFORM CARD HEIGHTS === */
.uniform-height-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 1rem;
}

/* Room Cards */
.custom-card {
    background: var(--card-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}
.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.card-image-wrapper { position: relative; overflow: hidden; }
.card-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
}
.card-image {
    transition: transform 0.5s;
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.custom-card:hover .card-image { transform: scale(1.05); }
.room-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.check-group h6 { color: var(--accent); margin-top: 1.5rem; margin-bottom: 0.5rem; }

/* Extra Services */
.extra-card {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 16px;
    transition: all 0.3s;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
    padding: 2rem 1.5rem;
}
.extra-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(26,188,156,0.25);
}
.price { color: var(--accent); font-size: 1.5rem; font-weight: bold; }
.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Trust Section */
.trust-section {
    background: var(--primary);
    color: white;
    padding: 100px 0;
}
.trust-card {
    background: white;
    color: var(--text-dark);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
}
.trust-icon-wrapper {
    background: rgba(26,188,156,0.1);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.trust-icon-wrapper i { color: var(--accent); font-size: 2.2rem; }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 120px 0;
}

/* Footer Overrides */
footer {
    background: var(--primary);
    color: #ddd;
}

/* Responsive */
@media (max-width: 992px) {
    .top-header .info-group { flex-direction: column; gap: 15px; align-items: center; }
    .top-header .dashed-divider { display: none; }
}