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

/* Accessibility - Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 16px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 5px 0;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #3d6b99;
    --accent-color: #d4a843;
    --dark-color: #0f1c2e;
    --light-color: #e8ecf1;
    --text-color: #2c3e50;
    --white: #f5f7fa;
    --shadow: 0 5px 20px rgba(15, 28, 46, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(86, 91, 61);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgb(66, 71, 41);
}

.navbar .logo img {
    filter: brightness(0) invert(1);
}

.navbar.scrolled .logo img {
    filter: brightness(0) invert(1);
}

.navbar .nav-menu a {
    color: var(--white);
}

.navbar.scrolled .nav-menu a {
    color: var(--white);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo img {
    max-height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.logo h1 span {
    color: var(--secondary-color);
}

.logo i {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a.active {
    color: var(--white);
}

.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Language Toggle Button */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 15px;
    backdrop-filter: blur(10px);
}

.lang-toggle:hover {
    background: rgba(212, 168, 67, 0.9);
    border-color: #d4a843;
    transform: scale(1.05);
}

.lang-icon {
    font-size: 1.2rem;
}

.lang-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.navbar.scrolled .lang-toggle {
    background: rgba(30, 58, 95, 0.3);
    border-color: rgba(30, 58, 95, 0.5);
}

.navbar.scrolled .lang-text {
    color: var(--dark-color);
}


/* Hero Section */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Video loading fallback - show gradient while video loads */
.hero-video:not([poster]) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding: 0 20px;
    max-width: 900px;
}

.hero-promo-tag {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 65, 108, 0.4);
    animation: pulse 2s infinite, fadeInUp 1s ease;
}

.hero-promo-tag i {
    margin-right: 8px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    font-weight: 500;
}

.hero-offer {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
    margin-bottom: 2rem;
}

.btn-hero {
    padding: 16px 35px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-hero i {
    font-size: 1.2rem;
}

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.trust-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 1;
}

/* Quick Stats Bar Section */
.quick-stats-bar {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    position: relative;
    overflow: hidden;
}

.quick-stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM55 18c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 36c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231e3a5f' fill-opacity='0.3' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.stats-bar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    transition: var(--transition);
}

.stat-bar-item:hover {
    transform: translateY(-5px);
}

.stat-bar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(212, 168, 67, 0.3);
}

.stat-bar-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-bar-content {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.stat-bar-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-bar-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-bar-label {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 5px;
    text-align: left;
}

.stat-bar-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    opacity: 0.5;
}

.stats-bar-cta {
    text-align: center;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
}

.stats-bar-cta p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.stats-bar-cta .btn {
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.3);
}

.stats-bar-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 168, 67, 0.4);
}

.stats-bar-cta .btn i {
    margin-right: 8px;
    transition: var(--transition);
}

.stats-bar-cta .btn:hover i {
    transform: translateX(5px);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* About Section */
.about {
    padding: 0;
    background: var(--white);
    position: relative;
}

/* About Hero Static */
.about-hero-static {
    position: relative;
    height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 28, 46, 0.85) 0%, rgba(30, 58, 95, 0.75) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8922c 100%);
    color: var(--dark-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(212, 168, 67, 0.4);
    animation: fadeInDown 1s ease;
}

.about-badge i {
    font-size: 1.2rem;
}

.about-hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
    color: var(--white);
}

.about-highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.about-lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.about-signature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
}

.about-signature img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.signature-text {
    text-align: left;
}

.signature-text .ceo-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.signature-text .ceo-title {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* About Content Wrapper */
.about-content-wrapper {
    padding: 100px 0;
    background: var(--white);
}

.about-grid-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-subtitle {
    margin-bottom: 2rem;
}

.subtitle-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8922c 100%);
    color: var(--dark-color);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-subtitle h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.3;
}

.story-intro {
    font-size: 1.15rem;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-story p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-features {
    margin-top: 2.5rem;
}

.about-feature-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.about-feature-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8922c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.35rem;
}

.feature-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* About Stats Modern */
.about-stats-modern {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    padding: 3rem;
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(15, 28, 46, 0.3);
}

.stats-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.stats-header h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stats-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-modern-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-modern-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.stat-modern-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.stat-modern-item:hover::before {
    opacity: 1;
}

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8922c 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.stat-icon-wrap i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

.stat-label {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.about-cta {
    text-align: center;
    margin-top: 2rem;
}

.about-cta .btn {
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 700;
}

.about-cta .btn i {
    margin-right: 8px;
    transition: var(--transition);
}

.about-cta .btn:hover i {
    transform: translateX(5px);
}

/* About Trust Section */
.about-trust-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.trust-badge-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.trust-badge-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.trust-badge-item span {
    font-weight: 600;
    font-size: 0.95rem;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--light-color);
}

.featured-projects {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--light-color) 0%, #d4d9e0 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    position: relative;
}

.featured-card {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.premium-card {
    border: 3px solid #8B7355;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.featured-card:hover {
    transform: translateY(-15px) scale(1.07);
}

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.15);
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.project-badge.hot {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: var(--white);
    animation: pulse 2s infinite;
}

.project-badge.new {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: var(--white);
}

.project-badge.premium {
    background: linear-gradient(135deg, #8B7355 0%, #B8922C 100%);
    color: var(--white);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 3px 15px rgba(231, 76, 60, 0.4);
    z-index: 2;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.project-status {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.available {
    background: #d4edda;
    color: #155724;
}

.project-status.sold {
    background: #fff3cd;
    color: #856404;
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.project-info .location {
    color: #666;
    margin-bottom: 1rem;
}

.project-info .location i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.project-info .description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-features-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.project-features-highlight span {
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-features-highlight i {
    color: var(--accent-color);
    font-size: 1rem;
}

.project-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-details span {
    color: #666;
    font-size: 0.9rem;
}

.project-details i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.price-section {
    margin-bottom: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.new-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.new-price .price {
    font-size: 2rem;
    font-weight: 800;
    color: #e74c3c;
    line-height: 1;
}

.new-price .price-desc {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
}

.installment-info {
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8922c 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(212, 168, 67, 0.3);
}

.installment-info i {
    margin-right: 8px;
}

.project-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-large {
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-large i {
    font-size: 1.1rem;
}

.urgency-notice {
    background: #fff3cd;
    color: #856404;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border-left: 4px solid #ffc107;
}

.urgency-notice.highlight {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.urgency-notice i {
    margin-right: 8px;
}

.projects-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.3);
}

.btn-xl:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 95, 45, 0.4);
}

.promo-banner {
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8922c 100%);
    color: var(--dark-color);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.3);
    animation: slideIn 0.5s ease;
}

.promo-banner i {
    margin-right: 10px;
    font-size: 1.3rem;
}

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

.project-price {
    margin-bottom: 1.5rem;
}

.project-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* Property Types Section */
.property-types {
    padding: 100px 0;
    background: var(--light-color);
}

.property-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.property-type-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border-top: 4px solid var(--accent-color);
}

.property-type-card.featured {
    border-top: 4px solid var(--dark-color);
    transform: scale(1.05);
}

.property-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-type-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.property-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dark-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-type-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8922c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.property-type-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.property-type-card h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.property-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-type-card > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.property-features {
    list-style: none;
    margin-bottom: 2rem;
}

.property-features li {
    padding: 0.75rem 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}

.property-features li:last-child {
    border-bottom: none;
}

.property-features li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.property-type-card .btn {
    width: 100%;
    text-align: center;
}

/* Products Section - Enhanced Interactive Design */
.products-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.products-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Geometric pattern texture - More visible */
    background-image: 
        linear-gradient(30deg, rgba(212, 168, 67, 0.08) 1px, transparent 1px),
        linear-gradient(150deg, rgba(212, 168, 67, 0.08) 1px, transparent 1px),
        linear-gradient(30deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px),
        linear-gradient(150deg, rgba(212, 168, 67, 0.04) 1px, transparent 1px);
    background-size: 60px 104px;
    background-position: 0 0, 0 0, 30px 52px, 30px 52px;
    pointer-events: none;
    z-index: 0;
}

.products-section .container {
    position: relative;
    z-index: 1;
}

/* Product Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.tab-btn i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 168, 67, 0.2);
    border-color: var(--accent-color);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.3);
}

.tab-btn.active i {
    color: var(--white);
}

/* Cluster Subtabs */
.cluster-subtabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cluster-subtab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.cluster-subtab-btn i {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.cluster-subtab-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.cluster-subtab-btn.active {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    color: var(--white);
    border-color: transparent;
}

.cluster-subtab-btn.active i {
    color: var(--accent-color);
}

/* Cluster Subcontent */
.cluster-subcontent {
    display: none;
}

.cluster-subcontent.active {
    display: block;
}

/* Cluster Overview Section */
.cluster-overview-section {
    margin-bottom: 3rem;
}

.overview-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.overview-main:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.overview-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-main:hover img {
    transform: scale(1.1);
}

.overview-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    color: var(--white);
    z-index: 2;
}

.overview-title h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.overview-title p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Clickable Overview with Overlay */
.overview-main.clickable .overview-overlay-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 58, 95, 0) 50%, rgba(30, 58, 95, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    color: var(--white);
}

.overview-main.clickable:hover .overview-overlay-large {
    opacity: 1;
}

.overview-overlay-large i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transform: translateY(30px);
    transition: var(--transition);
}

.overview-main.clickable:hover .overview-overlay-large i {
    transform: translateY(0);
}

.overview-overlay-large h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
    transform: translateY(30px);
    transition: var(--transition);
}

.overview-main.clickable:hover .overview-overlay-large h4 {
    transform: translateY(0);
}

