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

/* Accessibility utility class */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Crimson Text', serif;
    font-weight: 400;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

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

/* Navigation */
.navigation {
    background-color: #0f172a;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-left, .nav-right {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-family: 'Crimson Text', serif;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.nav-phone {
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
    transition: opacity 0.3s ease;
}

.nav-phone:hover {
    opacity: 0.8;
}

.whatsapp-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.nav-book-btn {
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    color: #0f0f0f;
    text-decoration: none;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.nav-book-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.2);
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-center .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 0.25em;
    font-weight: 400;
}

.nav-bottom {
    background-color: #1e293b;
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    gap: 16px;
    border-top: 1px solid #334155;
}

.nav-badge {
    font-family: 'Montserrat', sans-serif;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.badge-stone { background-color: #f5f3f0; color: #1f2937; border: 1px solid #e7e5e4; }
.badge-amber { background-color: #fefbf3; color: #1f2937; border: 1px solid #fef3c7; }
.badge-gray { background-color: #f3f4f6; color: #1f2937; border: 1px solid #e5e7eb; }
.badge-blue { background-color: #f0f7ff; color: #1f2937; border: 1px solid #dbeafe; }
.badge-rose { background-color: #fef5fb; color: #1f2937; border: 1px solid #fdf2f8; }

.nav-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background-color: rgba(255,255,255,0.95);
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

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

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    padding-top: 90px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-title .italic {
    font-style: italic;
}

.hero-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 48px;
    opacity: 0.95;
    letter-spacing: 0.02em;
}

.hero-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: center;
}

.form-field {
    flex: 1;
    min-width: 150px;
}

.form-field label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.form-field input[type="date"],
.form-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    color: #1f2937;
    background-color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231f2937' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.hero-form .btn {
    flex: none;
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.btn-outline-white:hover {
    background-color: white;
    color: #1f2937;
}

/* Sections Base */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 48px;
    color: #1f2937;
}

.section-subtitle {
    font-family: 'Crimson Text', serif;
    text-align: center;
    color: #6b7280;
    max-width: 700px;
    margin: -32px auto 48px;
    font-size: 19px;
    line-height: 1.6;
}

/* Welcome Section */
.welcome {
    padding: 100px 0;
    background-color: white;
}

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

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 24px;
}

.welcome-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 48px;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.welcome-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    color: #374151;
}

.welcome-feature .feature-icon {
    font-size: 20px;
}

/* Property Hero Section */
.property-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background-color: #f5f3f0;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
}

.property-hero-image {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f4;
}

.property-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #f5f5f4;
}

.property-hero-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafaf9;
}

.property-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #1f2937;
    margin-bottom: 24px;
}

.property-hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 36px;
    max-width: 500px;
}

@media (max-width: 968px) {
    .property-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .property-hero-image {
        height: 400px;
    }
    
    .property-hero-content {
        padding: 60px 30px;
    }
}

/* Three Pillars */
.pillars {
    background-color: white;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 64px;
    margin-bottom: 48px;
}

.pillar {
    text-align: center;
}

.pillar-number {
    font-size: 64px;
    font-weight: 200;
    color: #e7e5e4;
    margin-bottom: 16px;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.4;
}

.pillar-text {
    color: #6b7280;
    line-height: 1.8;
}

.pillars-actions {
    text-align: center;
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 14px 36px;
    border: 1px solid;
    background-color: transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.btn-primary {
    background-color: #334155;
    color: white;
    border-color: #334155;
}

.btn-outline {
    border-color: #d6d3d1;
    color: #1f2937;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Featured Section - Removed */

/* Apartments */
.apartments {
    background-color: #fafaf9;
    border-top: 1px solid #e5e7eb;
    position: relative;
}

.apartments::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: #334155;
}

.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.apartment-card {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.apartment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.apartment-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: #f5f5f4;
}

.apartment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    background-color: #f5f5f4;
}

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

.apartment-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.apartment-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.apartment-subtitle {
    font-size: 16px;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.apartment-content {
    padding: 24px;
}

.apartment-highlights {
    margin-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
}

.highlight {
    font-size: 15px;
    color: #059669;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.apartment-features {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.feature-badge {
    font-size: 13px;
    padding: 6px 12px;
    background-color: #f3f4f6;
    color: #4b5563;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.apartment-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    font-family: 'Crimson Text', serif;
}

/* Gallery */
.gallery {
    background-color: white;
    border-bottom: 2px solid #e5e7eb;
    box-shadow: 0 10px 30px -20px rgba(0,0,0,0.1);
}

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

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background-color: #f5f5f4;
}

