/*
Theme Name: Empire mv - remoon
Theme URI: https://empireinvests.com
Author: Ibrahem
Author URI: https://empireinvests.com
Description: Landing page theme for Empire - Mountain View.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: empire-mv
*/

/* ========================================
   CSS Variables & Reset
======================================== */
:root {
    --color-primary: #fff;
    --color-secondary: #6b3a3a;
    --color-accent: #8b5a5a;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-text: #333333;
    --color-text-light: #eee;
    --font-primary: 'Cairo', 'Playfair Display', Georgia, serif;
    --font-secondary: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    text-align: right;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

 svg,
 svg * {
  pointer-events: none;
}

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

/* ========================================
   Header Styles
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo a {
    display: block;
}

.logo-tagline {
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--color-text-light);
    margin-top: 2px;
    text-transform: uppercase;
}

/* Header Left (RTL) */
.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row-reverse;
}

.whatsapp-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.whatsapp-icon:hover {
    background: rgba(0, 0, 0, 0.05);
}

.btn-consultation {
    padding: 12px 28px;
    border: 1.5px solid var(--color-primary);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
    background: transparent;
    transition: var(--transition);
}



.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-primary);
}

.language-switcher:hover {
    opacity: 0.7;
}

.flag-icon {
    font-size: 18px;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

/* ========================================
   Hero Section
======================================== */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 ;

}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        225deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

/* Developer Badge */
.developer-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.developer-logo {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-primary);
}

.developer-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--color-primary);
    text-transform: uppercase;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 24px;
}

/* Hero Description */
.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 520px;
	font-weight : bold
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: var(--color-white);
    border: 1.5px solid var(--color-primary);
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition);
}



.btn-download svg {
    transition: var(--transition);
}

.btn-download:hover svg {
    transform: translateY(2px);
}

.btn-reserve {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    background: transparent;
    border: 1.5px solid rgba(26, 26, 46, 0.3);
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-primary);
    transition: var(--transition);
}

.btn-reserve:hover {
    border-color: var(--color-primary);
    background: rgba(26, 26, 46, 0.05);
}

/* Price Info Card */
.price-info-card {
    position: absolute;
    left: 40px;
    right: auto;
    bottom: 80px;
}

.price-row {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
	width:100%
}

.price-item {
    padding: 24px 32px;
	flex-grow : 1 ;
    display: flex;
    flex-direction: column;
    min-width: 160px;
}

.price-main {
    background: var(--color-secondary);
    color: var(--color-white);
}

.price-plan {
    background: rgba(60, 40, 40, 0.9);
    color: var(--color-white);
}

.price-value {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 4px;
    direction: ltr;
}

.price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.price-usd {
    font-size: 14px;
    opacity: 0.9;
}

.price-detail {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.4;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1200px) {
    .hero-container {
        padding: 100px 30px 60px;
    }
    
    .price-info-card {
position: relative;
inset: auto;}
}