.overview-overlay-large p {
    font-size: 1rem;
    opacity: 0.9;
    transform: translateY(30px);
    transition: var(--transition);
}

.overview-main.clickable:hover .overview-overlay-large p {
    transform: translateY(0);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.overview-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.overview-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-card:hover img {
    transform: scale(1.1);
}

.overview-card h4 {
    padding: 1rem;
    background: var(--white);
    text-align: center;
    font-size: 1rem;
    color: var(--dark-color);
    margin: 0;
}

/* Clickable Overview Card with Overlay */
.overview-card.clickable {
    position: relative;
}

.overview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 58, 95, 0) 0%, rgba(30, 58, 95, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

.overview-card.clickable:hover .overview-overlay {
    opacity: 1;
}

.overview-overlay i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.overview-card.clickable:hover .overview-overlay i {
    transform: translateY(0);
}

.overview-overlay h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: transparent;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition);
}

.overview-card.clickable:hover .overview-overlay h4 {
    transform: translateY(0);
}

.overview-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.overview-card.clickable:hover .overview-overlay p {
    transform: translateY(0);
}

/* Tab Content */
.tab-content {
    display: block;
    opacity: 1;
}

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

/* Cluster Subcontent */
.cluster-subcontent {
    display: none;
}

.cluster-subcontent.active {
    display: block;
}

/* Cluster Selector */
.cluster-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cluster-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cluster-btn i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.cluster-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 168, 67, 0.2);
    border-color: var(--accent-color);
}

.cluster-btn.active {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.cluster-btn.active i {
    color: var(--accent-color);
}

/* Cluster Content */
.cluster-content {
    display: none;
}

.cluster-content.active {
    display: block;
}

/* Cluster Intro - Interactive Design */
.cluster-intro {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cluster-intro-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cluster-intro-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cluster-specs {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cluster-spec {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.cluster-spec:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cluster-spec i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.cluster-spec span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Section Subheader */
.section-subheader {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 3rem 0 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    border-radius: 15px;
}

.section-subheader i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.section-subheader h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

/* Facilities Section */
.facilities-section {
    margin-bottom: 3rem;
}

.facility-trigger {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
}

.btn-facilities {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.3);
}

.btn-facilities i {
    font-size: 1.5rem;
}

.btn-facilities:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 168, 67, 0.4);
}

/* Facilities Slideshow Modal - SwiperJS Fullscreen */
.facilities-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
}

.facilities-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.facilities-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Fixed WhatsApp Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    z-index: 10002;
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-float-btn i {
    font-size: 1.5rem;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 90px;
        right: 20px;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .whatsapp-float-btn span {
        display: none;
    }
    
    .whatsapp-float-btn i {
        font-size: 1.8rem;
    }
    
    /* Compact Modal on Mobile */
    .unit-detail-content {
        max-width: 95%;
        max-height: 90vh;
        border-radius: 20px;
    }
    
    .unit-detail-header {
        padding: 1.5rem;
    }
    
    .unit-detail-header h2 {
        font-size: 1.6rem;
    }
    
    .unit-detail-price-box {
        padding: 1.5rem 2rem;
        min-width: auto;
        width: 100%;
    }
    
    .unit-detail-price-box .price-label {
        font-size: 0.85rem;
    }
    
    .unit-detail-price-box .price-value {
        font-size: 2.2rem;
    }
    
    .price-installment-wrapper {
        padding: 0.75rem 1.5rem;
        margin-top: 1rem;
    }
    
    .price-installment-wrapper i {
        font-size: 1.2rem;
    }
    
    .unit-detail-price-box .price-installment {
        font-size: 1.1rem;
    }
    
    .unit-detail-floorplan {
        margin-top: 1.5rem;
    }
    
    .unit-detail-floorplan img {
        max-height: 250px;
    }
    
    .unit-detail-body {
        padding: 1.5rem;
    }
    
    .unit-detail-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .spec-item {
        padding: 1rem;
    }
    
    .spec-item i {
        font-size: 1.5rem;
    }
    
    .spec-item .spec-label {
        font-size: 0.8rem;
    }
    
    .spec-item .spec-value {
        font-size: 1.1rem;
    }
    
    .unit-detail-features {
        margin-bottom: 1.5rem;
    }
    
    .unit-detail-features h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .unit-detail-features li {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .unit-detail-features li i {
        font-size: 1.1rem;
    }
    
    .unit-detail-tab-content {
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-item {
        border-radius: 10px;
    }
}
.facilities-modal .mobile-close-btn,
.gallery-slideshow .mobile-close-btn,
.unit-detail-modal .mobile-close-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
    z-index: 10001;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.facilities-modal .mobile-close-btn:active,
.gallery-slideshow .mobile-close-btn:active,
.unit-detail-modal .mobile-close-btn:active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateX(-50%) scale(0.95);
}

@media (max-width: 768px) {
    .facilities-modal .mobile-close-btn,
    .gallery-slideshow .mobile-close-btn,
    .unit-detail-modal .mobile-close-btn {
        display: block;
    }
    
    .facilities-modal-content .modal-close-btn,
    .unit-detail-content .modal-close-btn,
    .slideshow-content .slideshow-close {
        top: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    /* Make overlay more visible on mobile */
    .facilities-modal-overlay,
    .unit-detail-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
}

.facilities-modal-content {
    position: relative;
    background: transparent;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    max-height: 100vh;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

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

.facilities-modal-content .modal-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.facilities-modal-content .modal-close-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: rotate(90deg) scale(1.1);
}

/* Swiper Fullscreen Styles */
.facilities-modal .swiper {
    width: 100%;
    height: 100vh;
}

.facilities-modal .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.facilities-modal .swiper-slide img {
    max-width: 95%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.8);
}

.facilities-modal .slide-caption {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    z-index: 100;
}

/* Swiper Navigation */
.facilities-modal .swiper-button-prev,
.facilities-modal .swiper-button-next {
    color: var(--white);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.facilities-modal .swiper-button-prev:hover,
.facilities-modal .swiper-button-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

.facilities-modal .swiper-button-prev::after,
.facilities-modal .swiper-button-next::after {
    font-size: 2.5rem;
    font-weight: bold;
}

.facilities-modal .swiper-button-prev {
    left: 40px;
}

.facilities-modal .swiper-button-next {
    right: 40px;
}

/* Swiper Pagination */
.facilities-modal .swiper-pagination {
    bottom: 30px !important;
}

.facilities-modal .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.facilities-modal .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* Units Section */
.units-section {
    margin-bottom: 2rem;
}

/* Unit Cards Grid */
.unit-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* Interactive Unit Card */
.unit-card-interactive {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.unit-card-interactive:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.unit-card-interactive.featured {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(212, 168, 67, 0.2);
}

.unit-card-interactive.featured:hover {
    box-shadow: 0 25px 60px rgba(212, 168, 67, 0.3);
}

/* Unit Card Header */
.unit-card-header {
    position: relative;
}

.unit-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.unit-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unit-card-interactive:hover .unit-image-wrapper img {
    transform: scale(1.1);
}

.unit-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.unit-card-interactive:hover .unit-image-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: var(--white);
    color: var(--dark-color);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    transform: translateY(20px);
}

.unit-card-interactive:hover .btn-quick-view {
    transform: translateY(0);
}

.btn-quick-view:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* View Detail Overlay */
.unit-view-detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 58, 95, 0) 0%, rgba(30, 58, 95, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    pointer-events: none;
}

.unit-card-interactive:hover .unit-view-detail {
    opacity: 1;
}

.unit-view-detail i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.unit-card-interactive:hover .unit-view-detail i {
    transform: translateY(0);
}

.unit-view-detail span {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: var(--transition);
}

.unit-card-interactive:hover .unit-view-detail span {
    transform: translateY(0);
}

.btn-quick-view i {
    font-size: 1.1rem;
}

/* Unit Status Badge */
.unit-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.unit-status-badge.available {
    background: #28a745;
    color: var(--white);
}

.unit-status-badge.hot {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: var(--white);
    animation: pulse 2s infinite;
}

.unit-status-badge.new {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: var(--white);
}

/* Unit Card Body */
.unit-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.unit-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f8f9fa;
}

.unit-title-row h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0;
}

.unit-dimension {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 10px;
    flex-shrink: 0;
}

.unit-dimension i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.unit-dimension span {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Unit Card Price Section */
.unit-price {
    background: linear-gradient(135deg, #1e3a5f 0%, #3d6b99 100%);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.unit-price .price-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.4rem;
}

.unit-price .price-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.unit-price .price-installment {
    display: inline-block;
    background: linear-gradient(135deg, #d4a843 0%, #f5c542 100%);
    color: #1e3a5f;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(212, 168, 67, 0.3);
}

/* Unit Areas Row */
.unit-areas-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.area-item {
    flex: 1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    min-width: 0;
    backdrop-filter: blur(10px);
}

.area-item:hover {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.2) 0%, rgba(212, 168, 67, 0.1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 168, 67, 0.3);
}

.area-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    padding: 0.25rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.area-label::before,
.area-label::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.area-label::before {
    left: 8px;
}

.area-label::after {
    right: 8px;
}

.area-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    line-height: 1;
}

/* Unit Features Grid */
.unit-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.1rem;
    color: var(--accent-color);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 600;
    white-space: nowrap;
}

/* Unit Card Actions */
.unit-card-actions {
    margin-top: auto;
    padding-top: 1.5rem;
}

.unit-card-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 25px;
    font-weight: 700;
}

/* Hide old table styles */
.units-table-container,
.units-table {
    display: none;
}

