/* Global Overflow Prevention */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

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

/* Appearance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.fade-in-up {
    animation-name: fadeInUp;
}

.fade-in {
    animation-name: fadeIn;
}

.slide-in-left {
    animation-name: slideInLeft;
}

.slide-in-right {
    animation-name: slideInRight;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 50px;
    transition: all 0.3s ease;
    max-width: 100%;
    overflow-x: hidden;
}

.site-header.scrolled {
    background-color: rgba(16, 21, 35, 0.85);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    gap: 0;
}

.header-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding-top: 20px;
    transition: all 0.3s ease;
}

.site-header.scrolled .header-left {
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.site-header.scrolled .header-logo img {
    height: 35px;
}

.header-divider {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    background: #FDD829;
    height: 80%;
    top: 0;
}

.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
    padding-top: 20px;
    transition: all 0.3s ease;
}

.site-header.scrolled .header-right {
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    transition: all 0.3s ease;
}

.site-header.scrolled .header-controls {
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.menu-toggle {
    background: transparent;
    border: none;
    border-bottom: 1px solid white;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled .menu-toggle {
    border-bottom: none;
    padding: 5px 0;
}

.menu-text {
    letter-spacing: 1px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 25px;
    order: -1;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #FDD829;
    transition: all 0.3s ease;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled .language-switcher {
    padding: 5px 0;
}

.language-switcher::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('../assets/img/lang.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: white;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-size: 12px;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
    position: relative;
}

.lang-btn:first-of-type::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: white;
}

.lang-btn.active {
    color: #FDD829;
    font-weight: 700;
}

.lang-btn:hover {
    color: #FDD829;
}

/* Off-Canvas Menu */
.off-canvas-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #101523;
    z-index: 1100;
    transition: right 0.4s ease;
    padding: 60px 40px;
}

.off-canvas-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    margin-bottom: 30px;
}

.menu-items a {
    color: white;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-items a:hover {
    color: #FDD829;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    position: relative;
    border-bottom:#FDD829 5px solid;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/img/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 50px;
    overflow: hidden;
    max-width: 100%;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 1600px;
    height: 90%;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    gap: 30px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo img {
    width: 95px;
    height: 32px;
    opacity: 1;
}

.hero-title {
    font-family: "poppins", sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 1.5em;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
    color: white;
}

.hero-subtitle {
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
    color: white;
}

.hero-button {
    position: absolute;
    bottom: 50px;
    transform: translateX(-50%);
    display: inline-block;
    background: #FDD829;
    color: #101523;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 0%;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    border: 2px solid transparent;
    background-image: linear-gradient(#FDD829, #FDD829), linear-gradient(90deg, #FFFFFF 0%, #101523 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    z-index: 100;
}

.hero-button:hover {
    background: #101523;
    color: #FDD829;
    border-color: #FDD829;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.35);
}

/* Introduction Section */
.introduction-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/img/introduction-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 50px 0 50px;
    overflow: hidden;
    max-width: 100%;
}

.introduction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.introduction-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    margin-bottom: -44px;
}

.intro-title {
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    text-align: center;
    color: white;
    margin: 0 0 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.intro-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.intro-icon {
    margin-bottom: 30px;
}

.intro-icon img {
    width: 60px;
    height: 60px;
}

.intro-item-title {
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: white;
    margin: 0 0 40px 0;
}

.intro-line {
    width: 1px;
    height: 100px;
    background: #FDD829;
    margin-top: auto;
}

/* Slider Section */
.slider-section {
    position: relative;
    width: 100%;
    background: #000;
    max-width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: #FDD829;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #FFED4E;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 50px;
}

.slider-arrow-right {
    right: 50px;
}

.slider-arrow img {
    width: 24px;
    height: 24px;
}

.slider-pagination {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
}

.pagination-bullet.active {
    background: #FDD829;
}

/* Accommodation Section */
.accommodation-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    border-bottom: #FDD829 5px solid;
}

.accommodation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.accommodation-left {
    background: #6885A6;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.accommodation-left > * {
    max-width: 800px;
    width: 100%;
}

.accommodation-title {
    font-family: "poppins", sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 1.5em;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 0 40px 0;
}

.accommodation-text {
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 0 30px 0;
    max-width:70%;
}

.accommodation-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 30px;
    margin-top: 60px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.icon-item img {
    width: 30px;
    height: 30px;
}

.icon-item p {
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    margin: 0;
}

.accommodation-right {
    background: linear-gradient(180deg, #859db9 10%, #86a6cc 100%);
    position: relative;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.accommodation-right > * {
    max-width: 800px;
    width: 100%;
}

.accommodation-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/stripe-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    pointer-events: none;
}

.siteplan-image-container {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    z-index: 2;
}

.siteplan-image {
    width: 100%;
    height: auto;
    display: block;
}

.hotspot {
    position: absolute;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hotspot img {
    width: 100%;
    height: 100%;
}

.hotspot:hover {
    transform: scale(1.2);
}

/* White line extending upward from center on hover */
.hotspot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    transform-origin: bottom;
    width: 1px;
    height: 0;
    background: white;
    transition: height 0.4s ease;
    z-index: 50;
}

.hotspot:hover::before {
    height: 80px;
}

/* Tooltip with white border and semi-transparent white text */
.hotspot::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-100% - 80px));
    background: rgba(70, 80, 100, 0.98);
    color: rgba(255, 255, 255, 0.5);
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid white;
    font-family: "poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease 0.2s;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hotspot:hover::after {
    opacity: 1;
}