@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }
    
    .btn-consultation {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .hero-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding-bottom: 40px;
    }
	.herotop{
		        flex-direction: column;

	}
       .price-info-card {
        position: relative;
        right: 0;
        bottom: 0;
        align-self: flex-start;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 0;
    }
    
    .header-left {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    

    
    .hero-container {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
		width : 100%
    }
    
    .btn-download,
    .btn-reserve {
        width: 100%;
        justify-content: center;
    }

    
    .price-item {
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .logo svg {
        width: 100px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .developer-name {
        font-size: 12px;
    }
}

/* ========================================
   Latest Projects Section
======================================== */
.latest-projects-section {
    padding: 80px 0;
    background-color: var(--color-white);
    position: relative;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Project Card */
.project-card {
    display: block;
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.project-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 30%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.3) 100%
    );
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 30%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

.project-info {
    position: absolute;
    bottom: 50px;
    right: 0;
    left: 0;
    padding: 30px;
    color: var(--color-white);
    z-index: 2;
	text-align: left;
}

.project-name {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.project-location {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 400;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.floating-btn-arrow {
    padding: 15px;
}

.floating-btn-request,
.floating-btn-call {
    flex-direction: column;
    padding: 15px 10px;
}

.floating-btn span {
    font-size: 11px;
    font-weight: 500;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.floating-btn-request span,
.floating-btn-call span {
    writing-mode: horizontal-tb;
    font-size: 12px;
}

/* ========================================
   Latest Projects Responsive
======================================== */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .project-card {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .section-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-card {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .latest-projects-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        height: 360px;
    }
    
    .project-name {
        font-size: 20px;
    }
    
    .floating-actions {
        bottom: 20px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 10px;
    }
    
    .floating-btn {
        border-radius: 50px;
        padding: 12px 20px;
    }
    
    .floating-btn-arrow {
        display: none;
    }
    
    .floating-btn-request,
    .floating-btn-call {
        flex-direction: row;
    }
    
    .floating-btn span {
        writing-mode: horizontal-tb;
    }
}

@media (max-width: 480px) {
    .project-card {
        height: 320px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-name {
        font-size: 18px;
    }
}

/* ========================================
   Payment Plan Section
======================================== */
.payment-plan-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.payment-header {
    text-align: center;
    margin-bottom: 60px;
}

.payment-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.payment-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
}

/* Payment Cards */
.payment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-card {
    background: #ffffff;
    border: 1px solid #d5d5d5;
    border-radius: 8px;
    padding: 40px 30px 30px;
    text-align: center;
    transition: var(--transition);
}

.payment-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.payment-percentage {
    font-family: var(--font-primary);
    font-size: 45px;
    font-weight: 300;
    color: #0d1b2a;
    line-height: 1;
    margin-bottom: 20px;
}

.payment-label {
    background: #0d1b2a;
    padding: 12px 20px;
    margin: 0 -30px;
}

.payment-label span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.payment-note {
    font-size: 15px;
    color: #333333;
    margin-top: 20px;
    font-weight: 500;
}

/* Payment Plan Responsive */
@media (max-width: 992px) {
    .payment-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .payment-percentage {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .payment-plan-section {
        padding: 60px 0;
    }
    
    .payment-title {
        font-size: 28px;
    }
    
    .payment-description {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .payment-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .payment-percentage {
        font-size: 35px;
    }
    
    .payment-card {
        padding: 30px 20px 25px;
    }
    
    .payment-label {
        margin: 0 -20px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .payment-percentage {
        font-size: 35px;
    }
    
    .payment-label span {
        font-size: 14px;
    }
}

/* ========================================
   Amenities Section
======================================== */
.amenities-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.amenities-header {
    text-align: center;
    margin-bottom: 60px;
}

.amenities-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.amenities-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    max-width: 900px;
    margin: 0 auto;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
}

.amenity-item:hover {
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #0d1b2a;
    transition: var(--transition);
}

.amenity-item:hover .amenity-icon {
    color: #1a1a2e;
    transform: scale(1.1);
}

.amenity-icon svg {
    width: 100%;
    height: 100%;
}

.amenity-name {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: bold;
    color: #1a1a2e;
    line-height: 1.4;
}

/* CTA Button */
.amenities-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-register {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #0d1b2a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-register:hover {
    background: #1a1a2e;
    transform: translateX(-5px);
}

.btn-register svg {
    transition: var(--transition);
}

.btn-register:hover svg {
    transform: translateX(-3px);
}

/* Amenities Responsive */
@media (max-width: 1200px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .amenity-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 60px 0;
    }
    
    .amenities-title {
        font-size: 28px;
    }
    
    .amenities-description {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .amenities-grid {
        padding: 0 20px;
    }
    
    .amenity-item {
        padding: 25px 15px;
    }
    
    .btn-register {
        padding: 14px 32px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
        .amenities-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2px;
        padding: 0;
    }
   .amenity-icon {
        width: 45px;
        height: 45px;
    }
    
    .amenity-name {
        font-size: 14px;
    }
}

/* ========================================
   Video Section
======================================== */
.video-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.video-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.video-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.project-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    background: #000;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.1);
}

/* Video Responsive */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-title {
        font-size: 28px;
    }
    
    .video-description {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .video-container {
        margin: 0 20px;
        border-radius: 8px;
    }
    
    .play-button svg {
        width: 60px;
        height: 60px;
    }
}

/* ========================================
   Contact Form Section
======================================== */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
}

/* Inline Contact Form */
.contact-form-inline {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

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

/* Shared Form Inputs */
.form-input {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-secondary);
    font-size: 15px;
    color: #333333;
    background: #f8f9fa;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    transition: var(--transition);
    text-align: right;
}

.form-input:focus {
    outline: none;
    border-color: #0d1b2a;
    background: #ffffff;
}

.form-input::placeholder {
    color: #999999;
}

/* Shared Submit Button */
.btn-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    background: #0d1b2a;
    color: #ffffff;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-form-submit:hover {
    background: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-form-submit svg {
    transition: var(--transition);
}

.btn-form-submit:hover svg {
    transform: translateX(-3px);
}

/* Popup Form */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: var(--transition);
    padding: 20px;
}

.popup-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.popup-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    position: relative;
    transform: scale(1);
    transition: var(--transition);
}

.popup-overlay.hidden .popup-container {
    transform: scale(0.9);
}

.popup-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #333333;
    transition: var(--transition);
}

.popup-close:hover {
    background: #e5e5e5;
    color: #0d1b2a;
}

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

.popup-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.popup-description {
    font-size: 15px;
    color: #666666;
}

.popup-form .form-group {
    margin-bottom: 20px;
}

.popup-form .btn-form-submit {
    width: 100%;
    margin-top: 10px;
}

/* Contact Form Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-description {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row .form-group {
        width: 100%;
    }
    
    .form-input {
        padding: 14px 18px;
    }
    
    .btn-form-submit {
        width: 100%;
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .popup-container {
        padding: 30px 25px;
    }
    
    .popup-title {
        font-size: 24px;
    }
}

/* ========================================
   Footer
======================================== */
.site-footer {
    background: #0d1b2a;
    padding: 30px 0;
    text-align: center;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.copyright {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 20px 0;
    }
    
    .copyright {
        font-size: 13px;
    }
}

/* ========================================
   Fixed Contact Buttons
======================================== */
.fixed-contact-buttons {
    position: fixed;
    left: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9998;
}

.fixed-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fixed-btn:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.fixed-btn svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

/* Phone Button */
.fixed-btn-phone {
    background: linear-gradient(145deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

.fixed-btn-phone:hover {
    background: linear-gradient(145deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    box-shadow: 0 10px 35px rgba(37, 99, 235, 0.6);
}

/* WhatsApp Button */
.fixed-btn-whatsapp {
    background: linear-gradient(145deg, #25d366 0%, #20bd5a 50%, #128c7e 100%);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.fixed-btn-whatsapp:hover {
    background: linear-gradient(145deg, #34eb77 0%, #25d366 50%, #20bd5a 100%);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

/* Pulse Animation for WhatsApp */
.fixed-btn-whatsapp::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    animation: pulse 2s infinite;
    z-index: -1;
}

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

/* Fixed Buttons Responsive */
@media (max-width: 768px) {
    .fixed-contact-buttons {
        left: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .fixed-btn {
        width: 54px;
        height: 54px;
    }
    
    .fixed-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .fixed-btn-whatsapp::before {
        width: 54px;
        height: 54px;
    }
}

/* Clickable Elements */
.amenity-item, div#openPopupBtn, .project-image, .payment-card, .btn-register {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .project-video {
        aspect-ratio: 9/12;
    }
}

.herotop {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.project-card div#openPopupBtn {
    position: absolute;
    bottom: 10px;
    padding: 8px 20px;
    right: auto;
    left: auto;
    margin: 0 20px;
	text-align : center ;
    width: calc(100% - 40px);
}

div#openPopupBtn span {
    text-align: center;
    display: block;
    width: 100%;
}

span.price-usd,.price-detail {
    display: none;
}

/* ========================================
   Mountain View Video Landing Template
======================================== */
body.page-template-page-mountain-view-landing {
    background: #020617;
}

.mv-video-landing {
    min-height: 100vh;
    background: #020617;
    color: #ffffff;
    overflow: hidden;
}

.mv-video-landing-container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
}

.mv-video-landing-header {
    min-height: 100px;
    background: #08277b;
    position: relative;
    z-index: 5;
}

.mv-video-landing-header-container {
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    direction: ltr;
}

.mv-video-landing-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.mv-video-landing-logo img {
    width: min(310px, 42vw);
    max-height: 64px;
    object-fit: contain;
}

.mv-video-landing-logo span {
    color: #ffffff;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.mv-video-landing-header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 8px 0;
    background: transparent;
    border: 0;
    color: #ffffff;
    font-family: var(--font-secondary);
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.mv-video-landing-header-button:hover,
.mv-video-landing-header-button:focus-visible {
    opacity: 0.82;
}

.mv-video-landing-header-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 6px;
}

.mv-video-landing-header-button svg {
    flex: 0 0 auto;
}

.mv-video-landing-hero {
    position: relative;
    min-height: max(620px, calc(100svh - 100px));
    display: flex;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
}

.mv-video-landing-hero-container {
    position: relative;
    z-index: 1;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 90px;
    padding-bottom: 120px;
}

.mv-video-landing-video,
.mv-video-landing-overlay {
    position: absolute;
    inset: 0;
}

.mv-video-landing-video {
    background-color: #08277b;
    background-position: center;
    background-size: cover;
    z-index: -3;
    overflow: hidden;
}

.mv-video-landing-video::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(2, 6, 23, 0.34);
    pointer-events: none;
}

.mv-video-landing-poster,
.mv-video-landing-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    border: 0;
    object-fit: cover;
    transform: translate(-50%, -50%);
    filter: brightness(0.72) saturate(1.08);
    pointer-events: none;
}

.mv-video-landing-poster {
    opacity: 1;
    transition: opacity 0.45s ease;
}

.mv-video-landing-bg-video {
    opacity: 0;
    transition: opacity 0.45s ease;
}

.mv-video-landing-video.is-loaded .mv-video-landing-bg-video {
    opacity: 1;
}

.mv-video-landing-video.is-loaded .mv-video-landing-poster {
    opacity: 0;
}

.mv-video-landing-overlay {
    z-index: -2;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.52) 0%, rgba(2, 6, 23, 0.58) 48%, rgba(2, 6, 23, 0.75) 100%);
}