/* Unit Modal */
.unit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.unit-modal.active {
    display: flex;
}

.unit-modal-content {
    background: var(--white);
    border-radius: 25px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-color);
    transition: var(--transition);
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 3rem;
    text-align: center;
}

.modal-body h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.modal-body p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-actions .btn {
    padding: 14px 30px;
    font-weight: 700;
}

/* Unit Card Large */
.unit-card-large {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.unit-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #f5c542 100%);
    z-index: 10;
}

.unit-card-large:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.unit-card-large.selected {
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(212, 168, 67, 0.25);
}

.unit-card-large.featured {
    border-color: var(--accent-color);
    box-shadow: 0 20px 50px rgba(212, 168, 67, 0.2);
}

/* Unit Image */
.unit-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.unit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unit-card-large:hover .unit-image img {
    transform: scale(1.1);
}

.unit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.unit-card-large:hover .unit-overlay {
    opacity: 1;
}

.view-details {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--dark-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transform: translateY(20px);
    transition: var(--transition);
}

.unit-card-large:hover .view-details {
    transform: translateY(0);
}

.view-details i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Unit Badge */
.unit-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.unit-badge.hot {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    animation: pulse 2s infinite;
}

.unit-badge.new {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

/* Unit Info Large */
.unit-info-large {
    padding: 2rem;
}

.unit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f8f9fa;
}

.unit-header h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0;
}

.unit-dimension-large {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 10px;
}

.unit-dimension-large i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.unit-dimension-large span {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 0.95rem;
}

/* Unit Specs */
.unit-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: var(--transition);
}

.spec-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateX(5px);
}

.spec-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    width: 25px;
    text-align: center;
}

.spec-item span {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
}

/* Unit Areas */
.unit-areas {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.area-box {
    flex: 1;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.area-box:hover {
    border-color: var(--accent-color);
    background: var(--white);
}

.area-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.area-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark-color);
}

/* Unit Actions */
.unit-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.unit-actions .btn {
    justify-content: center;
    font-weight: 700;
}

.btn-outline {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.btn-outline:hover {
    background: var(--dark-color);
    color: var(--white);
}

/* Old Product Category - Keep for compatibility */
.product-category {
    margin-bottom: 5rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.category-header.commercial {
    background: linear-gradient(135deg, #2a3d5a 0%, #1e3a5f 100%);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(212, 168, 67, 0.3);
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.category-title h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.category-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

/* Cluster Section */
.cluster-section {
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cluster-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.cluster-header i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.cluster-header h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

/* Unit Types Grid */
.unit-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.unit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid #e9ecef;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.unit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #f5c542 100%);
}

.unit-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(212, 168, 67, 0.2);
}

.unit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.unit-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.unit-badge.hot {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    animation: pulse 2s infinite;
}

.unit-badge.new {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.unit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.unit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.unit-card h5 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.unit-dimension {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.unit-dimension i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.unit-dimension span {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.unit-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.unit-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    color: var(--text-color);
    font-size: 0.9rem;
}

.unit-features li:last-child {
    border-bottom: none;
}

.unit-features li i {
    color: var(--accent-color);
    font-size: 1rem;
    width: 20px;
}

.unit-features li i.fa-layer-group {
    color: var(--secondary-color);
}

.unit-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
    font-weight: 600;
    color: var(--dark-color);
}

.unit-area span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.unit-card .btn {
    width: 100%;
    justify-content: center;
}

/* Commercial Showcase - Enhanced */
.commercial-showcase {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.commercial-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.commercial-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM55 18c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 36c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231e3a5f' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.commercial-hero-content {
    position: relative;
    z-index: 1;
}

.commercial-icon-hero {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 40px rgba(212, 168, 67, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.commercial-icon-hero i {
    font-size: 4rem;
    color: var(--white);
}

.commercial-hero h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.commercial-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.commercial-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.highlight-item span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Commercial Features Grid */
.commercial-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem;
}

.comm-feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.comm-feature-card:hover {
    background: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 168, 67, 0.15);
}

.comm-feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

.comm-feature-icon i {
    font-size: 3rem;
    color: var(--white);
}

.comm-feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.comm-feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.commercial-cta {
    text-align: center;
    padding: 2rem 3rem 3rem;
}

.commercial-cta .btn {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* Commercial Section */
.commercial-info {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.commercial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.commercial-card {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.commercial-card:hover {
    background: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.commercial-icon-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.commercial-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.commercial-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.commercial-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.commercial-cta {
    text-align: center;
}

.commercial-cta .btn {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* Products CTA Section */
.products-cta-section {
    margin-top: 4rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e3a5f' fill-opacity='0.3'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    padding: 16px 35px;
    font-size: 1.05rem;
    font-weight: 700;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

/* Strategic Locations Section - Parallax Slider */
.locations-parallax-section {
    padding: 0 0 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.locations-slider-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.location-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.1);
}

.location-slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(61, 107, 153, 0.75) 50%, rgba(30, 58, 95, 0.85) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 3rem;
    z-index: 10;
}

.slide-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4a843 0%, #f5c542 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 40px rgba(212, 168, 67, 0.4);
    animation: pulse-icon 2s ease-in-out infinite;
}

.slide-icon i {
    font-size: 3rem;
    color: #1e3a5f;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.slide-content h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.slide-distance {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slide-distance i {
    font-size: 1.5rem;
    color: #d4a843;
}

.slide-distance span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(212, 168, 67, 0.9);
    border-color: #d4a843;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav i {
    font-size: 1.5rem;
}

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

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

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: #d4a843;
    border-color: #d4a843;
    width: 18px;
    height: 18px;
}

.locations-cta {
    text-align: center;
    margin-top: 4rem;
}

/* Bank Partners & Payment Section */
.bank-payment-section {
    padding: 100px 0;
    background: var(--white);
}

.bank-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.bank-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.bank-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 168, 67, 0.15);
}

.bank-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.bank-logo i {
    font-size: 2.5rem;
    color: var(--white);
}

.bank-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.bank-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Payment Methods Section */
.payment-methods-section {
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.payment-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--dark-color) 0%, #2a3d5a 100%);
}

.payment-card.featured::before {
    background: linear-gradient(90deg, var(--accent-color) 0%, #f5c542 100%);
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.payment-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(212, 168, 67, 0.2);
}

.payment-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.payment-card.featured .payment-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
}

.payment-icon i {
    font-size: 3rem;
    color: var(--white);
}

.payment-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.payment-features {
    margin-bottom: 2.5rem;
    text-align: left;
}

.payment-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.payment-feature:last-child {
    border-bottom: none;
}

.payment-feature i {
    font-size: 1.2rem;
    color: var(--accent-color);
    width: 25px;
}

.payment-feature span {
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 500;
}

.payment-card .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 30px;
    font-weight: 700;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.location-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.location-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover .location-image-wrapper img {
    transform: scale(1.1);
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 168, 67, 0.4);
}

.location-icon i {
    font-size: 2rem;
    color: var(--white);
}

.location-info {
    padding: 1.75rem;
}

.location-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.location-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.location-distance {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
}

.location-distance i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.location-distance span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.locations-cta {
    text-align: center;
}

.locations-cta .btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
}

/* Infrastructure Map Section - Enhanced */
.infrastructure-map {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.infrastructure-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231e3a5f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8922c 100%);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(212, 168, 67, 0.3);
}

.section-badge i {
    font-size: 1rem;
}

.map-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.map-main-container {
    position: relative;
}

.map-frame {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: var(--transition);
}

.map-frame:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.map-image-wrapper {
    position: relative;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.map-frame:hover .map-image {
    transform: scale(1.05);
}

/* Interactive Hotspots */
.map-hotspots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hotspot {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8922c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transform: translate(-50%, -50%);
    animation: hotspotFloat 3s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(212, 168, 67, 0.5);
    border: 3px solid var(--white);
    z-index: 10;
}

.hotspot i {
    color: var(--white);
    font-size: 1.2rem;
    z-index: 2;
}

.hotspot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.6;
    animation: pulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes hotspotFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-8px); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.hotspot-tooltip {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--dark-color);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.hotspot-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: var(--dark-color);
}

.hotspot-tooltip strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--accent-color);
}

.hotspot-tooltip span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.hotspot:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hotspot:hover {
    transform: translate(-50%, -50%) scale(1.2);
    z-index: 20;
}

/* Map Controls */
.map-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 50;
}

.map-control-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    color: var(--dark-color);
}

.map-control-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.4);
}

.map-control-btn i {
    font-size: 1.1rem;
}

/* Map Scale */
.map-scale {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    z-index: 50;
}

.scale-bar {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #b8922c 100%);
    border-radius: 2px;
}

.map-scale span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Map Info Panel */
.map-info-panel {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.panel-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.panel-header i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.panel-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.panel-content {
    padding: 1.5rem;
    flex: 1;
}

.facility-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
    border-left: 4px solid transparent;
}