.data-table {
    position: relative;
    z-index: 2;
    background: transparent;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: transparent;
    border-bottom: 1px solid white;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid white;
}

.table-row:last-child {
    border-bottom: none;
}

.table-cell {
    padding: 10px;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 0%;
    text-align: right;
    color: white;
}

.table-cell:first-child {
    text-align: left;
}

.header-cell {
    font-weight: 700;
    font-size: 14px;
   
}

.header-cell strong {
    color: #FDD829;
}

.header-cell.yellow {
    color: rgba(253, 216, 41, 1);
}

.total-row {
    background: transparent;
    border-bottom: 2px solid rgba(253, 216, 41, 1);
}

.total-row .table-cell {
    font-weight: 700;
}

.yellow-text {
    color: rgba(253, 216, 41, 1);
}

/* Location Section */
.location-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.location-map {
    position: relative;
    min-height: 100vh;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.location-content {
    background: linear-gradient(133deg, rgba(16, 21, 35, 0.5) 0%, rgba(16, 21, 35, 0.3) 100%);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.location-content > * {
    max-width: 800px;
    width: 100%;
}

.location-title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 1.5em;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 0 40px 0;
    color: white;
}

.location-text {
    margin-bottom: 60px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.location-text p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 0%;
    text-align: center;
    margin: 0 0 20px 0;
    color: white;
}

.location-text p:last-child {
    margin-bottom: 0;
}

.location-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 20px;
    position: relative;
}

.location-icons::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #FDD829;
    transform: translateX(-0.5px);
}

.location-icon-item:nth-child(1)::after,
.location-icon-item:nth-child(2)::after {
    content: '';
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 0;
    height: 1px;
    background: #FDD829;
}

.location-icon-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 40px;
    position: relative;
}

.location-icon-item img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.location-icon-item p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4em;
    margin: 0;
    color: white;
    text-align: left;
}

/* Site Plan Section */
.siteplan-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url('../assets/img/siteplan-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 50px 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: #ffffff solid 5px;
}

.siteplan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.siteplan-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.siteplan-title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: white;
    margin: 0 0 60px 0;
}