.mv-video-landing-content {
    width: min(100%, 1180px);
    margin: 0 auto;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

.mv-video-landing-content h1 {
    color: #ffffff;
    font-family: var(--font-secondary);
    font-size: clamp(36px, 5.4vw, 78px);
    font-weight: 500;
    line-height: 1.35;
    margin: 0;
    letter-spacing: 0;
}

.mv-video-landing-content p {
    color: #ffffff;
    font-size: clamp(19px, 2.45vw, 36px);
    font-weight: 500;
    line-height: 1.6;
    margin: 18px auto 0;
    max-width: 980px;
}

.mv-gallery-section {
    padding: 90px 0;
    background: #f4f7fb;
    color: #0f172a;
}

.mv-gallery-header {
    text-align: center;
    margin-bottom: 44px;
}

.mv-gallery-title {
    color: #0f172a;
    font-family: var(--font-secondary);
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
    letter-spacing: 0;
}

.mv-gallery-subtitle {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
}

.mv-gallery-carousel-wrap {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 34px;
}

.mv-gallery-swiper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.mv-gallery-slide-button {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 380px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #dbe3ef;
    cursor: zoom-in;
}

.mv-gallery-slide-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.mv-gallery-slide-button:hover img,
.mv-gallery-slide-button:focus-visible img {
    transform: scale(1.035);
}

.mv-gallery-slide-button:focus-visible {
    outline: 3px solid #08277b;
    outline-offset: 4px;
}

.mv-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #475569;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
    transition: var(--transition);
}