.gallery-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

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

/* Discover Paxos */
.discover {
    background-color: #1e293b;
    padding-top: 80px;
    position: relative;
    color: #f8fafc;
}


.discover .section-title {
    color: #f8fafc;
}

.discover .section-subtitle {
    color: #cbd5e1;
}

.island-intro {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.island-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #e2e8f0;
}

.island-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .island-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .feature-card {
        padding: 20px;
    }
}

.feature-card {
    background-color: #334155;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #475569;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    background-color: #3f4b63;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #f8fafc;
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.8;
    font-family: 'Crimson Text', serif;
}

.postcards-title {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 48px;
    color: #1f2937;
}

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

.postcard {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.postcard:hover {
    transform: translateY(-4px);
}

.postcard img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 16px;
}

.postcard h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.postcard p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Location */
.location {
    background-color: #f5f3f0;
    border-top: 1px solid #e5e7eb;
    position: relative;
    padding-top: 80px;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #6b7280;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.distances-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    text-align: center;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-fullscreen-btn {
    position: absolute;
    bottom: 1px;
    right: 1px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    z-index: 1000;
    transition: all 0.3s ease;
}

.map-fullscreen-btn:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

#map {
    width: 100%;
    height: 600px;
    filter: grayscale(10%) contrast(1.05) brightness(0.98);
    border-radius: 8px;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    color: #4b5563;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.legend-marker.home-marker {
    width: auto;
    height: auto;
    background: none;
    font-size: 16px;
    line-height: 1;
}

/* Mapbox custom styles */
.mapboxgl-popup {
    max-width: 200px;
}

.mapboxgl-popup-content {
    padding: 16px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
}

.mapboxgl-popup-close-button {
    font-size: 16px;
    padding: 4px 8px;
}

.mapboxgl-ctrl-group {
    border-radius: 8px;
    overflow: hidden;
}

.distance-item h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 8px;
}

.distance {
    font-size: 32px;
    font-weight: 200;
    color: #a8a29e;
    margin-bottom: 8px;
}

.distance-item .description {
    font-size: 15px;
    color: #6b7280;
    font-family: 'Crimson Text', serif;
}

/* Getting Here Section */
.getting-here {
    background-color: #334155;
    border-top: 1px solid #475569;
}

.getting-here .section-title {
    color: #f8fafc;
}

.getting-here .section-subtitle {
    color: #cbd5e1;
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.travel-step {
    text-align: center;
    background-color: #475569;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #64748b;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #334155;
    color: white;
    border-radius: 50%;
    line-height: 60px;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 16px;
}

.travel-step h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #f8fafc;
}

.travel-step p {
    color: #e2e8f0;
    line-height: 1.8;
}

.ferry-info {
    background-color: #475569;
    padding: 48px;
    border-radius: 8px;
    margin-bottom: 48px;
    border: 1px solid #64748b;
}

.ferry-info h3 {
    color: #f8fafc;
}

.ferry-info h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 32px;
}

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

.ferry-operator {
    background-color: #64748b;
    padding: 24px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid #94a3b8;
}

.ferry-operator h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #f8fafc;
}

.ferry-operator p {
    font-size: 15px;
    color: #e2e8f0;
    line-height: 1.8;
}

.travel-tips {
    max-width: 800px;
    margin: 0 auto;
}

.travel-tips h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 24px;
    text-align: center;
}

.travel-tips ul {
    list-style: none;
    padding: 0;
}

.travel-tips li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: #6b7280;
    line-height: 1.6;
}

.travel-tips li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #334155;
}

/* Testimonials */
.testimonials {
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
    padding-top: 80px;
    overflow: hidden;
}

.testimonials .section-title {
    color: #f8fafc;
}

.testimonials .section-subtitle {
    color: #cbd5e1;
}

/* 3D Carousel Styles */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 60px auto;
    perspective: 1200px;
}

.testimonials-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
}

.testimonial-card {
    position: absolute;
    width: 380px;
    background: #1e293b;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    opacity: 0;
    transform: rotateY(45deg) translateX(300px) scale(0.8);
}

