/* 
   Dragon Hill CSS Stylesheet
   Created with Vanilla CSS for Maximum performance and Premium Aesthetics.
*/

:root {
  --primary-color: #02b256;
  --secondary-color: #001a4b;
  --text-color: #303030;
  --bg-light: #f3f3f3;
  --bg-dark: #7d7d7d;
  --gold-color: #f8cc33;
  --border-color: #dedede;
  --font-main: 'Open Sans', 'Roboto', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
  padding-top: 104px; /* Space for fixed header */
}

a {
  color: #000;
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-12 { width: 100%; padding: 0 15px; }
.col-md-6 { width: 50%; padding: 0 15px; }
.col-md-4 { width: 33.333%; padding: 0 15px; }
.col-md-3 { width: 25%; padding: 0 15px; }
.col-lg-8 { width: 66.666%; padding: 0 15px; }
.col-lg-4 { width: 33.333%; padding: 0 15px; }

/* Sticky Header */
.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 104px;
  background: #ecf6e7 url('/template/tint/images/bg-page-head.png') no-repeat center bottom;
  background-size: cover;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

.page-header.sticky {
  height: 65px;
  background-color: #ecf6e7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
}

.page-header a.logo {
  display: block;
  width: 302px;
  height: 75px;
  background: url('/template/tint/images/logo-dh.svg') no-repeat center center;
  background-size: contain;
  transition: var(--transition-smooth);
}

.page-header.sticky a.logo {
  height: 50px;
  width: 220px;
}

/* Nav Menu */
.navbar-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar-nav > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 12px;
  transition: var(--transition-smooth);
}

.navbar-nav > li:hover,
.navbar-nav > li.active {
  background-color: var(--primary-color);
}

.navbar-nav > li > a {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 20px;
  position: relative;
  transition: var(--transition-smooth);
}

.page-header.sticky .navbar-nav > li > a {
  padding-top: 0;
}