.mv-gallery-nav:hover,
.mv-gallery-nav:focus-visible {
    background: #08277b;
    color: #ffffff;
}

.mv-gallery-pagination {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 16px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.mv-gallery-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.78);
    opacity: 1;
}

.mv-gallery-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: #ffffff;
}

.mv-gallery-prev {
    left: 7px;
}

.mv-gallery-next {
    right: 7px;
}

.mv-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    padding: 34px;
    background: rgba(2, 6, 23, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mv-gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.mv-gallery-lightbox img {
    max-width: min(1180px, 100%);
    max-height: calc(100vh - 96px);
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.mv-gallery-lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mv-gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #08277b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    transform: translateY(-50%);
    transition: var(--transition);
}

.mv-gallery-lightbox-nav:hover,
.mv-gallery-lightbox-nav:focus-visible,
.mv-gallery-lightbox-close:hover,
.mv-gallery-lightbox-close:focus-visible {
    background: #08277b;
    color: #ffffff;
}

.mv-gallery-lightbox-prev {
    left: 22px;
}

.mv-gallery-lightbox-next {
    right: 22px;
}

.mv-gallery-lightbox:not(.has-multiple) .mv-gallery-lightbox-nav,
.mv-gallery-lightbox:not(.has-multiple) .mv-gallery-lightbox-counter {
    display: none;
}

.mv-gallery-lightbox-counter {
    position: absolute;
    right: 50%;
    bottom: 20px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #08277b;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    transform: translateX(50%);
}

.mv-request-section {
    padding: 90px 0;
    background: #ffffff;
}

.mv-units-section {
    padding: 90px 0;
    background-color: #ffffff;
    color: #0f172a;
}

.mv-units-header {
    text-align: center;
    margin-bottom: 44px;
}

.mv-units-title {
    color: #0f172a;
    font-family: var(--font-secondary);
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 12px;
    letter-spacing: 0;
}

.mv-units-subtitle {
    color: #64748b;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto;
}

.mv-units-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mv-unit-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e6edf5;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.mv-unit-media {
    position: relative;
    height: 320px;
    background: #e2e8f0;
    overflow: hidden;
}

.mv-unit-media > img,
.mv-unit-lightbox-trigger,
.mv-unit-lightbox-trigger img,
.mv-unit-card-swiper,
.mv-unit-card-swiper .swiper-wrapper,
.mv-unit-card-swiper .swiper-slide,
.mv-unit-card-swiper img {
    width: 100%;
    height: 100%;
}

.mv-unit-media img {
    object-fit: cover;
}

.mv-unit-lightbox-trigger {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    overflow: hidden;
}

.mv-unit-lightbox-trigger img {
    transition: transform 0.45s ease;
}

.mv-unit-lightbox-trigger:hover img,
.mv-unit-lightbox-trigger:focus-visible img {
    transform: scale(1.035);
}

.mv-unit-lightbox-trigger:focus-visible {
    outline: 3px solid #08277b;
    outline-offset: -3px;
}

.mv-unit-pagination {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 14px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.mv-unit-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.78);
    opacity: 1;
}