.testimonial-card.active {
    opacity: 1;
    transform: rotateY(0deg) translateX(0) translateZ(0) scale(1);
    z-index: 3;
}

.testimonial-card.prev {
    opacity: 0.7;
    transform: rotateY(25deg) translateX(-250px) translateZ(-100px) scale(0.85);
    z-index: 2;
}

.testimonial-card.next {
    opacity: 0.7;
    transform: rotateY(-25deg) translateX(250px) translateZ(-100px) scale(0.85);
    z-index: 2;
}

.testimonial-card.far-prev {
    opacity: 0.4;
    transform: rotateY(35deg) translateX(-400px) translateZ(-200px) scale(0.7);
    z-index: 1;
}

.testimonial-card.far-next {
    opacity: 0.4;
    transform: rotateY(-35deg) translateX(400px) translateZ(-200px) scale(0.7);
    z-index: 1;
}

.testimonial-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -100px;
}

.carousel-next {
    right: -100px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

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

.indicator.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.testimonial {
    background-color: #1e293b;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-radius: 4px;
    border: 1px solid #334155;
}

.testimonial-card .stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-size: 22px;
    margin-bottom: 16px;
    color: #f8fafc;
}

.testimonial-card p {
    font-size: 16px;
    color: #e2e8f0;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 16px;
    font-family: 'Crimson Text', serif;
}

.testimonial-card .author {
    font-weight: 500;
    color: #cbd5e1;
    font-style: normal !important;
    font-size: 15px;
}

.testimonial-card .date {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px;
    font-style: normal;
}

/* Platform Badge */
.platform-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
}

.platform-badge img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.platform-badge span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-badge.google {
    color: #4285F4;
}

.platform-badge.booking span {
    color: #003580;
}

.platform-badge.airbnb span {
    color: #FF5A5F;
}

.testimonial-card:hover .platform-badge {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Awards Section */
.awards {
    background-color: #0f172a;
    padding: 80px 0;
    border-top: 1px solid #1e293b;
}

.awards .section-title {
    color: #f8fafc;
    margin-bottom: 12px;
}

.awards .section-subtitle {
    color: #cbd5e1;
    margin-bottom: 60px;
}

.awards-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.award-item {
    flex: 0 0 auto;
    transition: transform 0.3s ease;
}

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

.award-item img {
    width: 280px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive for awards */
@media (max-width: 1024px) {
    .awards-grid {
        gap: 30px;
    }
    
    .award-item img {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .awards {
        padding: 60px 0;
    }
    
    .awards-grid {
        flex-direction: column;
        gap: 24px;
    }
    
    .award-item img {
        width: 300px;
        max-width: 90vw;
    }
}

/* Contact */
.contact {
    background-color: #1f2937;
    color: white;
}

.contact .section-title,
.contact .section-subtitle {
    color: white;
}

.contact .section-subtitle {
    color: #d1d5db;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 64px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.contact-icon {
    font-size: 20px;
    margin-top: 2px;
}

.contact-item strong {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.contact-item a {
    color: #e5e7eb;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.contact-item a:hover {
    color: white;
}

.booking-links {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #374151;
}

.booking-links h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 16px;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-booking-primary {
    background-color: #059669;
    color: white;
    border-color: #059669;
    padding: 16px 32px;
    font-size: 14px;
    text-align: center;
    width: 100%;
}

.btn-booking-primary:hover {
    background-color: #047857;
    border-color: #047857;
}

.platform-links {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #374151;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background-color: #4b5563;
}


.platform-link img {
    width: 16px;
    height: 16px;
}

/* Map link icon */
.map-link-icon {
    text-decoration: none;
    margin-left: 8px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.map-link-icon:hover {
    transform: translateY(-2px);
}

.map-link-icon:hover svg {
    stroke: #e2e8f0;
}

/* Contact Form */
.contact-form {
    background-color: #374151;
    padding: 32px;
    border-radius: 8px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #1f2937;
    border: 1px solid #4b5563;
    color: white;
    border-radius: 4px;
    font-family: 'Crimson Text', serif;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

/* Custom select arrow */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e5e7eb' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e7e5e4;
    box-shadow: 0 0 0 2px rgba(231, 229, 228, 0.1);
}

/* Remove autofill styles */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 1000px #1f2937 inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Style textarea resize handle */
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Remove spin buttons from number inputs */
.form-group input[type="number"]::-webkit-inner-spin-button,
.form-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-group input[type="number"] {
    -moz-appearance: textfield;
}

.btn-block {
    width: 100%;
}

.btn-light {
    background-color: #e7e5e4;
    color: #1f2937;
    border-color: #e7e5e4;
}

.btn-outline-light {
    border-color: #6b7280;
    color: white;
}

.btn-outline-light:hover {
    background-color: #374151;
}

/* Island Hopping Section */
.island-hopping {
    background-color: #f8fafc;
    padding: 100px 0;
    border-top: 1px solid #e5e7eb;
}

.island-hopping-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.island-hopping-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #1f2937;
}

.island-hopping-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 20px;
    font-family: 'Crimson Text', serif;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: subtle-glow 8s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20%, -20%); }
}

.cta-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #f8fafc;
    margin-bottom: 12px;
    position: relative;
}