.siteplan-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: -60px;
    position: relative;
    z-index: 20;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.siteplan-tab {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.siteplan-tab img {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.siteplan-map-container {
    position: relative;
    z-index: 10;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 0;
}

.siteplan-map {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer Section */
.site-footer {
    position: relative;
    width: 100%;
    background: #101523;
    padding: 80px 50px;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-image: url('../assets/img/footer-overlay.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
    transition: left 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer.footer-visible::before {
    left: 0;
}

.footer-content {
    position: relative;
    z-index: 10;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-title {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 34px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: white;
    margin: 0 0 40px 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #FDD829;
    margin: 40px 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.footer-divider-bottom {
    height: 1px;
    background: #FDD829;
    width: 100%;
}

.agent-logo-section {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.agent-logo {
    width: 150px;
    height: auto;
    flex-shrink: 0;
}

.agent-contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    flex: 1;
}

.agent-contact p {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
    color: white;
    margin: 0 0 8px 0;
}

.agent-name {
    font-weight: 500 !important;
}

.agent-email,
.agent-phone {
    font-size: 12px !important;
}

.download-brochure-btn {
    display: inline-block;
    background: #FDD829;
    color: #101523;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5em;
    letter-spacing: 0%;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    border: 2px solid transparent;
    background-image: linear-gradient(#FDD829, #FDD829), linear-gradient(90deg, #FFFFFF 0%, #101523 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.download-brochure-btn:hover {
    background: #101523;
    color: #FDD829;
    border-color: #FDD829;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.35);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}

.mirastar-logo {
    width: 150px;
    height: auto;
}

.designed-by {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5em;
    color: white;
    margin: 0;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }

    .header-divider {
        margin: 0 20px;
        height: 30px;
    }

    .header-logo img {
        height: 35px;
    }

    .menu-toggle {
        font-size: 11px;
        gap: 8px;
        padding: 8px 0;
    }

    .hamburger {
        width: 20px;
        gap: 3px;
    }

    .off-canvas-menu {
        width: 300px;
        right: -300px;
        padding: 40px 30px;
    }

    .hero-section {
        padding: 30px 20px;
        background-attachment: scroll;
    }

    .hero-content {
        gap: 20px;
        top: 80px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.4em;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-logo img {
        width: 80px;
        height: auto;
    }

    .hero-button {
        bottom: 30px;
        padding: 15px 35px;
        font-size: 13px;
        width: calc(100% - 40px);
        max-width: 100%;
        text-align: center;
    }

    .menu-items a {
        font-size: 20px;
    }

    .introduction-section {
        padding: 80px 30px 0 30px;
        background-attachment: scroll;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-title {
        font-size: 26px;
        margin-bottom: 50px;
        line-height: 1.3;
    }

    .intro-item-title {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .intro-line {
        display: none;
    }

    .introduction-content {
        margin-bottom: 1px;
    }

    .slider-arrow {
        width: 50px;
        height: 50px;
    }

    .slider-arrow-left {
        left: 15px;
    }

    .slider-arrow-right {
        right: 15px;
    }

    .slider-arrow img {
        width: 16px;
        height: 16px;
    }

    .slider-pagination {
        bottom: 25px;
        gap: 12px;
    }

    .pagination-bullet {
        width: 11px;
        height: 11px;
    }

    .accommodation-container {
        grid-template-columns: 1fr;
    }

    .accommodation-left {
        padding: 50px 25px;
    }

    .accommodation-title {
        font-size: 26px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .accommodation-text {
        font-size: 13px;
        margin-bottom: 25px;
        max-width: 100%;
    }

    .accommodation-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 20px;
        margin-top: 50px;
    }

    .accommodation-right {
        padding: 40px 20px;
    }

    .hotspot {
        width: 40px;
        height: 40px;
    }

    .hotspot::before {
        width: 1px;
    }

    .hotspot:hover::before {
        height: 60px;
    }

    .hotspot::after {
        font-size: 11px;
        padding: 12px 16px;
        transform: translate(-50%, calc(-100% - 60px));
    }

    .table-cell {
        padding: 12px 8px;
        font-size: 13px;
    }

    .header-cell {
        font-size: 13px;
    }

    .location-container {
        grid-template-columns: 1fr;
    }

    .location-map {
        min-height: 400px;
    }

    .location-content {
        padding: 50px 25px;
    }

    .location-title {
        font-size: 26px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .location-text {
        margin-bottom: 50px;
    }

    .location-text p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .location-icons {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .location-icons::before {
        display: none;
    }

    .location-icons::after {
        display: none;
    }

    .location-icon-item {
        padding: 25px 15px;
        border-bottom: 1px solid #FDD829;
    }

    .location-icon-item:nth-child(1)::after,
    .location-icon-item:nth-child(2)::after {
        display: none;
    }

    .location-icon-item:last-child {
        border-bottom: none;
    }

    .location-icon-item img {
        width: 50px;
        height: 50px;
    }

    .location-icon-item p {
        font-size: 12px;
    }

    .siteplan-section {
        padding: 60px 20px 0 20px;
        background-attachment: scroll;
    }

    .siteplan-title {
        font-size: 26px;
        margin-bottom: 40px;
        line-height: 1.3;
    }

    .siteplan-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .siteplan-section {
        min-height: auto;
        padding: 60px 20px;
    }

    .siteplan-map {
        transform: rotate(90deg);
        transform-origin: center center;
        width: auto;
        height: 85vw;
        max-width: none;
        max-height: none;
    }

    .siteplan-map-container {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-x: auto;
        overflow-y: visible;
        min-height: auto;
        height: auto;
        padding: 60px 0;
        margin: 0;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .site-footer {
        padding: 50px 25px;
    }

    .footer-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .footer-divider {
        margin: 30px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .agent-logo-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .agent-contacts {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .agent-contact p {
        font-size: 13px;
    }

    .agent-email,
    .agent-phone {
        font-size: 11px !important;
    }

    .download-brochure-btn {
        padding: 15px 35px;
        font-size: 13px;
    }

    .footer-right {
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        margin-top: 30px;
    }

    .designed-by {
        text-align: center;
        font-size: 11px;
    }

    .mirastar-logo {
        width: 130px;
    }

    .agent-logo {
        width: 130px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 12px 15px;
    }

    .header-controls {
        flex-direction: column;
        align-items: flex-end;
        gap: 6px;
    }

    .header-logo img {
        height: 30px;
    }

    .menu-toggle {
        font-size: 10px;
        gap: 6px;
        padding: 6px 0;
    }

    .lang-btn {
        font-size: 11px;
        padding: 4px 8px;
    }

    .hero-section {
        padding: 20px 15px;
    }

    .hero-content {
        gap: 15px;
        top: 70px;
    }

    .hero-title {
        font-size: 18px;
        line-height: 1.4em;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-logo img {
        width: 70px;
        height: auto;
    }

    .hero-button {
        bottom: 20px;
        padding: 12px 28px;
        font-size: 12px;
    }

    .introduction-section {
        padding: 60px 20px 0 20px;
    }

    .intro-title {
        font-size: 20px;
        margin-bottom: 35px;
        line-height: 1.3;
    }

    .intro-item-title {
        font-size: 13px;
        margin-bottom: 25px;
    }

    .intro-icon img {
        width: 50px;
        height: 50px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }

    .slider-arrow img {
        width: 14px;
        height: 14px;
    }

    .slider-pagination {
        bottom: 20px;
        gap: 10px;
    }

    .pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .accommodation-left {
        padding: 40px 20px;
    }

    .accommodation-title {
        font-size: 20px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .accommodation-text {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .accommodation-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
        margin-top: 40px;
    }

    .icon-item img {
        width: 35px;
        height: 35px;
    }

    .icon-item p {
        font-size: 10px;
        line-height: 1.3;
    }

    .accommodation-right {
        padding: 30px 15px;
    }

    .hotspot {
        width: 35px;
        height: 35px;
    }

    .hotspot:hover::before {
        height: 50px;
    }

    .hotspot::after {
        font-size: 10px;
        padding: 10px 14px;
        transform: translate(-50%, calc(-100% - 50px));
        border-width: 1px;
    }

    .table-cell {
        padding: 10px 6px;
        font-size: 11px;
    }

    .header-cell {
        font-size: 11px;
    }

    .location-content {
        padding: 40px 20px;
    }

    .location-title {
        font-size: 20px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .location-text {
        margin-bottom: 40px;
        max-width: 100%;
    }

    .location-text p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .location-icon-item {
        padding: 20px 12px;
        gap: 15px;
    }

    .location-icon-item img {
        width: 45px;
        height: 45px;
    }

    .location-icon-item p {
        font-size: 11px;
        line-height: 1.3;
    }

    .siteplan-section {
        padding: 50px 15px 0 15px;
    }

    .siteplan-title {
        font-size: 20px;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .siteplan-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }

    .siteplan-tab img {
        max-width: 200px;
    }

    .siteplan-section {
        min-height: auto;
        padding: 50px 15px;
    }

    .siteplan-map {
        transform: rotate(90deg);
        transform-origin: center center;
        width: auto;
        height: 85vw;
        max-width: none;
        max-height: none;
    }

    .siteplan-map-container {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-x: auto;
        overflow-y: visible;
        min-height: auto;
        height: auto;
        padding: 60px 0;
        margin: 0;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

    .site-footer {
        padding: 40px 15px;
    }

    .footer-title {
        font-size: 20px;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .footer-divider {
        margin: 25px 0;
    }

    .footer-main {
        gap: 35px;
    }

    .agent-logo-section {
        gap: 25px;
    }

    .agent-logo {
        width: 120px;
    }

    .agent-contacts {
        gap: 20px;
    }

    .agent-contact p {
        font-size: 12px !important;
        margin-bottom: 6px;
    }

    .agent-email,
    .agent-phone {
        font-size: 10px !important;
    }

    .download-brochure-btn {
        padding: 12px 28px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }

    .mirastar-logo {
        width: 110px;
    }

    .footer-bottom {
        gap: 20px;
        margin-top: 25px;
    }

    .designed-by {
        font-size: 10px;
        line-height: 1.4;
    }
}