.mv-unit-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: #ffffff;
}

.mv-unit-content {
    padding: 28px;
}

.mv-unit-card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e8edf4;
}

.mv-unit-card-head h3 {
    color: #0f172a;
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
}

.mv-unit-card-head span {
    color: #08277b;
    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
}

.mv-unit-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
    padding-top: 20px;
}

.mv-unit-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.mv-unit-feature svg {
    flex: 0 0 auto;
    color: #08277b;
}

.mv-unit-actions {
    display: grid;
    grid-template-columns: 48px 48px minmax(0, 1fr);
    gap: 10px;
    padding-top: 24px;
}

.mv-unit-action {
    width: 48px;
    height: 48px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #ffffff;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.mv-unit-action svg {
    flex: 0 0 auto;
    width: 23px;
    height: 23px;
}

.mv-unit-action-call svg {
    width: 21px;
    height: 21px;
}

.mv-unit-action-call,
.mv-unit-action-signup {
    background: #08277b;
    border-color: #08277b;
}

.mv-unit-action-signup {
    width: 100%;
    gap: 8px;
    padding: 0 16px;
}

.mv-unit-action-signup svg {
    width: 19px;
    height: 19px;
}

.mv-unit-action-whatsapp {
    background: #25d366;
    border-color: #25d366;
}

.mv-unit-action:hover,
.mv-unit-action:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.mv-unit-action-call:hover,
.mv-unit-action-call:focus-visible,
.mv-unit-action-signup:hover,
.mv-unit-action-signup:focus-visible {
    background: #0a328f;
    border-color: #0a328f;
}

.mv-unit-action-whatsapp:hover,
.mv-unit-action-whatsapp:focus-visible {
    background: #20bd5a;
    border-color: #20bd5a;
}

@media (max-width: 1200px) {
    .mv-units-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.mv-request-panel {
    max-width: 1280px;
    margin: 0 auto;
    padding: 70px 72px;
    background: #f6f9fd;
    border: 1px solid #e7edf5;
    border-radius: 8px;
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.07);
    text-align: center;
}

.mv-request-header {
    margin-bottom: 44px;
}