.cta-box p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 32px;
    position: relative;
}

.cta-box .btn-primary {
    background-color: #f8fafc;
    color: #1e293b;
    border-color: #f8fafc;
    font-size: 14px;
    padding: 16px 40px;
    letter-spacing: 0.15em;
    position: relative;
}

.cta-box .btn-primary:hover {
    background-color: transparent;
    color: #f8fafc;
    border-color: #f8fafc;
}

@media (max-width: 968px) {
    .island-hopping-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .island-hopping-text h3 {
        font-size: 28px;
    }
    
    .cta-box {
        padding: 36px;
    }
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #9ca3af;
    padding: 64px 0 32px;
    font-size: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
}

.footer-section p {
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #1e293b;
}

/* Animations removed */

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    position: relative;
    background: white;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #1f2937;
    font-size: 32px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.modal-close:hover {
    opacity: 0.7;
}

/* Map Modal Styles */
.map-modal-content {
    max-width: 95vw;
    width: 95vw;
    height: 90vh;
    max-height: 90vh;
    padding: 0;
}

.map-modal-content .modal-close {
    right: 50px;
}

.map-modal-content .map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
}

#map-fullscreen {
    width: 100%;
    height: 100%;
    filter: grayscale(10%) contrast(1.05) brightness(0.98);
}

/* RateParity Widget Control */
#rp-allinone,
.rp-allinone,
.SuperWidgetMaximized-root {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal .modal-content {
    background: transparent;
    box-shadow: none;
}

.image-modal img {
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* Apartment Modal Content */
.apartment-modal-header {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.apartment-modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Apartment Gallery Navigation */
.apartment-gallery-navigation {
    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;
}

.apartment-gallery-nav {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
}

.apartment-gallery-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.apartment-gallery-nav svg {
    width: 20px;
    height: 20px;
}

.apartment-gallery-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.apartment-modal-body {
    padding: 40px;
}

.apartment-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
    color: #1f2937;
}

.apartment-modal-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.apartment-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.apartment-modal-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #1f2937;
}

.apartment-modal-features {
    list-style: none;
    padding: 0;
}

.apartment-modal-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #4b5563;
}

.apartment-modal-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: 600;
}

