:root {
    --primary: #235A9F;
    --primary-600: #1b4b7d;
    --bg: #f6f9fc;
    --muted: #5f6b78;
    --white: #ffffff;
    --footer-bg: #0f2b46;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--bg);
    color: #222;
    line-height: 1.6;
    font-size: 0.95rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(35, 90, 159, 0.08);
    z-index: 100;
}

header h1 {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

nav.site-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

nav.site-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    position: relative;
}

nav.site-nav a:hover {
    color: var(--primary);
    background: rgba(35, 90, 159, 0.05);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle .burger {
    display: inline-block;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-toggle .burger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: transform .18s ease, opacity .12s ease;
}

.menu-toggle .burger span:nth-child(1) {
    top: 0;
}

.menu-toggle .burger span:nth-child(2) {
    top: 8.5px;
}

.menu-toggle .burger span:nth-child(3) {
    bottom: 0;
}

.menu-toggle.active .burger span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .burger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0.2);
}

.menu-toggle.active .burger span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.site-mobile-menu {
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    bottom: 0;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(35, 90, 159, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .18s ease;
    z-index: 120;
    overflow: auto;
}

.site-mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.site-mobile-menu-body {
    padding: 30px;
}

.site-nav-wrap {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.site-nav-wrap li a {
    display: block;
    padding: 15px 20px;
    border-radius: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    background: rgba(35, 90, 159, 0.05);
    transition: all 0.3s ease;
}

.site-nav-wrap li a:hover {
    background: rgba(35, 90, 159, 0.1);
}

.hero {
    height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    color: var(--white);
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 800ms ease;
    filter: brightness(0.6);
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    border: 0;
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.guarantee {
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(35, 90, 159, 0.1);
    border-left: 5px solid var(--primary);
}

.guarantee h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.guarantee p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(35, 90, 159, 0.1);
    text-align: center;
}

.sidebar-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.sidebar-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.sidebar-icon {
    margin: 0 auto 16px;
    display: block;
    background: transparent;
}

.sidebar-icon img {
    width: 56px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.features-section {
    grid-column: 1 / -1;
    margin-top: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(35, 90, 159, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary);
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-icon {
    margin: 0 auto 18px;
    display: block;
}

.feature-icon img {
    width: 56px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.9);
    padding: 50px 40px 30px;
    text-align: center;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer a {
    color: #dbeaf9;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer .footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.footer .footer-logo img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.footer .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 10px;
}

.footer .footer-brand h4 {
    margin: 0;
    line-height: 1;
}

.guarantee.with-image {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.guarantee p.spacing {
    margin-top: 20px;
}

.image-container {
    display: inline-block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

    .about-image {
        width: 100%;
        max-width: 500px;
        height: 350px;
        object-fit: cover;
        display: block;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(35, 90, 159, 0.1);
    }

    .image-container iframe {
        width: 100%;
        max-width: 500px;
        height: 350px;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(35, 90, 159, 0.1);
        border: 0;
    }

    .map-link {
        display: block;
        margin-top: 15px;
        text-align: center;
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .map-link:hover {
        color: var(--primary-600);
        text-decoration: underline;
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: var(--primary);
        font-weight: 600;
        font-size: 0.95rem;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="url"],
    .form-group input[type="date"],
    .form-group input[type="number"],
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e0e6ed;
        border-radius: 8px;
        font-size: 1rem;
        font-family: 'Poppins', sans-serif;
        color: #222;
        background: var(--white);
        transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    form {
        max-width: 800px;
        margin: 0 auto;
    }

.section-heading {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
}

.guarantee.full-width {
    grid-column: 1 / -1;
    margin-top: 40px;
}

    .closing-message {
        font-size: 1.1rem;
        text-align: center;
        font-style: italic;
        color: var(--primary);
    }

    .room-features {
        margin-top: 15px;
        padding-left: 25px;
        color: var(--muted);
        line-height: 1.8;
    }

    .room-features li {
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .guarantee.with-image + .guarantee.with-image {
        margin-top: 40px;
    }

.guarantee.contact-full-width {
    grid-column: 1 / -1;
}

.guarantee.contact-inner {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 30px;
}

.form-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 10px;
}

.sidebar-card.contact-info {
    margin: 0;
    text-align: left;
}

@media (max-width: 900px) {
    header {
        padding: 0 20px;
        height: 70px;
    }

    nav.site-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        padding: 40px 30px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .main-grid {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .guarantee.with-image {
        grid-template-columns: 1fr;
    }
}

body.lightbox-open {
    overflow: hidden;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 24px;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 92vw;
    max-height: 92vh;
}

.lightbox-image {
    max-width: 92vw;
    max-height: 92vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    background: #111;
}

.lightbox-iframe {
    width: 92vw;
    height: 52vw;
    max-width: 92vw;
    max-height: 92vh;
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    background: #000;
}

.lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #111;
    font-size: 22px;
    line-height: 36px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* 🌐 Language Dropdown */
.language-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 25px;
  transition: background 0.3s ease;
  color: var(--primary);
  font-weight: 500;
}

.lang-toggle img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-toggle:hover {
  background: rgba(35, 90, 159, 0.08);
}

.arrow-down {
  border: solid var(--primary);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  margin-left: 4px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 6px 0;
  z-index: 1000;
  min-width: 150px;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu .lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
}

.dropdown-menu .lang-btn:hover {
  background: rgba(35, 90, 159, 0.08);
}

.dropdown-menu .lang-btn img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .language-dropdown {
    display: none;
  }
}

.site-mobile-menu .language-dropdown {
  display: block;
  margin-top: 20px;
}

.site-mobile-menu .language-dropdown .dropdown-menu {
  position: static;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin-top: 5px;
}

.language-dropdown .dropdown-menu {
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.language-dropdown .dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.language-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #aaa;
  border-radius: 3px;
}

.language-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}