.mv-request-title {
    color: #0f172a;
    font-family: var(--font-secondary);
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 800;
    line-height: 1.25;
    margin: 0 0 14px;
    letter-spacing: 0;
}

.mv-request-subtitle {
    color: #718096;
    font-size: clamp(17px, 1.55vw, 24px);
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto;
}

.mv-request-fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(180px, 230px);
    gap: 22px;
    align-items: center;
    direction: rtl;
}

.mv-request-field {
    position: relative;
}

.mv-request-field-icon {
    position: absolute;
    top: 50%;
    right: 24px;
    z-index: 1;
    color: #94a3b8;
    display: flex;
    transform: translateY(-50%);
    pointer-events: none;
}

.mv-request-input {
    height: 64px;
    padding: 0 62px 0 24px;
    background: #ffffff;
    border: 1px solid #dfe7f0;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
    color: #0f172a;
    font-size: 17px;
    text-align: right;
}

.mv-request-input:focus {
    border-color: #08277b;
    box-shadow: 0 0 0 4px rgba(8, 39, 123, 0.1);
}

.mv-request-submit {
    width: 100%;
    height: 64px;
    padding: 0 28px;
    background: #08277b;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 16px 38px rgba(8, 39, 123, 0.24);
}

.mv-request-submit:hover,
.mv-request-submit:focus-visible {
    background: #0a328f;
    transform: translateY(-2px);
}

body.page-template-page-mountain-view-landing .payment-title,
body.page-template-page-mountain-view-landing .amenities-title,
body.page-template-page-mountain-view-landing .contact-title,
body.page-template-page-mountain-view-landing .popup-title,
body.page-template-page-mountain-view-landing .mv-gallery-title,
body.page-template-page-mountain-view-landing .mv-units-title,
body.page-template-page-mountain-view-landing .mv-request-title {
    color: #08277b;
    font-family: var(--font-secondary);
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
}

body.page-template-page-mountain-view-landing .payment-description,
body.page-template-page-mountain-view-landing .amenities-description,
body.page-template-page-mountain-view-landing .contact-description,
body.page-template-page-mountain-view-landing .popup-description,
body.page-template-page-mountain-view-landing .mv-gallery-subtitle,
body.page-template-page-mountain-view-landing .mv-units-subtitle,
body.page-template-page-mountain-view-landing .mv-request-subtitle {
    color: #64748b;
    font-size: clamp(15px, 1.2vw, 17px);
    font-weight: 500;
    line-height: 1.8;
}

body.page-template-page-mountain-view-landing .payment-percentage,
body.page-template-page-mountain-view-landing .amenity-icon,
body.page-template-page-mountain-view-landing .amenity-name {
    color: #08277b;
}

body.page-template-page-mountain-view-landing .payment-label,
body.page-template-page-mountain-view-landing .btn-register,
body.page-template-page-mountain-view-landing .btn-form-submit {
    background: #08277b;
}

body.page-template-page-mountain-view-landing .payment-card:hover {
    border-color: #08277b;
}

body.page-template-page-mountain-view-landing .payment-card:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #08277b;
    border-color: #08277b;
}

body.page-template-page-mountain-view-landing .payment-card:last-child .payment-percentage,
body.page-template-page-mountain-view-landing .payment-card:last-child .payment-note {
    display: none;
}

body.page-template-page-mountain-view-landing .payment-card:last-child .payment-label {
    margin: 0;
    padding: 0 20px;
    background: transparent;
}

body.page-template-page-mountain-view-landing .payment-card:last-child .payment-label span {
    font-size: 22px;
    line-height: 1.5;
}

body.page-template-page-mountain-view-landing .btn-register:hover,
body.page-template-page-mountain-view-landing .btn-form-submit:hover,
body.page-template-page-mountain-view-landing .btn-form-submit:focus-visible {
    background: #0a328f;
}

body.page-template-page-mountain-view-landing .mv-request-title {
    color: #fff;
}

body.page-template-page-mountain-view-landing .mv-request-subtitle {
    color: #dedede;
}

.mv-request-panel {
    background: #08277b;
}

body.page-template-page-mountain-view-landing .btn-form-submit {
    background: #fff;
    color: #08277b;
}