.facility-item:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateX(8px);
    border-left-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.facility-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8922c 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.facility-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.facility-icon.shopping {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

.facility-icon.education {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.facility-icon.health {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.facility-icon.business {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.facility-icon.transit {
    background: linear-gradient(135deg, #f39c12 0%, #d68910 100%);
}

.facility-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.facility-name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.facility-distance {
    font-size: 0.85rem;
    color: #666;
}

.facility-indicator {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.facility-item:hover .facility-indicator {
    opacity: 1;
    animation: indicatorPulse 1s ease infinite;
}

@keyframes indicatorPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.panel-footer {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.quick-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.quick-stat i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.quick-stat span {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Map Features Grid */
.map-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.map-feature-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.map-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-top-color: var(--accent-color);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #b8922c 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.map-feature-card:hover .feature-card-icon {
    transform: rotateY(180deg);
}

.feature-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.map-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.map-feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.map-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-outline {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.btn-outline:hover {
    background: var(--dark-color);
    color: var(--white);
}

/* Developer Section */
.developer-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a253a 100%);
    color: var(--white);
}

.developer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.developer-logo h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.developer-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.6;
}

.tagline-highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.developer-description {
    margin-bottom: 3rem;
}

.developer-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.developer-description .intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.developer-description .highlight {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    color: var(--dark-color);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 1rem;
}

.developer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.dev-stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.dev-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.dev-stat-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.dev-stat-item h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.dev-stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Amenities Section */
.amenities {
    padding: 100px 0;
    background: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.amenity-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--light-color);
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background: var(--primary-color);
    color: var(--white);
}

.amenity-card:hover h3,
.amenity-card:hover p {
    color: var(--white);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.amenity-card:hover .amenity-icon {
    background: var(--white);
}

.amenity-icon i {
    font-size: 2rem;
    color: var(--white);
}

.amenity-card:hover .amenity-icon i {
    color: var(--dark-color);
}

.amenity-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.amenity-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: #666;
    font-size: 0.85rem;
    font-style: normal;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    padding: 1.5rem 2rem;
    margin: 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a3d5a 100%);
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.faq-category h3 i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.05) 0%, rgba(212, 168, 67, 0.1) 100%);
    padding-left: 2.2rem;
}

.faq-question i {
    font-size: 1rem;
    color: var(--accent-color);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question.active {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.1) 0%, rgba(212, 168, 67, 0.15) 100%);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding: 2rem;
    background: var(--white);
    color: var(--text-color);
    line-height: 1.9;
    border-top: 2px solid rgba(212, 168, 67, 0.2);
    font-size: 0.95rem;
}

.faq-answer.active {
    max-height: 600px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.info-icon i {
    color: var(--white);
    font-size: 1.2rem;
}

.info-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: #666;
}

.whatsapp-note {
    color: #25D366;
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-media a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-media a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.whatsapp-contact-box {
    text-align: center;
    padding: 2rem;
}

.whatsapp-contact-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.whatsapp-contact-box p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.whatsapp-contact-box .btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.response-time {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.response-time i {
    color: var(--accent-color);
}

.whatsapp-note {
    color: #25D366;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-whatsapp {
    margin-top: 1rem;
    text-align: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    border: none;
    z-index: 10;
    position: relative;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

.unit-detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: auto;
    z-index: 20;
    position: relative;
}

.unit-detail-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 15px;
    transition: var(--transition);
    cursor: pointer;
    z-index: 10;
    position: relative;
}

/* Unit Detail Modal - New Clean Design */
.unit-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
}

.unit-detail-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.unit-detail-content {
    position: relative;
    background: var(--white);
    border-radius: 30px;
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    animation: popupFadeIn 0.3s ease;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(0, 0, 0, 0.1);
}

.unit-detail-content::-webkit-scrollbar {
    width: 8px;
}

.unit-detail-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.unit-detail-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    border-radius: 10px;
    transition: var(--transition);
}

.unit-detail-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f5c542 0%, var(--accent-color) 100%);
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    background: var(--white);
    color: var(--dark-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #e0e0e0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.modal-close-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    transform: rotate(90deg);
}

.unit-detail-header {
    padding: 2rem;
    background: var(--white);
    color: var(--dark-color);
    text-align: center;
    border-bottom: 3px solid var(--accent-color);
}

.unit-detail-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: var(--dark-color);
}

.unit-detail-price-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    color: var(--white);
    padding: 2.5rem 4rem;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 15px 50px rgba(212, 168, 67, 0.5);
    position: relative;
    overflow: hidden;
    min-width: 400px;
}

.unit-detail-price-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.unit-detail-price-box .price-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.unit-detail-price-box .price-value {
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    color: var(--white);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    line-height: 1;
}

.price-installment-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.price-installment-wrapper i {
    font-size: 1.5rem;
    color: var(--white);
    animation: rotate 3s linear infinite;
}

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

.unit-detail-price-box .price-installment {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.unit-detail-floorplan {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 168, 67, 0.3);
}

.unit-detail-floorplan img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.unit-detail-body {
    padding: 3rem;
}

.unit-detail-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.spec-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8f9fa;
    border-radius: 20px;
    transition: var(--transition);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spec-item:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.3);
}

.spec-item:hover i,
.spec-item:hover .spec-label,
.spec-item:hover .spec-value {
    color: var(--white);
}

.spec-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
    transition: var(--transition);
}

.spec-item .spec-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.spec-item .spec-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    display: block;
    transition: var(--transition);
}

.unit-detail-features {
    margin-bottom: 2rem;
}

.unit-detail-features h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.unit-detail-features h3 i {
    color: var(--accent-color);
    font-size: 2rem;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.unit-detail-features ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.unit-detail-features li {
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.unit-detail-features li:hover {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

.unit-detail-features li:hover i,
.unit-detail-features li:hover span {
    color: var(--white);
}

.unit-detail-features li i {
    font-size: 1.3rem;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: var(--transition);
}

.unit-detail-features li span {
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.unit-detail-features li span strong {
    font-weight: 700;
    color: inherit;
}

.unit-detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.unit-detail-actions .btn {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 15px;
    transition: var(--transition);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.unit-detail-tabs {
    display: flex;
    gap: 1rem;
    padding: 2rem 3rem;
    border-top: 3px solid #e0e0e0;
    background: var(--white);
}

.unit-detail-tabs .tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1.25rem 2rem;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
}

.unit-detail-tabs .tab-btn i {
    font-size: 1.3rem;
}

.unit-detail-tabs .tab-btn:hover {
    border-color: var(--accent-color);
}

.unit-detail-tabs .tab-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    color: var(--white);
    border-color: transparent;
}

.unit-detail-tab-content {
    padding: 3rem;
    background: #f8f9fa;
}

.tab-pane {
    display: none;
}

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

#floorplan img {
    width: 100%;
    border-radius: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Gallery Slideshow Modal */
.gallery-slideshow {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-slideshow.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.slideshow-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.slideshow-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--white);
    color: var(--dark-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.slideshow-close:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: rotate(90deg);
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.slideshow-nav:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-nav.prev {
    left: -80px;
}

.slideshow-nav.next {
    right: -80px;
}

.slideshow-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.slideshow-caption {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Removed - specs-detail no longer used */

.spec-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 30px;
}

.spec-item .spec-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
}

.spec-item .spec-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
}

.unit-detail-features {
    margin-bottom: 1.5rem;
}

.unit-detail-features h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.unit-detail-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.unit-detail-features li {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
    min-height: 50px;
}

.unit-detail-features li:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 168, 67, 0.3);
}

.unit-detail-features li:hover i,
.unit-detail-features li:hover span {
    color: var(--white);
}

.unit-detail-features li i {
    color: var(--accent-color);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.unit-detail-features li span {
    transition: var(--transition);
}

.unit-detail-actions {
    display: grid;
    gap: 1rem;
}

.unit-detail-tabs {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #e0e0e0;
}

.unit-detail-tabs .tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.unit-detail-tabs .tab-btn i {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.unit-detail-tabs .tab-btn:hover {
    border-color: var(--accent-color);
}

.unit-detail-tabs .tab-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #f5c542 100%);
    color: var(--white);
    border-color: transparent;
}

.unit-detail-tabs .tab-btn.active i {
    color: var(--white);
}

.unit-detail-tab-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

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

#floorplan img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.specs-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.spec-detail-item {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.spec-detail-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-left-color: var(--dark-color);
}

.spec-detail-item .spec-name {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1rem;
    margin-right: 10px;
}

