/*
Theme Name: Vinhome Green City
Theme URI: https://vinhomegreen-city.com.vn/
Description: Theme bất động sản dự án Vinhome Green City - Thiết kế hiện đại, responsive và tối ưu SEO
Author: Developer
Version: 1.0
License: GPL v2 or later
Text Domain: vinhome-green-city
*/

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.slide_vegas img{
    width: 100%;
}

/* Custom Page Content */
.custom-page-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.custom-page-content * {
    max-width: 100%;
    box-sizing: border-box;
}

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

/* Header Styles - Fixed Sticky Menu */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 50px;
}

.site-branding {
    position: absolute;
    left: 20px;
    z-index: 10;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo a {
    display: block;
    line-height: 0;
}

.logo-img {
    max-height: 55px;
    width: auto;
    height: auto;
    transition: all 0.3s ease;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
}

.site-logo:hover .logo-img {
    transform: scale(1.03) translateZ(0);
    filter: contrast(1.15) brightness(1.1) saturate(1.15);
}

/* Logo container optimization */
.site-logo {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.site-logo a {
    display: block;
    line-height: 0;
}

.site-logo picture {
    display: block;
    line-height: 0;
}

/* Retina display optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        transform: translateZ(0) scale(1);
    }
}

/* WebP support detection */
.webp .logo-img {
    filter: contrast(1.15) brightness(1.08) saturate(1.12);
}

.no-webp .logo-img {
    filter: contrast(1.1) brightness(1.05) saturate(1.1);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .site-logo {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    }

    .logo-img {
        filter: contrast(1.15) brightness(1.1) saturate(1.15);
    }
}

/* Logo loading states */
.logo-img {
    opacity: 0;
    animation: logoFadeIn 0.6s ease-out 0.2s forwards;
}

.logo-img.loaded {
    opacity: 1;
    animation: none;
}

.logo-img.retina {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Logo responsive improvements */
@media (max-width: 768px) {
    .site-logo {
        padding: 6px 10px;
        border-radius: 8px;
    }

    .logo-img {
        max-height: 42px;
        filter: contrast(1.12) brightness(1.06) saturate(1.12);
    }
}

@media (max-width: 480px) {
    .site-logo {
        padding: 5px 8px;
        border-radius: 6px;
    }

    .logo-img {
        max-height: 38px;
        filter: contrast(1.15) brightness(1.08) saturate(1.15);
    }
}

@media (max-width: 360px) {
    .site-logo {
        padding: 4px 6px;
    }

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

/* Logo fallback and error handling */
.logo-img {
    display: block;
    max-width: 100%;
}

.logo-img:not([src]),
.logo-img[src=""] {
    display: none;
}

.logo-img:not([src]) + ::after,
.logo-img[src=""] + ::after {
    content: "VINHOME GREEN CITY";
    display: block;
    background: #2582be;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    min-width: 140px;
    letter-spacing: 0.5px;
}

/* Logo error state */
.site-logo.error::after {
    content: "VINHOME GREEN CITY";
    display: block;
    background: #2582be;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    min-width: 140px;
    letter-spacing: 0.5px;
}

.site-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2582be;
}

.site-title a {
    text-decoration: none;
    color: inherit;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 40px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: #2582be;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2582be;
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

.header-contact {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
}

.hotline {
    background: #2582be;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hotline:hover {
    background: #1a6ba3;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 130, 190, 0.3);
}

/* Hero Section - Vegas Style */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide_vegas {
    position: relative;
    background: linear-gradient(135deg, #2582be 0%, #1a6ba3 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Static banner - no animations */
.slide_vegas {
    background-attachment: fixed;
}

/* Fallback for mobile (no fixed attachment) */
@media (max-width: 768px) {
    .slide_vegas {
        background-attachment: scroll;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.hero-text {
    text-align: center;
    color: #fff;
}

/* Hero CTA button removed - clean hero section */

/* Registration Form - Floating Style */
.registration-form-floating {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 9998;
    width: 350px;
    border: 2px solid #2582be;
}

.registration-form-floating h3 {
    color: #2582be;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2582be;
    box-shadow: 0 0 8px rgba(37, 130, 190, 0.3);
}

.submit-btn {
    width: 100%;
    background: #2582be;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.submit-btn:hover {
    background: #1a6ba3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 130, 190, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(37, 130, 190, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section:nth-child(even) {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.2rem;
    color: #2582be;
    font-weight: bold;
    margin-bottom: 20px;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

.section-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

/* Introduction Section Specific */
.intro-text {
    margin-bottom: 40px;
}

.project-overview-table {
    margin-top: 40px;
}

.project-overview-table h3 {
    color: #2582be;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

.overview-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.overview-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #eee;
    min-height: 60px;
}

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

.overview-label {
    background: #f8f9fa;
    padding: 20px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    border-right: 1px solid #eee;
}

.overview-value {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    text-align: left;
    line-height: 1.6;
}

.overview-value strong {
    color: #2582be;
}

.overview-value ul {
    margin: 10px 0;
    padding-left: 20px;
}

.overview-value ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.overview-value ul li strong {
    color: #2582be;
    font-weight: 600;
}

.overview-value p {
    margin: 8px 0;
    line-height: 1.6;
}

/* Tab Content Sections */
.tab-content-section {
    margin-top: 40px;
}

.title_content {
    text-align: center;
    margin-bottom: 20px;
}

.title_content span {
    background: #edf1f4;
    color: #333;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.title_content span.active {
    background: #347ab6;
    color: #fff;
}

.load_content1,
.load_content4,
.load_content7,
.load_content13,
.load_content16,
.load_content19 {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

/* Amenities Section Specific */
.amenities-intro {
    margin-bottom: 30px;
    text-align: justify;
}

.amenities-highlights,
.amenities-entertainment {
    margin-bottom: 40px;
}

.amenities-highlights h3,
.amenities-entertainment h3 {
    color: #2582be;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
}

.amenities-list,
.entertainment-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.amenity-item,
.entertainment-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: left;
}

.amenity-item h4,
.entertainment-item h4 {
    color: #2582be;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.amenity-item p,
.entertainment-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Floor Plans Section Specific */
.floor-plans-intro {
    text-align: justify;
    margin-bottom: 30px;
}

.floor-plans-intro h3,
.floor-plans-intro h4 {
    color: #2582be;
    margin: 20px 0 15px;
    text-align: center;
}

.product-types {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.product-types h4 {
    color: #2582be;
    margin-bottom: 15px;
}

.product-types ul {
    list-style: none;
    padding: 0;
}

.product-types li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.product-types li:last-child {
    border-bottom: none;
}

.design-samples {
    margin: 40px 0;
}

.design-tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.design-tabs-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.design-tab {
    background: #f8f9fa;
    border: 2px solid #ddd;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
}

.design-tab.active,
.design-tab:hover {
    background: #2582be;
    color: #fff;
    border-color: #2582be;
}

.design-content {
    position: relative;
}

.design-pane {
    display: none;
    text-align: center;
}

.design-pane.active {
    display: block;
}

/* Pricing Section Specific */
.pricing-intro {
    margin-bottom: 30px;
    text-align: justify;
}

.pricing-details {
    margin-bottom: 40px;
}

.pricing-category {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.pricing-category h3 {
    color: #2582be;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.pricing-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-category li {
    padding: 8px 0;
    line-height: 1.6;
    color: #333;
}

.pricing-category strong {
    color: #2582be;
    font-weight: bold;
}

/* Reasons Section Specific */
.reasons-gallery {
    margin-bottom: 40px;
}

/* Reasons Slider */
.reasons-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

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

.slide.active {
    opacity: 1;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

/* Navigation arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav svg {
    color: #2582be;
}

/* Dots indicator */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(37, 130, 190, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #2582be;
    transform: scale(1.2);
}

/* Responsive for reasons slider */
@media (max-width: 768px) {
    .reasons-slider {
        max-width: 95%;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .slider-nav {
        width: 35px;
        height: 35px;
    }

    .slider-nav.prev {
        left: 5px;
    }

    .slider-nav.next {
        right: 5px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .slider-dots {
        gap: 8px;
        margin-top: 15px;
    }
}

.reasons-content h3 {
    color: #2582be;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.reasons-list {
    margin-bottom: 30px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.reason-number {
    background: #2582be;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.reason-text {
    flex: 1;
    line-height: 1.6;
    color: #333;
}

.reason-text strong {
    color: #2582be;
}

.disclaimer {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2582be;
}

.disclaimer p {
    margin: 0;
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.news-thumbnail {
    overflow: hidden;
    height: 200px;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-thumbnail img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    margin-bottom: 15px;
}

.news-content h3 a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: #2582be;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Info Bar */
.contact-info-bar {
    background: #2582be;
    padding: 15px 0;
    color: #fff;
}

.contact-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.hotline-number {
    font-size: 1.2rem;
    font-weight: bold;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.8;
    color: #fff;
}

.register-btn {
    background: #fff;
    color: #2582be;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #f8f9fa;
    color: #1a6ba3;
    transform: translateY(-2px);
}

/* Online Statistics Section */
.online-stats-section {
    background: linear-gradient(135deg, #2582be 0%, #1a6ba3 100%);
    color: #fff;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.online-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.online-stats-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stats-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stats-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.stats-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stats-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}

.stats-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animation for stats numbers */
.stats-number {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Placeholders */
.load_content1 img,
.load_content4 img,
.load_content7 img,
.load_content13 img,
.load_content16 img,
.load_content19 img,
.news-thumbnail img,
.design-pane img {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    display: block;
    margin: 0 auto;
}

/* Placeholder text for missing images */
.load_content1:empty::after,
.load_content4:empty::after,
.load_content7:empty::after,
.load_content13:empty::after,
.load_content16:empty::after,
.load_content19:empty::after {
    content: 'Hình ảnh sẽ được cập nhật sớm';
    display: block;
    padding: 60px 20px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 10px;
}

.news-thumbnail:empty::after {
    content: 'News Image';
    display: block;
    height: 200px;
    line-height: 200px;
    text-align: center;
    color: #6c757d;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
}

.design-pane:empty::after {
    content: 'Design Sample';
    display: block;
    height: 300px;
    line-height: 300px;
    text-align: center;
    color: #6c757d;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    border-radius: 10px;
}

/* Image loading states */
img {
    transition: opacity 0.3s ease;
}

img:not([src]),
img[src=""],
img[src*="placeholder"] {
    opacity: 0.7;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
}

/* Hover effects for images */
.news-thumbnail img:hover,
.design-pane img:hover,
.load_content1 img:hover,
.load_content4 img:hover,
.load_content7 img:hover,
.load_content13 img:hover,
.load_content16 img:hover,
.load_content19 img:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Enhanced Content Responsive Design */

/* Tablet Portrait - Content Sections */
@media (max-width: 768px) {
    /* Overview table responsive */
    .overview-table {
        overflow-x: auto;
    }

    .overview-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .overview-label {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px;
        font-weight: bold;
        background: #f8f9fa;
    }

    .overview-value {
        padding: 15px;
        background: #fff;
    }

    /* Amenities responsive */
    .amenities-list,
    .entertainment-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .amenity-item,
    .entertainment-item {
        padding: 15px;
    }

    /* Design tabs responsive */
    .design-tabs {
        gap: 10px;
    }

    .design-tabs-row {
        gap: 15px;
    }

    .design-tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Pricing responsive */
    .pricing-category {
        padding: 20px;
        margin-bottom: 15px;
    }

    /* Reasons responsive */
    .reason-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .reason-number {
        margin: 0 auto 15px;
    }

    /* News responsive */
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    /* Contact bar responsive */
    .contact-info-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    /* Online stats tablet */
    .online-stats-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stats-item {
        padding: 18px;
    }

    /* Tab content adjustments */
    .tab-content-section {
        margin-top: 30px;
    }

    .title_content span {
        padding: 10px 20px;
        font-size: 14px;
    }

    .load_content1,
    .load_content4,
    .load_content7,
    .load_content13,
    .load_content16,
    .load_content19 {
        padding: 20px;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    /* News grid mobile */
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Form adjustments */
    .registration-form-floating h3 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .form-group input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 13px;
    }

    /* Design tabs mobile */
    .design-tabs {
        gap: 8px;
    }

    .design-tabs-row {
        gap: 8px;
        flex-wrap: wrap;
    }

    .design-tab {
        padding: 6px 12px;
        font-size: 11px;
        min-width: auto;
        text-align: center;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    /* Section spacing */
    .section-content {
        padding: 0 10px;
    }

    /* Overview table mobile */
    .overview-label,
    .overview-value {
        padding: 12px;
        font-size: 14px;
    }

    .overview-value ul {
        padding-left: 15px;
    }

    .overview-value ul li {
        margin-bottom: 6px;
        font-size: 13px;
    }

    /* Amenities mobile */
    .amenity-item h4,
    .entertainment-item h4 {
        font-size: 1rem;
    }

    .amenity-item,
    .entertainment-item {
        padding: 12px;
    }

    /* Pricing mobile */
    .pricing-category {
        padding: 15px;
    }

    .pricing-category h3 {
        font-size: 1.1rem;
    }

    /* Reasons mobile */
    .reason-item {
        padding: 15px;
    }

    .reason-text {
        font-size: 14px;
    }

    /* News mobile */
    .news-content {
        padding: 20px;
    }

    .news-content h3 a {
        font-size: 1.1rem;
    }

    /* Contact info mobile */
    .hotline-number {
        font-size: 1.1rem;
    }

    .register-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Online stats mobile */
    .online-stats-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-item {
        padding: 15px;
        gap: 12px;
    }

    .stats-icon {
        width: 40px;
        height: 40px;
    }

    .stats-number {
        font-size: 1.3rem;
    }

    .stats-label {
        font-size: 0.8rem;
    }
}

/* Enhanced Responsive Design */

/* Large Desktop */
@media (max-width: 1400px) {
    .header-content {
        max-width: 1200px;
        gap: 40px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .header-content {
        gap: 30px;
        padding: 15px 20px;
    }

    .main-navigation ul {
        gap: 25px;
    }

    .main-navigation a {
        font-size: 13px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .header-content {
        gap: 20px;
        padding: 12px 15px;
    }

    .main-navigation ul {
        gap: 20px;
    }

    .main-navigation a {
        font-size: 13px;
        padding: 6px 12px;
    }

    .hotline {
        padding: 8px 16px;
        font-size: 12px;
    }

    .logo-img {
        max-height: 45px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 0px !important;
        z-index: 10001;
    }

    .header-content {
        padding: 10px 15px;
        justify-content: space-between;
        gap: 15px;
    }

    .site-branding {
        position: static;
        flex: 0 0 auto;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.4s ease;
        border-top: 1px solid #eee;
        z-index: 10000;
    }

    .main-navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-navigation ul {
        flex-direction: column;
        padding: 0;
        gap: 0;
    }

    .main-navigation li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-navigation li:last-child {
        border-bottom: none;
    }

    .main-navigation a {
        padding: 18px 25px;
        text-align: left;
        width: 100%;
        display: block;
        border-radius: 0;
        font-size: 15px;
        font-weight: 500;
    }

    .main-navigation a:hover,
    .main-navigation a.active {
        background: #f8f9fa;
        color: #2582be;
    }

    .main-navigation a::after {
        display: none;
    }

    .header-contact {
        position: static;
        flex: 0 0 auto;
    }

    .hotline {
        padding: 8px 15px;
        font-size: 12px;
        border-radius: 15px;
    }

    .logo-img {
        max-height: 42px;
    }

    /* Hero section adjustments */
    .registration-form-floating {
        position: static;
        transform: none;
        margin: 30px auto 0;
        width: 95%;
        max-width: 400px;
        right: auto;
        top: auto;
    }

    .hero-content {
        padding: 0 20px;
    }

    /* CTA text styles removed */

    /* Content sections */
    .section-title {
        font-size: 1.8rem;
    }

    .content-section {
        padding: 40px 0;
    }

    .container {
        padding: 0 15px;
    }
}

/* Mobile Landscape */
@media (max-width: 640px) {
    .header-content {
        padding: 8px 12px;
    }

    .mobile-menu-toggle {
        right: 60px;
    }

    .hotline {
        padding: 6px 12px;
        font-size: 11px;
    }

    .logo-img {
        max-height: 38px;
    }

    .main-navigation a {
        padding: 16px 20px;
        font-size: 14px;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .header-content {
        padding: 8px 10px;
        flex-wrap: nowrap;
    }

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

    .mobile-menu-toggle {
        right: 50px;
        padding: 6px;
    }

    .hamburger-line {
        width: 20px;
        height: 2px;
    }

    .hotline {
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 12px;
    }

    .main-navigation a {
        padding: 15px 18px;
        font-size: 14px;
    }

    /* Hero adjustments - CTA button removed */

    .registration-form-floating {
        width: 98%;
        margin: 20px auto 0;
        padding: 20px;
    }

    .registration-form-floating h3 {
        font-size: 1rem;
    }

    /* Content adjustments */
    .section-title {
        font-size: 1.6rem;
    }

    .content-section {
        padding: 30px 0;
    }

    .container {
        padding: 0 10px;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .header-content {
        padding: 6px 8px;
    }

    .logo-img {
        max-height: 32px;
    }

    .mobile-menu-toggle {
        right: 45px;
        padding: 4px;
    }

    .hotline {
        padding: 5px 8px;
        font-size: 9px;
    }

    .main-navigation a {
        padding: 14px 15px;
        font-size: 13px;
    }

    .registration-form-floating {
        padding: 15px;
    }

    .section-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Additional Styles for New Components */

/* Project Overview Grid */
.project-overview {
    margin-top: 40px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.overview-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.overview-item h4 {
    color: #2582be;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.overview-item p {
    color: #666;
    line-height: 1.6;
}

/* Location Map */
.location-map {
    margin-top: 40px;
}

.map-placeholder {
    background: #f8f9fa;
    border: 2px dashed #ddd;
    padding: 100px 20px;
    text-align: center;
    border-radius: 10px;
    color: #666;
    font-size: 1.2rem;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amenity-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.amenity-item h4 {
    color: #2582be;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.amenity-item p {
    color: #666;
    line-height: 1.7;
}

/* Floor Plans Tabs */
.floor-plans-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #f8f9fa;
    border: 2px solid #ddd;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #2582be;
    color: #fff;
    border-color: #2582be;
}

.tab-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tab-pane {
    display: none;
    text-align: center;
}

.tab-pane.active {
    display: block;
}

.tab-pane h4 {
    color: #2582be;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-item {
    background: linear-gradient(135deg, #2582be 0%, #1a6ba3 100%);
    color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.pricing-item:hover::before {
    top: -60%;
    right: -60%;
}

.pricing-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.pricing-item .price {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.pricing-item p:last-child {
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.reason-item {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-3px);
}

.reason-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2582be, #1a6ba3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.reason-item h4 {
    color: #2582be;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.reason-item p {
    color: #666;
    line-height: 1.6;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.news-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.news-thumbnail {
    overflow: hidden;
    height: 200px;
}

.news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-thumbnail img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    margin-bottom: 15px;
}

.news-content h3 a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: #2582be;
}

.news-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #2582be;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1a6ba3;
    text-decoration: underline;
}

/* Footer Styles */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
}

.footer-section h3 {
    color: #2582be;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: bold;
}

.contact-info p {
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-info a {
    color: #2582be;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #2582be;
}

/* Footer Registration Form */
.footer-registration-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-registration-form input {
    padding: 12px;
    border: 1px solid #444;
    border-radius: 5px;
    background: #333;
    color: #fff;
    font-size: 14px;
}

.footer-registration-form input::placeholder {
    color: #999;
}

.footer-registration-form input:focus {
    outline: none;
    border-color: #2582be;
    background: #444;
}

.footer-submit-btn {
    width: 100%;
    background: #2582be;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-submit-btn:hover {
    background: #1a6ba3;
}

/* Footer Bottom */
.footer-bottom {
    background: #111;
    padding: 25px 0;
    border-top: 1px solid #333;
}

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

.footer-navigation ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.footer-navigation a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-navigation a:hover {
    color: #2582be;
}

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-contact a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.floating-phone {
    background: #25d366;
    color: #fff;
}

.floating-zalo {
    background: #0084ff;
    color: #fff;
}

.floating-register {
    background: #2582be;
    color: #fff;
}

.floating-contact a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: #2582be;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1a6ba3;
    transform: translateY(-2px);
}

/* Online Counter */
.online-counter {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    z-index: 999;
}

.online-counter p {
    margin: 0;
    line-height: 1.4;
}

.online-counter span {
    color: #2582be;
    font-weight: bold;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Header Scroll Effect - Always Visible */
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.site-header.scrolled .header-content {
    padding: 10px 20px;
}

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

/* Remove header hidden state - always show menu */
.site-header.header-hidden {
    transform: translateY(0);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .floating-contact {
        right: 15px;
        bottom: 80px;
    }

    .floating-contact a {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .main-navigation.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-navigation ul {
        flex-direction: column;
        padding: 20px;
    }

    .main-navigation li {
        margin: 10px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-navigation ul {
        justify-content: center;
    }

    .footer-registration-form .form-row {
        grid-template-columns: 1fr;
    }

    .amenities-grid,
    .pricing-grid,
    .reasons-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .online-counter {
        left: 10px;
        bottom: 10px;
        font-size: 11px;
        padding: 8px 12px;
    }

    .floating-contact {
        right: 10px;
        bottom: 60px;
    }
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    background: #28a745;
}

.notification-error {
    background: #dc3545;
}

.notification-info {
    background: #17a2b8;
}

/* Form Error Styles */
.form-group input.error,
.footer-registration-form input.error {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Animation Classes */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Header Hidden State */
.site-header.header-hidden {
    transform: translateY(-100%);
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover Effects */
.overview-item,
.amenity-item,
.news-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reason-item {
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.overview-item.animate-in,
.amenity-item.animate-in,
.reason-item.animate-in,
.news-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse Animation for CTA Buttons */
.hero-cta,
.hotline {
    position: relative;
    overflow: hidden;
}

.hero-cta::before,
.hotline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta:hover::before,
.hotline:hover::before {
    width: 300px;
    height: 300px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(37, 130, 190, 0.2);
    z-index: 9999;
}

.scroll-progress {
    height: 100%;
    background: linear-gradient(90deg, #2582be, #1a6ba3);
    width: 0%;
    transition: width 0.1s ease;
}

/* Print Styles */
@media print {
    .site-header,
    .floating-contact,
    .back-to-top,
    .online-counter,
    .registration-form {
        display: none !important;
    }

    .hero-section {
        height: auto;
        padding: 50px 0;
    }

    .hero-overlay {
        display: none;
    }

    .hero-content {
        color: #333;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .section-title {
        font-size: 18pt;
        page-break-after: avoid;
    }

    .content-section {
        page-break-inside: avoid;
        padding: 20px 0;
    }
}

/* Single Post & Page Styles */
.single-post,
.single-page {
    padding: 120px 0 80px;
}

.single-article,
.page-article {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.entry-header {
    margin-bottom: 30px;
    text-align: center;
}

.entry-title {
    font-size: 2.5rem;
    color: #2582be;
    margin-bottom: 20px;
    line-height: 1.3;
}

.entry-meta {
    color: #666;
    font-size: 14px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.entry-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-thumbnail {
    margin-bottom: 30px;
    text-align: center;
}

.entry-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #2582be;
    margin: 30px 0 15px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.entry-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.tag-links {
    margin-bottom: 20px;
}

.tag-links a {
    background: #f8f9fa;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.tag-links a:hover {
    background: #2582be;
    color: #fff;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-buttons a {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-facebook {
    background: #1877f2;
    color: #fff;
}

.share-twitter {
    background: #1da1f2;
    color: #fff;
}

.share-linkedin {
    background: #0077b5;
    color: #fff;
}

.share-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Post Navigation */
.post-navigation {
    margin: 40px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.nav-previous,
.nav-next {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    background: #2582be;
    color: #fff;
}

.nav-previous a,
.nav-next a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.nav-subtitle {
    font-size: 14px;
    opacity: 0.8;
    display: block;
    margin-bottom: 5px;
}

.nav-title {
    font-weight: bold;
    display: block;
}

.nav-next {
    text-align: right;
}

/* Related Posts */
.related-posts {
    margin: 60px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.related-posts h3 {
    text-align: center;
    color: #2582be;
    font-size: 2rem;
    margin-bottom: 40px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-post-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-post-item:hover {
    transform: translateY(-5px);
}

.related-post-thumbnail {
    height: 180px;
    overflow: hidden;
}

.related-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-item:hover .related-post-thumbnail img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
}

.related-post-content h4 {
    margin-bottom: 10px;
}

.related-post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-content h4 a:hover {
    color: #2582be;
}

.related-post-date {
    color: #666;
    font-size: 14px;
}

/* Archive & Search Pages */
.archive-page,
.search-results {
    padding: 120px 0 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 2.5rem;
    color: #2582be;
    margin-bottom: 15px;
}

.archive-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.search-results-count {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.post-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
}

.post-content .entry-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: left;
}

.post-content .entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-content .entry-title a:hover {
    color: #2582be;
}

.post-content .entry-meta {
    justify-content: flex-start;
    margin-bottom: 15px;
    font-size: 13px;
}

.entry-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.entry-summary mark {
    background: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
}

/* Pagination */
.pagination-nav {
    text-align: center;
    margin-top: 50px;
}

.page-numbers {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.page-numbers a,
.page-numbers span {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.page-numbers a:hover,
.page-numbers .current {
    background: #2582be;
    color: #fff;
    border-color: #2582be;
}

.page-numbers .dots {
    border: none;
    background: none;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results .page-title {
    color: #666;
    margin-bottom: 20px;
}

.search-suggestions {
    margin: 40px 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.search-suggestions h3 {
    color: #2582be;
    margin-bottom: 15px;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.search-suggestions li::before {
    content: '•';
    color: #2582be;
    position: absolute;
    left: 0;
}

/* Popular Posts */
.popular-posts {
    margin-top: 50px;
}

.popular-posts h3 {
    text-align: center;
    color: #2582be;
    margin-bottom: 30px;
}

.popular-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.popular-post-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.popular-post-item:hover {
    transform: translateY(-3px);
}

.popular-post-thumbnail {
    height: 120px;
    overflow: hidden;
}

.popular-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content {
    padding: 15px;
}

.popular-post-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.popular-post-content h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-content h4 a:hover {
    color: #2582be;
}

.popular-post-date {
    color: #666;
    font-size: 12px;
}

/* Search Form */
.search-form {
    max-width: 400px;
    margin: 0 auto;
}

.search-form-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-field {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-field:focus {
    border-color: #2582be;
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #2582be;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: #1a6ba3;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 404 Error Page */
.error-404 {
    padding: 120px 0 80px;
    text-align: center;
}

.error-404-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-number {
    font-size: 8rem;
    font-weight: bold;
    color: #2582be;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-404 .page-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.error-404 .page-content > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-404-actions {
    margin-bottom: 60px;
}

.btn-home {
    display: inline-block;
    background: #2582be;
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #1a6ba3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 130, 190, 0.4);
    color: #fff;
}

.search-wrapper {
    margin-top: 30px;
}

.search-wrapper p {
    margin-bottom: 15px;
    color: #666;
}

/* Popular Pages */
.popular-pages {
    margin-bottom: 50px;
}

.popular-pages h3 {
    color: #2582be;
    font-size: 2rem;
    margin-bottom: 30px;
}

.popular-pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.popular-page-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.popular-page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.popular-page-item a {
    text-decoration: none;
    color: inherit;
}

.popular-page-item h4 {
    color: #2582be;
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.popular-page-item:hover h4 {
    color: #1a6ba3;
}

.popular-page-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Error Contact Info */
.error-contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.error-contact-info h3 {
    color: #2582be;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.error-contact-info > p {
    color: #666;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-phone,
.contact-email {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2582be;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
    color: #1a6ba3;
}

/* Responsive Design for Additional Templates */
@media (max-width: 768px) {
    .single-article,
    .page-article {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .entry-title {
        font-size: 2rem;
    }

    .entry-meta {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        grid-template-columns: 1fr;
    }

    .related-posts-grid,
    .popular-pages-grid {
        grid-template-columns: 1fr;
    }

    .error-number {
        font-size: 6rem;
    }

    .error-404 .page-title {
        font-size: 2rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 15px;
    }

    .share-buttons {
        justify-content: center;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .search-form {
        max-width: 100%;
    }
}