body.page-template-page-mountain-view-landing .btn-form-submit:hover,
body.page-template-page-mountain-view-landing .btn-form-submit:focus-visible {
    background: #fff;
    color: #08277b;
}

footer.site-footer {
    background: #08277b;
}

body.page-template-page-mountain-view-landing .form-input:focus {
    border-color: #08277b;
}

body.page-template-page-mountain-view-landing .mv-landing-amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-template-page-mountain-view-landing .mv-landing-amenities-section .amenity-item {
    min-height: 210px;
    justify-content: center;
}

body.page-template-page-mountain-view-landing .mv-landing-amenities-section .amenity-name {
    max-width: 280px;
}

.mv-new-landing-options .description {
    font-size: 13px;
}

@media (max-width: 768px) {
    .mv-video-landing-container {
        padding: 0 20px;
    }

    .mv-video-landing-header {
        min-height: 76px;
    }

    .mv-video-landing-header-container {
        min-height: 76px;
        gap: 14px;
    }

    .mv-video-landing-logo img {
        width: min(190px, 48vw);
        max-height: 48px;
    }

    .mv-video-landing-header-button {
        min-height: 44px;
        font-size: 16px;
        gap: 7px;
    }

    .mv-video-landing-header-button svg {
        width: 22px;
        height: 22px;
    }

    .mv-video-landing-hero {
        min-height: max(560px, calc(78svh - 76px));
    }

    .mv-video-landing-hero-container {
        padding-top: 64px;
        padding-bottom: 92px;
    }

    .mv-video-landing-content h1 {
        font-size: clamp(30px, 9.2vw, 46px);
    }

    .mv-video-landing-content p {
        font-size: clamp(17px, 5.2vw, 25px);
    }

    .mv-gallery-section {
        padding: 64px 0;
    }

    .mv-gallery-header {
        margin-bottom: 30px;
    }

    .mv-gallery-carousel-wrap {
        padding: 0 22px;
    }

    .mv-gallery-slide-button {
        aspect-ratio: 4 / 3;
        min-height: 260px;
    }

    .mv-gallery-nav {
        width: 44px;
        height: 44px;
    }

    .mv-gallery-prev {
        left: 0;
    }

    .mv-gallery-next {
        right: 0;
    }

    body.page-template-page-mountain-view-landing .mv-landing-amenities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mv-units-section {
        padding: 64px 0;
    }

    .mv-units-header {
        margin-bottom: 30px;
    }

    .mv-units-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .mv-unit-media {
        height: 280px;
    }

    .mv-unit-content {
        padding: 22px;
    }

    .mv-unit-card-head {
        align-items: flex-start;
    }

    .mv-request-section {
        padding: 64px 0;
    }

    .mv-request-panel {
        padding: 44px 22px;
    }

    .mv-request-header {
        margin-bottom: 30px;
    }

    .mv-request-fields {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mv-request-input,
    .mv-request-submit {
        height: 58px;
    }
}

@media (max-width: 480px) {
    .mv-video-landing-container {
        padding: 0 14px;
    }

    .mv-video-landing-logo img {
        width: min(150px, 45vw);
    }

    .mv-video-landing-header-button span {
        max-width: 120px;
        white-space: normal;
        text-align: left;
    }

    .mv-gallery-slide-button {
        min-height: 220px;
    }

    .mv-gallery-lightbox {
        padding: 18px;
    }

    .mv-gallery-lightbox-close {
        top: 12px;
        left: 12px;
        width: 42px;
        height: 42px;
    }

    .mv-gallery-lightbox-nav {
        width: 42px;
        height: 42px;
    }

    .mv-gallery-lightbox-prev {
        left: 12px;
    }

    .mv-gallery-lightbox-next {
        right: 12px;
    }

    .mv-unit-media {
        height: 230px;
    }

    .mv-unit-card-head {
        flex-direction: column;
        gap: 6px;
    }

    .mv-unit-features {
        grid-template-columns: 1fr;
    }

    .mv-unit-actions {
        grid-template-columns: 48px 48px minmax(0, 1fr);
    }

    body.page-template-page-mountain-view-landing .mv-landing-amenities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mv-request-panel {
        padding: 36px 14px;
    }

    .mv-request-input {
        padding-right: 54px;
        font-size: 15px;
    }

    .mv-request-field-icon {
        right: 20px;
    }
}