.apartment-modal-actions {
    padding: 32px 40px;
    background-color: #fafaf9;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

@media (max-width: 768px) {
    .apartment-modal-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .apartment-modal-body {
        padding: 24px;
    }
}

/* Gallery Modal Styles */
.gallery-modal .modal-content {
    max-width: 90vw;
    max-height: 95vh;
    padding: 0;
    background: #000;
    display: flex;
    flex-direction: column;
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-navigation {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.gallery-nav {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
}

.gallery-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 20px;
    overflow: hidden;
}

.gallery-image-container img {
    max-width: 100%;
    max-height: calc(100vh - 200px);
    width: auto;
    height: auto;
    object-fit: contain;
}

.gallery-caption {
    position: relative;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    min-height: 80px;
    flex-shrink: 0;
}

.gallery-counter {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.gallery-modal .modal-close {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: 20px;
    right: 20px;
}

.gallery-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Make gallery items look clickable */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Mobile styles for gallery modal */
@media (max-width: 768px) {
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-navigation {
        padding: 0 10px;
    }
    
    .gallery-image-container {
        padding: 50px 10px 10px;
    }
    
    .gallery-image-container img {
        max-height: calc(100vh - 160px);
    }
    
    .gallery-caption {
        padding: 15px;
        font-size: 14px;
        min-height: 60px;
    }
}

/* Image loading and lazy loading optimizations */
img {
    opacity: 1;
}

/* Lazy loading states */
img.lazy-loading {
    background-color: #f5f5f4;
    background-image: linear-gradient(45deg, #f9f9f9 25%, transparent 25%), 
                      linear-gradient(-45deg, #f9f9f9 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #f9f9f9 75%), 
                      linear-gradient(-45deg, transparent 75%, #f9f9f9 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

img.lazy-loaded {
    animation: fadeInSharp 0.3s ease-out;
}

@keyframes fadeInSharp {
    from {
        opacity: 0;
        transform: scale(1.01);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Optimize images for performance */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Reduce paint on scroll for performance */
.gallery-item img,
.apartment-image img,
.hero-video {
    will-change: transform;
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    img {
        image-rendering: auto; /* Better for small screens */
    }
    
    .gallery-item img,
    .apartment-image img {
        will-change: auto; /* Reduce GPU usage on mobile */
    }
}

/* Separators */
.separator {
    height: 700px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    margin: 60px 0;
    overflow: hidden;
}

.separator-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.separator-1 {
    background-position: center 70%;
}

.separator-1 .separator-img {
    object-position: center 70%;
}

.separator-1::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.separator-2 {
    background-position: center center;
}

.separator-2 .separator-img {
    object-position: center center;
}

.separator-2::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

.separator-3 {
    background-position: center 30%;
}

.separator-3 .separator-img {
    object-position: center 30%;
}

.separator-3::before {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

@media (max-width: 768px) {
    .separator {
        height: 500px;
        margin: 40px 0;
    }
}

/* Section Dividers */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background-color: white;
}

.divider-line {
    height: 1px;
    width: 100px;
    background-color: #d6d3d1;
}

.divider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #6b7280;
    margin: 0 20px;
}

/* Active states removed */


/* Fixed navigation shadow on scroll */
.navigation.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Loading state removed */
body {
    opacity: 1;
}

/* Print styles */
@media print {
    .navigation,
    .hero-video,
    .btn,
    .contact-form {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-top {
        padding: 8px 15px;
    }
    
    .nav-center {
        position: static;
        transform: none;
        order: -1;
        width: 100%;
        margin-bottom: 8px;
    }
    
    .nav-center .logo {
        font-size: 16px;
        text-align: center;
    }
    
    .nav-left {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .nav-phone {
        display: none;
    }
    
    .nav-book-btn {
        display: none;
    }
    
    .nav-bottom {
        padding: 8px 10px;
        gap: 4px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-badge {
        font-size: 10px;
        padding: 6px 10px;
        letter-spacing: 0.05em;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .hero {
        margin-top: 20px;
    }
    
    .hero-content {
        padding: 40px 20px;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-form {
        padding: 16px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-field {
        width: 100%;
    }
    
    .hero-form .btn {
        width: 100%;
        margin-top: 16px;
    }
    
    .pillars-grid,
    .apartments-grid,
    .postcards-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    #map {
        height: 400px;
    }
    
    .map-legend {
        bottom: 10px;
        left: 10px;
        padding: 12px;
    }
    
    /* Testimonials Carousel Mobile */
    .testimonials-carousel-wrapper {
        margin: 40px auto;
    }
    
    .testimonials-carousel {
        height: 500px;
    }
    
    .testimonial-card {
        width: 300px;
        padding: 24px;
    }
    
    .testimonial-card.active {
        transform: rotateY(0deg) translateX(0) translateZ(0) scale(0.95);
    }
    
    .testimonial-card.prev,
    .testimonial-card.next {
        opacity: 0.3;
        transform: translateX(0) translateZ(-200px) scale(0.7);
    }
    
    .testimonial-card.far-prev,
    .testimonial-card.far-next {
        display: none;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-indicators {
        margin-top: 20px;
    }
}

/* RateParity widget customization */
#rp-chatbot img[alt="rateparity logo"],
div[class*="ChatWidget"] img[alt="rateparity logo"],
div[dir="ltr"] img[src*="rateparity-logo"],
img[src="https://code.rateparity.com/versions/assets/img/rateparity-logo.svg"] {
    filter: brightness(0) invert(1) !important;
    opacity: 0.9 !important;
}