.navbar-nav > li:hover > a,
.navbar-nav > li.active > a {
  color: #fff;
  background: url('/template/tint/images/icon-line-active.png') no-repeat center bottom;
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 220px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.navbar-nav li.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.navbar-nav .dropdown-menu li {
  border-bottom: 1px solid var(--border-color);
}

.navbar-nav .dropdown-menu li:last-child {
  border-bottom: none;
}

.navbar-nav .dropdown-menu li a {
  color: var(--primary-color);
  padding: 12px 20px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  background: transparent url('/template/tint/images/bg-dropdown-menu.png') no-repeat left center;
  background-position: 15px center;
  padding-left: 35px;
  transition: var(--transition-smooth);
}

.navbar-nav .dropdown-menu li a:hover {
  color: #fff;
  background-color: var(--primary-color);
  background-image: url('/template/tint/images/bg-dropdown-menu-h.png');
}

/* Language Switcher */
.language {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.language a {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.language a:hover {
  transform: scale(1.1);
}

/* Home Slider Banner */
.home-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.home-gallery .swiper {
  width: 100%;
  height: calc(100vh - 104px);
  min-height: 500px;
}

.page-header.sticky ~ .home-gallery .swiper {
  height: calc(100vh - 65px);
}

.home-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-gallery .moves {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-10px) translateX(-50%);
  }
  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Home Content Blocks */
.home-content {
  padding: 60px 0;
}

.box-home {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.box-home .title-wrapper {
  margin-bottom: 25px;
}

.box-home .title-wrapper .icon img {
  max-width: 100%;
  height: auto;
}

.box-home .info-text {
  text-align: justify;
  margin-bottom: 30px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.box-home a.bt-detail {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #d2d2d2;
  background: url('/template/tint/images/arrow-right.png') no-repeat right center;
  padding-right: 25px;
  font-weight: 600;
  color: #303030;
}

.box-home a.bt-detail:hover {
  color: var(--primary-color);
  padding-right: 35px;
  border-bottom-color: var(--primary-color);
}

.box-home .block-image-wrap {
  width: 100%;
}

.box-home .block-image-wrap img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: var(--transition-smooth);
}

.box-home .block-image-wrap img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Specific home block spacing & styles */
.box-home-1, .box-home-3, .box-home-5 {
  background-color: #fff;
}

.box-home-2, .box-home-4 {
  background-color: #fcfdfa;
}

/* Floor map swap in Box 4 */
.map-swap-container {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}

.map-swap-container img.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.map-swap-container:hover img.img-hover {
  opacity: 1;
}

/* Sơ đồ căn hộ Button in Box 5 */
.bt-project-wrap {
  margin-top: 30px;
  display: flex;
  justify-content: flex-start;
}

.bt-project {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--secondary-color);
}

.bt-project .icon-circle {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.bt-project:hover .icon-circle {
  background-color: var(--primary-color);
}

.bt-project svg {
  width: 48px;
  height: 48px;
  transition: var(--transition-smooth);
}

.bt-project svg path {
  fill: var(--primary-color);
  transition: var(--transition-smooth);
}

.bt-project:hover svg path {
  fill: #fff;
}

.bt-project:hover {
  color: var(--primary-color);
}

/* Register Showroom Banner */
.page-child-banner {
  width: 100%;
  height: 165px;
  background: url('/template/tint/images/banner-adv.jpg') no-repeat center center;
  background-size: cover;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.page-child-banner:hover {
  background: url('/template/tint/images/banner-adv-h.jpg') no-repeat center center;
  background-size: cover;
}

.page-child-banner .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.bt-dk {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
}

.bt-dk span {
  font-weight: 700;
}

.page-child-banner:hover .bt-dk {
  color: var(--gold-color);
}

/* Register form section */
.register-to-visit {
  background-color: var(--bg-light);
  display: none;
  padding: 40px 0;
  border-bottom: 2px solid var(--border-color);
}

.register-note {
  background-color: #fff;
  border: 1px solid var(--border-color);
  padding: 10px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 500;
}

.register-note span {
  color: var(--primary-color);
}

.register-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.form-group label {
  width: 160px;
  font-weight: 500;
  font-size: 14px;
}

.form-group label span {
  color: var(--primary-color);
}

.form-control {
  flex: 1;
  height: 38px;
  padding: 6px 12px;
  border: 1px solid var(--border-color);
  background-color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(2, 178, 86, 0.2);
}

select.form-control {
  cursor: pointer;
}

.form-group.captcha-group {
  display: flex;
  gap: 10px;
}

.captcha-image-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.captcha-img {
  height: 38px;
  background-color: #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 4px;
  user-select: none;
}

.refresh-captcha {
  width: 38px;
  height: 38px;
  background: var(--primary-color) url('/template/tint/images/bg-reset.png') no-repeat center center;
  background-size: 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.refresh-captcha:hover {
  background-color: var(--secondary-color);
}

.form-actions {
  display: flex;
  margin-top: 30px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.btn-submit-form, .btn-reset-form {
  width: 50%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-submit-form {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-submit-form:hover {
  background-color: var(--secondary-color);
}

.btn-reset-form {
  background-color: #e2e2e2;
  color: #555;
}

.btn-reset-form:hover {
  background-color: #ccc;
  color: #000;
}

/* Footer styles */
.page-footer {
  background-color: #f3f3f3;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.page-footer .container,
.footer-bottom .container {
  max-width: 100%;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.footer-block {
  flex: 1;
  min-width: 200px;
}

.footer-block h4 {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.footer-logo-grid {
  display: flex;
  gap: 15px;
}

.footer-logo-grid img {
  border: 1px solid #c1c1c1;
  background-color: #fff;
  padding: 8px;
  height: 50px;
  object-fit: contain;
}

.footer-block.hotline-block {
  display: flex;
  justify-content: flex-end;
}

.hotline-box {
  background-color: var(--gold-color);
  border-radius: 10px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: var(--secondary-color);
}

.hotline-box img {
  width: 32px;
  height: 32px;
}

.hotline-box span {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.hotline-box strong {
  font-size: 20px;
  font-weight: 700;
}

/* Footer Bottom */
.footer-bottom {
  background-color: #7d7d7d;
  color: #fff;
  padding: 15px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright {
  font-size: 13px;
}

.footer-copyright a {
  color: var(--gold-color);
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-links a.email-link {
  color: #fff;
  padding-left: 28px;
  background: url('/template/tint/images/icon-mail.png') no-repeat left center;
  background-size: 20px;
}

.footer-links a.contact-link {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}

.footer-links a.contact-link::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-right: 10px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  width: 35px;
  height: 35px;
  background-color: #535353;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-links a svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.social-links a:hover {
  background-color: #fff;
}

.social-links a:hover svg {
  fill: var(--primary-color);
}

/* Scroll to top button */
#top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 62px;
  background: url('/template/tint/images/top.png') no-repeat center center;
  cursor: pointer;
  display: none;
  z-index: 1000;
  transition: var(--transition-smooth);
}

#top:hover {
  transform: translateY(-5px);
}

/* Page Inner Styles (About, Location, Showroom, Amenities, etc) */
.page-banner {
  width: 100%;
  height: 250px;
  background-color: var(--secondary-color);
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 26, 75, 0.4);
}

.page-banner h1 {
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.page-content {
  padding: 60px 0;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  align-items: center;
}

.breadcrumbs li {
  font-size: 14px;
}

.breadcrumbs li a {
  color: #777;
}

.breadcrumbs li::after {
  content: '/';
  margin-left: 10px;
  color: #ccc;
}

.breadcrumbs li:last-child::after {
  content: '';
}

.breadcrumbs li:last-child {
  color: var(--primary-color);
  font-weight: 600;
}

.page-branch-title {
  font-size: 28px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-branch-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--primary-color);
}

/* About Us Layout */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  align-items: center;
}

.about-features {
  margin-top: 30px;
}

.about-feature-item {
  padding: 15px;
  border-left: 3px solid var(--primary-color);
  background-color: #fbfbfb;
  margin-bottom: 20px;
  font-size: 15px;
}

.about-feature-item strong {
  color: var(--primary-color);
  display: block;
  font-size: 17px;
  margin-bottom: 5px;
}

/* Accordion Accordion styles for About page capabilities */
.capabilities-accordion {
  margin-top: 50px;
}

.accordion-item {
  border: 1px solid var(--border-color);
  margin-bottom: 15px;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  background-color: #fcfdfa;
  padding: 18px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.accordion-header:hover {
  background-color: #ecf6e7;
  color: var(--primary-color);
}

.accordion-header::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--primary-color);
}

.accordion-item.active .accordion-header {
  border-bottom: 1px solid var(--border-color);
  color: var(--primary-color);
}

.accordion-item.active .accordion-header::after {
  content: '-';
}

.accordion-content {
  padding: 25px;
  display: none;
  background-color: #fff;
  line-height: 1.8;
}

/* Grid of Showrooms / Floor plans */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 178, 86, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  padding: 20px;
  text-align: center;
  color: #fff;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.gallery-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* Amenities Layout */
.amenities-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.amenity-card {
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.amenity-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.amenity-card-body {
  padding: 25px;
}

.amenity-card-body h3 {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.amenity-card-body p {
  color: #666;
  line-height: 1.6;
  text-align: justify;
}

/* Contact page layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-panel {
  background-color: #fff;
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 4px;
}

.contact-info-panel h3 {
  color: var(--secondary-color);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.contact-detail-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-detail-item .icon {
  width: 40px;
  height: 40px;
  background-color: #ecf6e7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-detail-item .icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-color);
}

.contact-detail-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.contact-detail-item p {
  color: #666;
  font-size: 14px;
}

.contact-form-panel {
  background-color: #fff;
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 4px;
}

.contact-form-panel h3 {
  color: var(--primary-color);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}

.contact-form-panel .form-group {
  flex-direction: column;
  align-items: flex-start;
}

.contact-form-panel .form-group label {
  width: 100%;
  margin-bottom: 8px;
}

.contact-form-panel .form-control {
  width: 100%;
}

.contact-form-panel textarea.form-control {
  height: 120px;
  resize: vertical;
}

.contact-form-panel .btn-submit-form {
  width: 100%;
  border-radius: 4px;
}

/* Map area */
.contact-map {
  margin-top: 50px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Mobile responsive menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 10001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

@media (max-width: 1250px) {
  .navbar-nav > li {
    padding: 0 8px;
  }
  .navbar-nav > li > a {
    font-size: 13px;
  }
  .page-header a.logo {
    width: 250px;
  }
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  body {
    padding-top: 70px;
  }
  
  .page-header {
    height: 70px;
  }
  
  .page-header.sticky {
    height: 70px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .navbar-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar-nav.active {
    left: 0;
  }
  
  .navbar-nav > li {
    width: 100%;
    height: auto;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    align-items: flex-start;
  }
  
  .navbar-nav > li:hover {
    background-color: transparent;
  }
  
  .navbar-nav > li > a {
    color: var(--secondary-color);
    padding: 10px 0;
    width: 100%;
    height: auto;
  }
  
  .navbar-nav > li:hover > a,
  .navbar-nav > li.active > a {
    color: var(--primary-color);
    background: none;
  }
  
  .navbar-nav .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
    opacity: 1;
    transform: none;
    width: 100%;
    padding-left: 20px;
    background-color: #fafafa;
  }
  
  .navbar-nav li.dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .language {
    margin-left: 0;
    padding: 20px 0;
    width: 100%;
    justify-content: center;
    border-top: 1px solid var(--border-color);
  }
  
  /* Home Grid mobile */
  .row {
    flex-direction: column;
  }
  
  .col-md-6, .col-md-4, .col-md-3, .col-lg-8, .col-lg-4 {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .box-home .full-right, .box-home .full-left {
    position: static;
    margin-top: 30px;
  }
  
  .box-home-2 .row, .box-home-4 .row {
    flex-direction: column-reverse;
  }
  
  /* Form mobile */
  .register-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .form-group label {
    width: 100%;
    margin-bottom: 8px;
  }
  
  .form-control {
    width: 100%;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-submit-form, .btn-reset-form {
    width: 100%;
  }
  
  /* Footer mobile */
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-block.hotline-block {
    justify-content: center;
    width: 100%;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Pages layout mobile */
  .about-intro-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-feature-item {
    font-size: 14px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  
  .amenities-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-header a.logo {
    width: 200px;
  }
  
  .bt-dk {
    font-size: 16px;
  }
  
  .hotline-box {
    padding: 10px 20px;
  }
  
  .hotline-box strong {
    font-size: 16px;
  }
  
  .gallery-item img {
    height: 180px;
  }
}
