/* ========================================
   MEVIKONIM Property Page - Main Styles
   ======================================== */

/* CSS Variables - Design Tokens from Mockups */
:root {
    /* Colors */
    --color-primary: #00A885;
    --color-primary-hover: #008F72;
    --color-primary-light: #4CD4B0;
    --color-secondary: #FFFFFF;
    --color-bg: #F5F5F5;
    --color-bg-white: #FFFFFF;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-lighter: #999999;
    --color-border: #E0E0E0;
    --color-shadow: rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    
    /* Header Height */
    --header-height: 72px;
    --sticky-bar-height: 64px;
}

/* ========================================
   Reset & Base Styles
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

/* ========================================
   Container & Layout
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-xxl) 0;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 32px;
    font-weight: var(--font-weight-extrabold);
    color: var(--color-text);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    transition: var(--transition);
    white-space: nowrap;
}

.btn i {
    font-size: 18px;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

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

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

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    background-color: white;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-icon:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

/* ========================================
   Header (Sticky)
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: var(--spacing-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-text {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
}

.desktop-nav {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-size: 15px;
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    padding: var(--spacing-xs) 0;
}

.nav-link:hover {
    color: var(--color-primary);
}

.header-ctas {
    display: flex;
    gap: var(--spacing-sm);
}

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    font-size: 24px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-content {
    width: 280px;
    height: 100%;
    background-color: white;
    margin-right: auto;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-close {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    font-size: 24px;
    color: var(--color-text);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.mobile-nav a {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--color-border);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    margin-top: var(--header-height);
    padding-top: var(--spacing-xl);
    background-color: white;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 28px;
    font-weight: var(--font-weight-extrabold);
    color: var(--color-text);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    line-height: 1.4;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
}

.stat-item i {
    color: var(--color-primary);
    font-size: 16px;
}

/* Video Wrapper */
.video-wrapper {
    margin-bottom: var(--spacing-xl);
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.video-play-btn:hover {
    background-color: var(--color-primary-hover);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn i {
    margin-right: 4px;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

/* Quick Cards */
.quick-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.quick-card i {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.quick-card span {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
}

.quick-card:hover {
    background-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.quick-card:hover i,
.quick-card:hover span {
    color: white;
}

/* ========================================
   Highlights Section
   ======================================== */

.highlights {
    background-color: white;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.highlight-category-title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--color-primary);
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
}

.highlight-list i {
    color: var(--color-primary);
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ========================================
   Gallery Section
   ======================================== */

.gallery {
    background-color: var(--color-bg);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    color: var(--color-text);
    background-color: white;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.gallery-item {
    position: relative;
    padding-top: 75%; /* 4:3 aspect ratio */
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brochure-download {
    text-align: center;
}

/* ========================================
   360 Tour Section
   ======================================== */

.tour360 {
    background-color: white;
}

.tour360-wrapper {
    width: 100%;
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}

/* Interactive Video Container */
.interactive-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: grab;
    background: #000;
}

.interactive-video-container:active {
    cursor: grabbing;
}

.tour-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

/* Navigation Arrows */
.video-nav-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.video-nav-btn {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 168, 133, 0.9);
    border: 3px solid white;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-nav-btn:hover {
    background: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 168, 133, 0.4);
}

.video-nav-btn:active {
    transform: scale(0.95);
}

/* Zoom Controls */
.video-zoom-controls {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 168, 133, 0.9);
    padding: 10px 15px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-zoom-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    color: var(--color-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-zoom-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.video-zoom-btn:active {
    transform: scale(0.9);
}

/* Drag Hint Animation */
@keyframes dragHint {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.tour360-wrapper::before {
    content: '👆 גררו לצפייה מזוויות שונות';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 168, 133, 0.95);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 5;
    animation: dragHint 2s ease-in-out infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tour360-wrapper.show-hint::before {
    opacity: 1;
}

/* Instructions Overlay */
.tour360-instructions {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.tour360-instructions.hidden {
    opacity: 0;
    pointer-events: none;
}

.instructions-content {
    background: white;
    padding: var(--spacing-xxl);
    border-radius: var(--radius-lg);
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.instructions-content i {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.instructions-content p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.instructions-content ul {
    text-align: right;
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
}

.instructions-content li {
    padding: var(--spacing-sm) 0;
    font-size: 16px;
    color: var(--color-text-light);
}

.tour360-cta {
    text-align: center;
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tour360-wrapper {
        height: 400px;
    }
    
    .video-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .video-nav-controls {
        padding: 0 10px;
    }
    
    .video-zoom-controls {
        bottom: 70px;
        padding: 8px 12px;
    }
    
    .video-zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .tour360-wrapper::before {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .instructions-content {
        padding: var(--spacing-lg);
        margin: var(--spacing-md);
    }
    
    .instructions-content i {
        font-size: 36px;
    }
    
    .instructions-content p {
        font-size: 16px;
    }
    
    .instructions-content li {
        font-size: 14px;
    }
}

/* ========================================
   Specs Section
   ======================================== */

.specs {
    background-color: var(--color-bg);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.spec-group {
    background-color: white;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.spec-group-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-primary);
}

.spec-table {
    width: 100%;
}

.spec-table tr {
    border-bottom: 1px solid var(--color-border);
}

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

.spec-table td {
    padding: var(--spacing-sm) 0;
    font-size: 15px;
}

.spec-label {
    color: var(--color-text-light);
    font-weight: var(--font-weight-medium);
    width: 50%;
}

.spec-value {
    color: var(--color-text);
    font-weight: var(--font-weight-semibold);
    text-align: left;
}

/* ========================================
   Location Section
   ======================================== */

.location {
    background-color: white;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.location-map {
    position: relative;
}

.map-wrapper {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.map-note {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 13px;
    color: var(--color-text-light);
}

.map-note i {
    color: var(--color-primary);
}

.location-points-title {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.location-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.location-list i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 18px;
    flex-shrink: 0;
}

.location-list div {
    flex: 1;
}

.location-list strong {
    display: block;
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    margin-bottom: 4px;
}

.location-list span {
    font-size: 14px;
    color: var(--color-text-light);
}

.location-note {
    background-color: var(--color-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border-right: 4px solid var(--color-primary);
}

.location-note h4 {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.location-note ul {
    list-style: disc;
    padding-right: var(--spacing-lg);
}

.location-note li {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xs);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq {
    background-color: var(--color-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
    text-align: right;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--color-bg);
}

.faq-question i {
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
}

.owner-card {
    display: flex;
    gap: var(--spacing-lg);
    background-color: var(--color-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.owner-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.owner-details {
    flex: 1;
}

.owner-name {
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: 4px;
}

.owner-role {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.owner-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 15px;
    font-weight: var(--font-weight-medium);
    color: var(--color-primary);
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-note {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 13px;
    color: var(--color-text-light);
}

.contact-note i {
    color: var(--color-primary);
}

.contact-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* Contact Form */
.form-title {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 15px;
    font-family: inherit;
    color: var(--color-text);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 13px;
    color: var(--color-text-light);
    text-align: center;
}

/* Disclaimer */
.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background-color: var(--color-bg);
    border-radius: var(--radius-md);
    border-right: 4px solid var(--color-primary);
}

.disclaimer h4 {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background-color: var(--color-text);
    color: white;
    padding: var(--spacing-xl) 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 18px;
    font-weight: var(--font-weight-bold);
}

.footer-links {
    display: flex;
    gap: var(--spacing-xl);
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: white;
}

.footer-credit {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.heart {
    color: var(--color-primary);
}

/* ========================================
   Mobile Sticky Bottom Bar
   ======================================== */

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--sticky-bar-height);
    background-color: white;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 999;
}

.mobile-sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: var(--spacing-xs);
}

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sticky-btn i {
    font-size: 22px;
}

.sticky-btn span {
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
}

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

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

.btn-call {
    color: var(--color-text);
}

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

.btn-share {
    color: var(--color-text-light);
}

.btn-share:active {
    background-color: var(--color-bg);
}

/* ========================================
   Lightbox
   ======================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.lightbox-close {
    top: var(--spacing-lg);
    left: var(--spacing-lg);
}

.lightbox-prev {
    right: var(--spacing-lg);
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    left: var(--spacing-lg);
    top: 50%;
    transform: translateY(-50%);
}

/* ========================================
   Responsive - Tablet
   ======================================== */

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Responsive - Mobile
   ======================================== */

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    /* Header */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero-title {
        font-size: 22px;
    }
    
    .quick-stats {
        gap: var(--spacing-sm);
    }
    
    .stat-item {
        font-size: 12px;
    }
    
    .video-play-btn {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .quick-cards {
        grid-template-columns: 1fr;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Specs */
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-table td {
        font-size: 14px;
    }
    
    /* Add padding for mobile sticky bar */
    body {
        padding-bottom: var(--sticky-bar-height);
    }
    
    /* Lightbox */
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* ========================================
   Utility Classes
   ======================================== */

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .header,
    .mobile-sticky-bar,
    .footer,
    .hero-ctas,
    .contact-ctas {
        display: none !important;
    }
}