.spec-detail-item .spec-value {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive Unit Detail Modal */
@media (max-width: 992px) {
    .unit-detail-header {
        padding: 2rem 1.5rem;
    }

    .unit-detail-header h2 {
        font-size: 2rem;
    }

    .unit-detail-price-box .price-value {
        font-size: 2rem;
    }

    .unit-detail-body {
        padding: 2rem 1.5rem;
    }

    .unit-detail-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .spec-item {
        min-height: 140px;
        padding: 1.5rem 1rem;
    }

    .spec-item i {
        font-size: 2rem;
    }

    .spec-item .spec-value {
        font-size: 1.3rem;
    }

    .unit-detail-features ul {
        grid-template-columns: 1fr;
    }

    .unit-detail-features li {
        padding: 1rem 1.25rem;
    }

    .unit-detail-actions {
        grid-template-columns: 1fr;
    }

    .unit-detail-tabs {
        padding: 1.5rem 1rem;
        gap: 0.75rem;
    }

    .unit-detail-tabs .tab-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .unit-detail-tab-content {
        padding: 2rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    /* Gallery Slideshow Responsive */
    .slideshow-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

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

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

    .slideshow-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .slideshow-counter {
        bottom: 10px;
    }

    .slideshow-caption {
        top: 10px;
    }
}

@media (max-width: 576px) {
    .unit-detail-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 20px;
    }

    .unit-detail-header {
        padding: 1.5rem 1rem;
    }

    .unit-detail-header h2 {
        font-size: 1.6rem;
    }

    .unit-detail-price-box {
        padding: 1.5rem;
    }

    .unit-detail-price-box .price-value {
        font-size: 1.8rem;
    }

    .unit-detail-price-box .price-installment {
        font-size: 1rem;
    }

    .unit-detail-body {
        padding: 1.5rem 1rem;
    }

    .unit-detail-specs {
        gap: 0.75rem;
    }

    .spec-item {
        min-height: 120px;
        padding: 1.25rem 0.75rem;
    }

    .spec-item i {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .spec-item .spec-label {
        font-size: 0.8rem;
    }

    .spec-item .spec-value {
        font-size: 1.2rem;
    }

    .unit-detail-features h3 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }

    .unit-detail-features ul {
        gap: 1rem;
    }

    .unit-detail-features li {
        padding: 1rem;
        gap: 12px;
    }

    .unit-detail-features li i {
        font-size: 1.1rem;
    }

    .unit-detail-features li span {
        font-size: 0.9rem;
    }

    .unit-detail-actions .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .unit-detail-tabs {
        padding: 1rem 0.75rem;
        flex-wrap: wrap;
    }

    .unit-detail-tabs .tab-btn {
        flex: 1 1 calc(50% - 0.5rem);
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .unit-detail-tabs .tab-btn i {
        font-size: 1.1rem;
    }

    .unit-detail-tab-content {
        padding: 1.5rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        aspect-ratio: 4/3;
    }

    /* Gallery Slideshow Mobile */
    .slideshow-content {
        max-width: 95%;
        max-height: 95%;
    }

    .slideshow-content img {
        max-height: 75vh;
    }

    .slideshow-nav {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

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

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

    .slideshow-close {
        top: 5px;
        right: 5px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .slideshow-counter {
        bottom: 5px;
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .slideshow-caption {
        top: 5px;
        padding: 8px 20px;
        font-size: 0.9rem;
        white-space: normal;
    }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-section h3 span {
    color: var(--secondary-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.newsletter-form button {
    padding: 10px 15px;
    background: var(--secondary-color);
    border: none;
    border-radius: 5px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .whatsapp-contact-box {
        padding: 1.5rem;
    }

    .whatsapp-contact-box h3 {
        font-size: 1.3rem;
    }

    .whatsapp-contact-box .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .about-image {
        order: -1;
    }

    .about-grid-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats-modern {
        order: -1;
    }

    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .map-showcase {
        grid-template-columns: 1fr;
    }

    .map-info-panel {
        order: -1;
    }

    .map-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }

    .category-icon {
        width: 70px;
        height: 70px;
    }

    .category-icon i {
        font-size: 2rem;
    }

    .category-title h3 {
        font-size: 1.6rem;
    }

    .cluster-section {
        padding: 1.5rem;
    }

    .cluster-header h4 {
        font-size: 1.3rem;
    }

    .unit-types-grid {
        grid-template-columns: 1fr;
    }

    .commercial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box {
        padding: 2rem;
    }

    .cta-box h3 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .about-hero-content h2 {
        font-size: 2.2rem;
    }

    /* Product Tabs Responsive */
    .product-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .tab-btn i {
        font-size: 1.1rem;
    }

    /* Cluster Selector Responsive */
    .cluster-selector {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .cluster-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Cluster Intro Responsive */
    .cluster-intro {
        padding: 2rem 1.5rem;
    }

    .cluster-intro-content h3 {
        font-size: 1.6rem;
    }

    .cluster-intro-content p {
        font-size: 1rem;
    }

    .cluster-specs {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cluster-spec {
        width: 100%;
        padding: 10px 15px;
    }

    .cluster-spec i {
        font-size: 1.2rem;
    }

    .cluster-spec span {
        font-size: 0.9rem;
    }

    /* Cluster Overview Responsive */
    .overview-main img {
        height: 300px;
    }

    .overview-main.clickable:hover img {
        transform: scale(1.08);
    }

    .overview-overlay-large i {
        font-size: 3rem;
    }

    .overview-overlay-large h4 {
        font-size: 1.3rem;
    }

    .overview-overlay-large p {
        font-size: 0.95rem;
    }

    .overview-title h3 {
        font-size: 1.6rem;
    }

    .overview-title p {
        font-size: 1rem;
    }

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

    /* Facilities Responsive */
    .section-subheader {
        padding: 1.25rem;
    }

    .section-subheader i {
        font-size: 1.5rem;
    }

    .section-subheader h3 {
        font-size: 1.3rem;
    }

    .facility-showcase {
        padding: 2rem;
    }

    .facility-main {
        margin-bottom: 2rem;
    }

    .facility-main img {
        height: 350px;
    }

    .facility-caption {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .facility-item img {
        height: 200px;
    }

    .facility-item.large {
        grid-column: span 1;
    }

    .facility-item.large img {
        height: 200px;
    }

    .facility-label {
        font-size: 0.9rem;
        padding: 0.85rem 0.75rem;
        min-height: 45px;
    }

    /* Facilities Slideshow Modal Responsive */
    .facilities-modal-content {
        width: 98%;
        max-height: 95vh;
    }

    .slideshow-container {
        height: 60vh;
    }

    .slideshow-header {
        padding: 1.25rem;
    }

    .slideshow-header h3 {
        font-size: 1.4rem;
    }

    .slideshow-nav {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .slideshow-thumbnails {
        padding: 1.25rem;
    }

    .thumbnail {
        flex: 0 0 90px;
        height: 60px;
    }

    .slide-caption {
        font-size: 1.2rem;
        padding: 1.5rem;
    }

    .btn-facilities {
        padding: 16px 35px;
        font-size: 1.05rem;
    }

    .btn-facilities i {
        font-size: 1.3rem;
    }

    /* Unit Cards Responsive */
    .unit-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 10px;
    }

    .unit-card-interactive {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .unit-image-wrapper {
        height: 280px;
    }

    .unit-title-row {
        flex-direction: row;
        gap: 1rem;
        text-align: left;
        align-items: center;
        justify-content: space-between;
    }

    .unit-title-row h4 {
        font-size: 1.5rem;
        flex: 1;
    }

    .unit-dimension {
        padding: 10px 18px;
        flex-shrink: 0;
    }

    .unit-dimension i {
        font-size: 1.2rem;
    }

    .unit-dimension span {
        font-size: 1rem;
        font-weight: 800;
    }

    .unit-areas-row {
        flex-direction: row;
        gap: 1rem;
    }

    .area-item {
        flex: 1;
        padding: 1.3rem;
        min-width: 0;
    }

    .area-label {
        font-size: 0.75rem;
    }

    .area-value {
        font-size: 1.25rem;
    }

    .unit-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .feature-item {
        padding: 10px 8px;
        gap: 6px;
    }

    .feature-item i {
        font-size: 1rem;
        width: 18px;
        flex-shrink: 0;
    }

    .feature-item span {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .btn-quick-view {
        padding: 14px 28px;
        font-size: 1.05rem;
    }

    .unit-status-badge {
        padding: 9px 20px;
        font-size: 0.85rem;
        top: 15px;
        right: 15px;
    }

    .unit-status-badge i {
        font-size: 1rem;
    }

    .unit-card-body {
        padding: 1.75rem;
        display: flex;
        flex-direction: column;
    }

    .unit-title-row {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
    }

    .unit-title-row h4 {
        font-size: 1.3rem;
        flex: 1;
    }

    .unit-dimension {
        padding: 8px 14px;
    }

    .unit-dimension span {
        font-size: 0.9rem;
    }

    .unit-areas-row {
        gap: 0.75rem;
    }

    .area-item {
        padding: 0.9rem;
    }

    .area-value {
        font-size: 1.05rem;
    }

    .unit-features-grid {
        gap: 0.6rem;
    }

    .feature-item {
        padding: 9px 8px;
    }

    .feature-item span {
        font-size: 0.8rem;
    }

    .unit-card-actions {
        margin-top: auto;
        padding-top: 1.25rem;
    }

    .unit-card-actions .btn {
        padding: 13px 25px;
        font-size: 0.95rem;
    }

    /* Modal Responsive */
    .unit-modal {
        padding: 10px;
    }

    .unit-modal-content {
        width: 95%;
        max-width: 95%;
        margin: 20px;
        border-radius: 20px;
    }

    /* Strategic Locations Responsive */
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Bank Partners Responsive */
    .bank-partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .bank-card {
        padding: 1.5rem 1rem;
    }

    .bank-logo {
        width: 70px;
        height: 70px;
    }

    .bank-logo i {
        font-size: 2rem;
    }

    .bank-card h4 {
        font-size: 1rem;
    }

    .bank-card p {
        font-size: 0.85rem;
    }

    /* Payment Methods Responsive */
    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .payment-card {
        padding: 2rem;
    }

    .payment-icon {
        width: 90px;
        height: 90px;
    }

    .payment-icon i {
        font-size: 2.5rem;
    }

    .payment-card h3 {
        font-size: 1.6rem;
    }

    .payment-feature {
        padding: 0.75rem 0;
    }

    .payment-feature span {
        font-size: 0.9rem;
    }

    .location-image-wrapper {
        height: 200px;
    }

    .location-icon {
        width: 60px;
        height: 60px;
    }

    .location-icon i {
        font-size: 1.7rem;
    }

    .location-info {
        padding: 1.5rem;
    }

    .location-info h4 {
        font-size: 1.2rem;
    }

    .location-info p {
        font-size: 0.9rem;
    }

    .location-distance {
        padding: 9px 13px;
    }

    .location-distance i {
        font-size: 1.1rem;
    }

    .location-distance span {
        font-size: 0.85rem;
    }

    .locations-cta .btn-large {
        padding: 14px 35px;
        font-size: 1rem;
    }

    .modal-body {
        padding: 3rem 2.5rem;
    }

    .modal-body h2 {
        font-size: 2.2rem;
    }

    .modal-body p {
        font-size: 1.15rem;
    }

    .modal-actions .btn {
        padding: 16px 35px;
        font-size: 1.05rem;
    }

    /* Unit Showcase Responsive */
    .unit-showcase {
        grid-template-columns: 1fr;
    }

    .unit-card-large {
        max-width: 500px;
        margin: 0 auto;
    }

    .unit-image {
        height: 200px;
    }

    .unit-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .unit-header h4 {
        font-size: 1.3rem;
    }

    .unit-specs {
        grid-template-columns: 1fr;
    }

    .unit-areas {
        flex-direction: column;
    }

    .unit-actions {
        grid-template-columns: 1fr;
    }

    /* Commercial Hero Responsive */
    .commercial-hero {
        padding: 3rem 2rem;
    }

    .commercial-icon-hero {
        width: 100px;
        height: 100px;
    }

    .commercial-icon-hero i {
        font-size: 3rem;
    }

    .commercial-hero h3 {
        font-size: 2rem;
    }

    .commercial-hero p {
        font-size: 1.1rem;
    }

    .commercial-highlights {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .highlight-item {
        padding: 10px 18px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .highlight-item i {
        font-size: 1.3rem;
    }

    .highlight-item span {
        font-size: 0.9rem;
    }

    /* Commercial Features Responsive */
    .commercial-features-grid {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .comm-feature-card {
        padding: 2rem 1.5rem;
    }

    .comm-feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }

    .comm-feature-icon i {
        font-size: 2.5rem;
    }

    .comm-feature-card h4 {
        font-size: 1.2rem;
    }

    .comm-feature-card p {
        font-size: 0.9rem;
    }

    .commercial-cta {
        padding: 2rem 1.5rem 2.5rem;
    }

    .commercial-cta .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .stats-bar-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-bar-item {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }

    .stat-bar-content {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .stat-bar-label {
        text-align: center;
        margin-top: 8px;
    }

    .stat-bar-divider {
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    }

    .about-lead {
        font-size: 1.1rem;
    }
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 2rem;
    }

    .nav-menu a {
        color: var(--text-color);
        display: block;
    }

    .lang-toggle {
        position: absolute;
        top: 15px;
        right: 60px;
        margin-left: 0;
        background: rgba(30, 58, 95, 0.1);
        border-color: rgba(30, 58, 95, 0.3);
    }

    .lang-toggle .lang-text {
        color: var(--dark-color);
    }

    .quick-stats-bar {
        padding: 40px 0;
    }

    .stat-bar-icon {
        width: 50px;
        height: 50px;
    }

    .stat-bar-icon i {
        font-size: 1.2rem;
    }

    .stat-bar-number {
        font-size: 2rem;
    }

    .stat-bar-suffix {
        font-size: 1.2rem;
    }

    .stat-bar-label {
        font-size: 0.85rem;
    }

    .stats-bar-cta p {
        font-size: 1rem;
    }

    .map-cta {
        flex-direction: column;
        align-items: center;
    }

    .map-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    /* FAQ Responsive */
    .faq-section {
        padding: 80px 0;
    }

    .faq-category {
        margin-bottom: 2.5rem;
    }

    .faq-category h3 {
        font-size: 1.3rem;
        padding: 1.25rem 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-question:hover {
        padding-left: 1.7rem;
    }

    .faq-answer p {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .products-section {
        padding: 80px 0;
    }

    .category-header {
        padding: 1.5rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 1.8rem;
    }

    .category-title h3 {
        font-size: 1.4rem;
    }

    .category-title p {
        font-size: 0.9rem;
    }

    .cluster-section {
        padding: 1.25rem;
    }

    .cluster-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .cluster-header i {
        font-size: 1.2rem;
    }

    .cluster-header h4 {
        font-size: 1.2rem;
    }

    .unit-card {
        padding: 1.5rem;
    }

    .unit-icon {
        width: 60px;
        height: 60px;
    }

    .unit-icon i {
        font-size: 1.8rem;
    }

    .unit-card h5 {
        font-size: 1.2rem;
    }

    .unit-dimension {
        padding: 8px 12px;
    }

    .unit-dimension span {
        font-size: 1rem;
    }

    .unit-features li {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }

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

    .commercial-icon-large {
        width: 70px;
        height: 70px;
    }

    .commercial-icon-large i {
        font-size: 2rem;
    }

    .commercial-card h4 {
        font-size: 1.1rem;
    }

    .commercial-cta .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .map-showcase {
        gap: 1.5rem;
    }

    .map-frame {
        border-radius: 20px;
    }

    .map-info-panel {
        border-radius: 20px;
    }

    .panel-header {
        padding: 1.25rem;
    }

    .panel-header h3 {
        font-size: 1.2rem;
    }

    .facility-item {
        padding: 0.75rem;
    }

    .facility-icon {
        width: 45px;
        height: 45px;
    }

    .quick-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .quick-stat {
        width: 100%;
        justify-content: center;
    }

    .map-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .map-feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-card-icon {
        width: 60px;
        height: 60px;
    }

    .feature-card-icon i {
        font-size: 1.5rem;
    }

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

    .hotspot i {
        font-size: 1rem;
    }

    .map-controls {
        top: 15px;
        right: 15px;
    }

    .map-control-btn {
        width: 40px;
        height: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .hero-offer {
        font-size: 1rem;
        padding: 8px 15px;
    }

    .hero-promo-tag {
        font-size: 0.85rem;
        padding: 10px 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn-hero {
        width: 100%;
        max-width: 300px;
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trust-item {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .trust-item i {
        font-size: 1.2rem;
    }

    .about-hero-static {
        height: 450px;
    }

    .about-hero-content h2 {
        font-size: 1.8rem;
    }

    .about-lead {
        font-size: 1rem;
    }

    .about-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .stats-grid-modern {
        grid-template-columns: 1fr;
    }

    .about-stats-modern {
        padding: 2rem 1.5rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .trust-badge-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .about-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .featured-card,
    .featured-card:hover {
        transform: scale(1);
    }

    .project-actions {
        grid-template-columns: 1fr;
    }

    .promo-banner {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
    }

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

    .property-types-grid {
        grid-template-columns: 1fr;
    }

    .property-type-card.featured {
        transform: scale(1);
    }

    .property-type-card.featured:hover {
        transform: translateY(-10px);
    }

    .developer-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .developer-logo h2 {
        font-size: 2rem;
    }

    .developer-tagline {
        font-size: 1rem;
    }

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

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .products-section {
        padding: 60px 0;
    }

    .product-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .cluster-selector {
        flex-direction: column;
    }

    .cluster-btn {
        width: 100%;
        justify-content: center;
    }

    .cluster-intro {
        padding: 1.5rem 1rem;
    }

    .cluster-intro-content h3 {
        font-size: 1.4rem;
    }

    .cluster-intro-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cluster-specs {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cluster-spec {
        padding: 10px 15px;
    }

    /* Cluster Overview Responsive - Small Mobile */
    .overview-main img {
        height: 250px;
    }

    .overview-title {
        padding: 1.5rem;
    }

    .overview-title h3 {
        font-size: 1.4rem;
    }

    .overview-title p {
        font-size: 0.95rem;
    }

    .overview-card img {
        height: 180px;
    }

    .overview-card.clickable:hover {
        transform: translateY(-5px);
    }

    .overview-overlay i {
        font-size: 2.5rem;
    }

    .overview-overlay h4 {
        font-size: 1.1rem;
    }

    .overview-overlay p {
        font-size: 0.9rem;
    }

    /* Facilities Responsive - Small Mobile */
    .section-subheader {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 10px;
    }

    .section-subheader i {
        font-size: 1.5rem;
    }

    .section-subheader h3 {
        font-size: 1.3rem;
    }

    .facility-showcase {
        padding: 1.5rem;
    }

    .facility-main {
        margin-bottom: 1.5rem;
    }

    .facility-main img {
        height: 280px;
    }

    .facility-caption {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .facility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .facility-item img {
        height: 220px;
    }

    .facility-item.large {
        grid-column: span 1;
    }

    .facility-item.large img {
        height: 220px;
    }

    .facility-label {
        font-size: 0.95rem;
        padding: 1rem 0.75rem;
        min-height: 55px;
        line-height: 1.5;
    }

    /* Overview Cards Responsive - Small Mobile */
    .overview-card {
        border-radius: 12px;
    }

    .overview-card img {
        height: 180px;
    }

    .overview-card.clickable:hover {
        transform: translateY(-5px);
    }

    .overview-overlay i {
        font-size: 2.5rem;
    }

    .overview-overlay h4 {
        font-size: 1.1rem;
    }

    .overview-overlay p {
        font-size: 0.9rem;
    }

    /* Overview Main Clickable - Small Mobile */
    .overview-main img {
        height: 250px;
    }

    .overview-main.clickable:hover img {
        transform: scale(1.05);
    }

    .overview-overlay-large i {
        font-size: 2.5rem;
    }

    .overview-overlay-large h4 {
        font-size: 1.2rem;
    }

    .overview-overlay-large p {
        font-size: 0.9rem;
    }

    /* Bank Partners Responsive - Small Mobile */
    .bank-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .bank-card {
        padding: 1.25rem 0.75rem;
    }

    .bank-logo {
        width: 60px;
        height: 60px;
    }

    .bank-logo i {
        font-size: 1.8rem;
    }

    .bank-card h4 {
        font-size: 0.9rem;
    }

    .bank-card p {
        font-size: 0.8rem;
    }

    /* Payment Methods Responsive - Small Mobile */
    .payment-methods-grid {
        gap: 1.5rem;
    }

    .payment-card {
        padding: 1.5rem;
    }

    .payment-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
    }

    .payment-icon i {
        font-size: 2.2rem;
    }

    .payment-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .payment-features {
        margin-bottom: 2rem;
    }

    .payment-feature {
        padding: 0.6rem 0;
        gap: 10px;
    }

    .payment-feature i {
        font-size: 1rem;
        width: 20px;
    }

    .payment-feature span {
        font-size: 0.85rem;
    }

    .payment-card .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Facilities Slideshow Modal Responsive */
    .facilities-modal-content {
        width: 98%;
        max-height: 98vh;
    }

    .slideshow-container {
        height: 50vh;
    }

    .slideshow-header {
        padding: 1rem 1.5rem;
    }

    .slideshow-header h3 {
        font-size: 1.3rem;
    }

    .slideshow-nav {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .slideshow-thumbnails {
        padding: 1rem;
        gap: 10px;
    }

    .thumbnail {
        flex: 0 0 80px;
        height: 55px;
    }

    .slide-caption {
        font-size: 1.1rem;
        padding: 1.25rem;
    }

    /* Unit Detail Modal Responsive */
    .unit-detail-header {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .unit-detail-images {
        height: 350px;
    }

    .unit-detail-info {
        padding: 2rem;
    }

    .unit-detail-info h2 {
        font-size: 1.8rem;
    }

    .unit-detail-price {
        padding: 1.5rem;
    }

    .unit-detail-price .price-value {
        font-size: 2rem;
    }

    .unit-detail-specs {
        grid-template-columns: 1fr;
    }

    .unit-detail-features ul {
        grid-template-columns: 1fr;
    }

    .unit-detail-features li {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        min-height: 55px;
    }

    .unit-detail-actions {
        grid-template-columns: 1fr;
    }

    .unit-detail-tabs {
        padding: 1rem;
        gap: 0.5rem;
        overflow-x: auto;
    }

    .unit-detail-tabs .tab-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .unit-detail-tab-content {
        padding: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .specs-detail {
        grid-template-columns: 1fr;
    }

    .btn-facilities {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .btn-facilities i {
        font-size: 1.2rem;
    }

    /* Units Section Responsive */
    .units-section {
        margin-bottom: 1.5rem;
    }

    /* Unit Cards Responsive - Small Mobile */
    .unit-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .unit-card-interactive {
        max-width: 100%;
    }

    .unit-image-wrapper {
        height: 180px;
    }

    .unit-title-row {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        align-items: center;
    }

    .unit-title-row h4 {
        font-size: 1.15rem;
    }

    .unit-dimension {
        padding: 6px 12px;
    }

    .unit-dimension i {
        font-size: 1rem;
    }

    .unit-dimension span {
        font-size: 0.85rem;
    }

    .unit-areas-row {
        flex-direction: column;
        gap: 0.6rem;
    }

    .area-item {
        padding: 0.8rem;
    }

    .area-label {
        font-size: 0.7rem;
    }

    .area-value {
        font-size: 1rem;
    }

    .unit-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .feature-item {
        padding: 8px 6px;
        gap: 6px;
    }

    .feature-item i {
        font-size: 0.95rem;
        width: 18px;
        flex-shrink: 0;
    }

    .feature-item span {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .btn-quick-view {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .btn-quick-view i {
        font-size: 1rem;
    }

    .unit-status-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
        top: 10px;
        right: 10px;
    }

    .unit-status-badge i {
        font-size: 0.9rem;
    }

    .unit-card-body {
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
    }

    .unit-title-row {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
    }

    .unit-title-row h4 {
        font-size: 1.15rem;
        flex: 1;
    }

    .unit-dimension {
        padding: 6px 12px;
    }

    .unit-dimension span {
        font-size: 0.85rem;
    }

    .unit-areas-row {
        gap: 0.6rem;
    }

    .area-item {
        padding: 0.8rem;
    }

    .area-value {
        font-size: 1rem;
    }

    .unit-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .feature-item {
        padding: 8px 6px;
    }

    .feature-item span {
        font-size: 0.75rem;
    }

    .unit-card-actions {
        margin-top: auto;
        padding-top: 1rem;
    }

    .unit-card-actions .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* FAQ Responsive - Mobile */
    .faq-section {
        padding: 60px 0;
    }

    .faq-category {
        margin-bottom: 2rem;
        border-radius: 15px;
    }

    .faq-category h3 {
        font-size: 1.2rem;
        padding: 1.25rem 1.5rem;
        gap: 12px;
    }

    .faq-category h3 i {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.9rem;
    }

    .faq-question:hover {
        padding-left: 1.7rem;
    }

    .faq-answer p {
        padding: 1.5rem;
        font-size: 0.9rem;
        line-height: 1.8;
    }

    /* Modal Responsive - Small Mobile */
    .modal-body {
        padding: 2rem 1.5rem;
    }

    .modal-body h2 {
        font-size: 1.5rem;
    }

    .modal-body p {
        font-size: 0.95rem;
    }

    .modal-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .modal-actions .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Strategic Locations Responsive - Small Mobile */
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .location-image-wrapper {
        height: 200px;
    }

    .location-icon {
        width: 55px;
        height: 55px;
    }

    .location-icon i {
        font-size: 1.5rem;
    }

    .location-info {
        padding: 1.25rem;
    }

    .location-info h4 {
        font-size: 1.1rem;
    }

    .location-info p {
        font-size: 0.85rem;
    }

    .location-distance {
        padding: 8px 12px;
    }

    .location-distance i {
        font-size: 1rem;
    }

    .location-distance span {
        font-size: 0.8rem;
    }

    .locations-cta .btn-large {
        padding: 13px 30px;
        font-size: 0.95rem;
    }

    .modal-close-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
        top: 15px;
        right: 15px;
    }

    /* Commercial Section Responsive - Small Mobile */
    .commercial-hero {
        padding: 2.5rem 1.5rem;
    }

    .commercial-icon-hero {
        width: 80px;
        height: 80px;
    }

    .commercial-icon-hero i {
        font-size: 2.5rem;
    }

    .commercial-hero h3 {
        font-size: 1.6rem;
    }

    .commercial-hero p {
        font-size: 1rem;
    }

    .highlight-item {
        padding: 8px 15px;
    }

    .highlight-item i {
        font-size: 1.2rem;
    }

    .highlight-item span {
        font-size: 0.85rem;
    }

    .commercial-features-grid {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
    }

    .comm-feature-card {
        padding: 1.5rem 1rem;
    }

    .comm-feature-icon {
        width: 70px;
        height: 70px;
    }

    .comm-feature-icon i {
        font-size: 2.2rem;
    }

    .comm-feature-card h4 {
        font-size: 1.1rem;
    }

    .comm-feature-card p {
        font-size: 0.85rem;
    }

    .commercial-cta {
        padding: 1.5rem 1rem 2rem;
    }

    .commercial-cta .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    /* Units Table Responsive */
    .units-table-container {
        border: none;
        box-shadow: none;
    }

    .units-table {
        min-width: 750px;
        font-size: 0.8rem;
    }

    .units-table thead th {
        padding: 12px 8px;
        font-size: 0.75rem;
    }

    .units-table tbody td {
        padding: 12px 8px;
    }

    .unit-name strong {
        font-size: 0.95rem;
    }

    .badge-inline {
        font-size: 0.65rem;
        padding: 2px 8px;
    }

    .status-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .btn-sm {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .unit-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .unit-card {
        padding: 1.25rem;
    }

    .unit-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .unit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .unit-icon i {
        font-size: 1.5rem;
    }

    .unit-card h5 {
        font-size: 1.1rem;
    }

    .unit-dimension {
        padding: 8px 12px;
        margin-bottom: 1rem;
    }

    .unit-dimension span {
        font-size: 0.95rem;
    }

    .unit-features {
        margin-bottom: 1.25rem;
    }

    .unit-features li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
    }

    .unit-features li i {
        font-size: 0.9rem;
    }

    .unit-area {
        padding: 0.75rem;
        margin-bottom: 1.25rem;
        font-size: 0.85rem;
    }

    .unit-area span {
        font-size: 0.85rem;
    }

    .unit-card .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .commercial-info {
        padding: 1.5rem;
    }

    .commercial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .commercial-card {
        padding: 1.5rem;
    }

    .commercial-icon-large {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .commercial-icon-large i {
        font-size: 1.8rem;
    }

    .commercial-card h4 {
        font-size: 1rem;
    }

    .commercial-card p {
        font-size: 0.85rem;
    }

    .commercial-cta .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .cta-box h3 {
        font-size: 1.3rem;
    }

    .cta-box p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons .btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .quick-stats-bar {
        padding: 30px 0;
    }

    .stat-bar-item {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .stat-bar-icon {
        width: 45px;
        height: 45px;
    }

    .stat-bar-icon i {
        font-size: 1.1rem;
    }

    .stat-bar-number {
        font-size: 1.8rem;
    }

    .stat-bar-suffix {
        font-size: 1rem;
    }

    .stat-bar-label {
        font-size: 0.8rem;
    }

    .stat-bar-divider {
        width: 40px;
        height: 2px;
    }

    .stats-bar-cta {
        margin-top: 2rem;
    }

    .stats-bar-cta p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .stats-bar-cta .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .infrastructure-map {
        padding: 60px 0;
    }

    .infrastructure-map::before {
        display: none;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .map-showcase {
        gap: 1rem;
    }

    .map-frame {
        border-radius: 15px;
    }

    .map-info-panel {
        border-radius: 15px;
    }

    .panel-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .panel-header i {
        font-size: 1.5rem;
    }

    .panel-header h3 {
        font-size: 1.1rem;
    }

    .panel-content {
        padding: 1rem;
    }

    .facility-list {
        gap: 0.5rem;
    }

    .facility-item {
        padding: 0.6rem;
        gap: 10px;
    }

    .facility-item:hover {
        transform: translateX(0);
    }

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

    .facility-icon i {
        font-size: 1rem;
    }

    .facility-name {
        font-size: 0.85rem;
    }

    .facility-distance {
        font-size: 0.75rem;
    }

    .facility-indicator {
        display: none;
    }

    .panel-footer {
        padding: 1rem;
    }

    .quick-stats {
        gap: 0.5rem;
    }

    .quick-stat {
        padding: 10px 15px;
    }

    .quick-stat i {
        font-size: 1rem;
    }

    .quick-stat span {
        font-size: 0.8rem;
    }

    .map-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .map-feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .feature-card-icon i {
        font-size: 1.5rem;
    }

    .map-feature-card h4 {
        font-size: 1rem;
    }

    .map-feature-card p {
        font-size: 0.85rem;
    }

    .map-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .map-cta .btn {
        width: 100%;
        padding: 14px 25px;
        font-size: 0.9rem;
    }

    .map-controls {
        top: 10px;
        right: 10px;
    }

    .map-control-btn {
        width: 38px;
        height: 38px;
    }

    .map-scale {
        bottom: 10px;
        left: 10px;
        padding: 6px 12px;
    }

    .scale-bar {
        width: 60px;
    }

    .map-scale span {
        font-size: 0.7rem;
    }

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

    .hotspot i {
        font-size: 0.9rem;
    }

    .hotspot-tooltip {
        display: none;
    }

    .hotspot:hover {
        transform: translate(-50%, -50%) scale(1.15);
    }

    .stat-item {
        padding: 1rem;
    }

    .about-hero-static {
        height: 350px;
    }

    .about-hero-content h2 {
        font-size: 1.5rem;
    }

    .about-lead {
        font-size: 0.95rem;
    }

    .about-signature {
        flex-direction: column;
        gap: 10px;
    }

    .signature-text {
        text-align: center;
    }

    .section-subtitle h3 {
        font-size: 1.6rem;
    }

    .stats-grid-modern {
        grid-template-columns: 1fr;
    }

    .stat-modern-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon-wrap {
        width: 50px;
        height: 50px;
    }

    .stat-icon-wrap i {
        font-size: 1.2rem;
    }

    .about-stats-modern {
        padding: 1.5rem 1rem;
    }

    .about-features {
        margin-top: 1.5rem;
    }

    .about-feature-item {
        padding: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.2rem;
    }

    .about-trust-section {
        padding: 40px 0;
    }

    .trust-badges {
        gap: 0.75rem;
    }

    .trust-badge-item {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .developer-stats {
        grid-template-columns: 1fr;
    }

    .dev-stat-item h4 {
        font-size: 2rem;
    }

    .dev-stat-item i {
        font-size: 2rem;
    }

    .developer-logo h2 {
        font-size: 1.6rem;
    }

    .developer-description .highlight {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .project-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Location Slider Responsive */
    .locations-slider-container {
        height: 60vh;
        min-height: 500px;
    }

    .slide-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }

    .slide-icon {
        width: 80px;
        height: 80px;
    }

    .slide-icon i {
        font-size: 2.5rem;
    }

    .slide-content h3 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .slide-distance {
        padding: 0.8rem 1.5rem;
    }

    .slide-distance i {
        font-size: 1.2rem;
    }

    .slide-distance span {
        font-size: 1rem;
    }

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

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

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

    .slider-dots {
        bottom: 20px;
    }

    .slider-dots .dot {
        width: 12px;
        height: 12px;
    }

    .slider-dots .dot.active {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   IMPROVED MOBILE-FRIENDLY & COMPACT STYLES
   ============================================ */

/* Better spacing for mobile */
@media (max-width: 768px) {
    /* Compact navbar */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-wrapper {
        padding: 0.8rem 0;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    /* COMPACT Stats Bar - ALWAYS HORIZONTAL */
    .quick-stats-bar {
        padding: 15px 0;
    }
    
    .stats-bar-wrapper {
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;
        gap: 5px !important;
        flex-wrap: nowrap !important;
    }
    
    .stat-bar-item {
        flex: 1 !important;
        min-width: 0 !important;
        padding: 5px 8px !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 3px !important;
    }
    
    .stat-bar-item:hover {
        transform: none;
    }
    
    .stat-bar-icon {
        width: 35px !important;
        height: 35px !important;
        border-radius: 10px !important;
        flex-shrink: 0 !important;
    }
    
    .stat-bar-icon i {
        font-size: 1rem !important;
    }
    
    .stat-bar-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }
    
    .stat-bar-number {
        font-size: 1.2rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }
    
    .stat-bar-suffix {
        font-size: 0.85rem !important;
    }
    
    .stat-bar-label {
        font-size: 0.65rem !important;
        text-align: center !important;
        margin-top: 2px !important;
        white-space: nowrap !important;
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .stat-bar-divider {
        display: none !important;
    }
    
    /* Compact hero section */
    .hero {
        height: 60vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    
    .trust-item {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    .trust-item i {
        font-size: 1.2rem;
    }
    
    /* Compact stats bar */
    .quick-stats-bar {
        padding: 25px 0;
    }
    
    .stats-bar-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-bar-item {
        padding: 10px 15px;
        width: 100%;
        justify-content: center;
    }
    
    .stat-bar-divider {
        display: none;
    }
    
    .stat-bar-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-bar-icon i {
        font-size: 1.2rem;
    }
    
    .stat-bar-number {
        font-size: 1.8rem;
    }
    
    .stat-bar-suffix {
        font-size: 1.2rem;
    }
    
    .stat-bar-label {
        font-size: 0.8rem;
    }
    
    /* Compact sections */
    .products-section,
    .locations-parallax-section,
    .faq-section,
    .contact,
    .developer-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Compact unit cards */
    .unit-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .unit-card-interactive {
        margin-bottom: 0;
    }
    
    /* Compact features */
    .unit-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
    
    /* Compact location slides */
    .location-slide {
        min-height: 400px;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
    }
    
    .slide-distance {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Compact FAQ */
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    /* Compact contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-bottom: 0.5rem;
    }
    
    /* Compact footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-section ul {
        padding: 0;
    }
    
    .footer-section ul li {
        list-style: none;
        margin: 0.5rem 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    /* ULTRA COMPACT Stats Bar - ALWAYS HORIZONTAL */
    .quick-stats-bar {
        padding: 10px 0 !important;
    }
    
    .stats-bar-wrapper {
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;
        gap: 3px !important;
        flex-wrap: nowrap !important;
    }
    
    .stat-bar-item {
        flex: 1 !important;
        min-width: 0 !important;
        padding: 3px 5px !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 2px !important;
    }
    
    .stat-bar-item:hover {
        transform: none !important;
    }
    
    .stat-bar-icon {
        width: 32px !important;
        height: 32px !important;
        border-radius: 8px !important;
        flex-shrink: 0 !important;
    }
    
    .stat-bar-icon i {
        font-size: 0.95rem !important;
    }
    
    .stat-bar-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }
    
    .stat-bar-number {
        font-size: 1.1rem !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }
    
    .stat-bar-suffix {
        font-size: 0.75rem !important;
    }
    
    .stat-bar-label {
        font-size: 0.6rem !important;
        text-align: center !important;
        margin-top: 1px !important;
        white-space: nowrap !important;
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .stat-bar-divider {
        display: none !important;
    }
    
    /* Ultra compact navbar */
    .lang-toggle {
        padding: 6px 10px;
    }
    
    .lang-text {
        font-size: 0.8rem;
    }
    
    /* Ultra compact hero */
    .hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-promo-tag {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .btn-hero {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-trust-badges {
        gap: 0.5rem;
    }
    
    .trust-item {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .trust-item i {
        font-size: 1rem;
    }
    
    /* Ultra compact stats */
    .stat-bar-item {
        padding: 8px 12px;
    }
    
    .stat-bar-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-bar-number {
        font-size: 1.5rem;
    }
    
    .stat-bar-label {
        font-size: 0.75rem;
    }
    
    /* Ultra compact sections */
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .product-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Ultra compact unit cards */
    .unit-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .feature-item {
        padding: 0.5rem;
        font-size: 0.8rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-item i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    /* Ultra compact location */
    .location-slide {
        min-height: 300px;
    }
    
    .slide-icon {
        width: 50px;
        height: 50px;
    }
    
    .slide-icon i {
        font-size: 1.5rem;
    }
    
    .slide-content h3 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.85rem;
    }
    
    .slide-distance {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav i {
        font-size: 1rem;
    }
    
    /* Ultra compact buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* Tablet devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .products-section {
        padding: 60px 0;
    }
    
    .unit-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .locations-parallax-section {
        padding: 60px 0;
    }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    /* Larger touch targets */
    .nav-menu a,
    .btn,
    .tab-btn,
    .faq-question,
    .slider-nav,
    .slider-dots .dot {
        min-height: 44px;
    }
    
    /* Better spacing for touch */
    .btn {
        margin: 0.3rem 0;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Optimize images */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Performance improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--white);
    }
    
    .trust-item {
        border: 2px solid var(--white);
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-video,
    .btn,
    .slider-nav,
    .slider-dots,
    .lang-toggle,
    .hamburger {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
