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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Hero Section - Funnel Style */
.hero-funnel {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 80px 20px;
}

.hero-overlay {
    width: 100%;
}

.hero-headline {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subheadline {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: #f59e0b;
    color: white;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.cta-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(245, 158, 11, 0.8);
    }
}

.urgency-text {
    margin-top: 20px;
    font-size: 1.1em;
    color: #fef3c7;
    font-weight: 600;
}

/* Lifestyle Section */
.lifestyle-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.section-headline {
    font-size: 2.5em;
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 50px;
}

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

.lifestyle-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.lifestyle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.lifestyle-icon {
    font-size: 3.5em;
    display: block;
    margin-bottom: 20px;
}

.lifestyle-card h3 {
    color: #1e3a8a;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.lifestyle-card p {
    color: #666;
    font-size: 1.05em;
    line-height: 1.7;
}

/* Social Proof Bar */
.social-proof-bar {
    background: #1e3a8a;
    color: white;
    padding: 40px 20px;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 2em;
    display: block;
    margin-bottom: 5px;
    color: #fbbf24;
}

.stat span {
    font-size: 1em;
    opacity: 0.9;
}

/* Photo Gallery - Funnel Style */
.gallery-funnel {
    padding: 80px 20px;
    background: white;
}

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

.photo-item-funnel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.photo-item-funnel.hero-photo {
    grid-column: span 2;
}

.photo-item-funnel img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item-funnel.hero-photo img {
    height: 350px;
}

.photo-item-funnel:hover img {
    transform: scale(1.05);
}

.photo-number {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 1em;
    z-index: 10;
}

/* Virtual Tour CTA */
.virtual-tour-cta {
    text-align: center;
    margin-top: 50px;
}

.virtual-tour-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.virtual-tour-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.tour-icon {
    font-size: 1.3em;
    font-weight: bold;
}

.tour-note {
    margin-top: 15px;
    color: #666;
    font-size: 0.95em;
}

/* All Photos Section (Collapsible) */
.all-photos-section {
    padding: 40px 20px;
    background: #f9fafb;
}

.toggle-photos {
    display: block;
    margin: 0 auto 30px;
    padding: 15px 40px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    color: #1e3a8a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-photos:hover {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

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

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Key Details */
.key-details {
    padding: 80px 20px;
    background: white;
}

.details-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.detail-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #3b82f6;
}

.detail-card h3 {
    color: #1e3a8a;
    font-size: 1.8em;
    margin-bottom: 25px;
}

.detail-card ul {
    list-style: none;
}

.detail-card li {
    padding: 12px 0;
    font-size: 1.1em;
    color: #333;
    border-bottom: 1px solid #e5e7eb;
}

.detail-card li:last-child {
    border-bottom: none;
}

/* Booking Form Section - THE CONVERSION POINT */
.booking-form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.form-container-funnel {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

.form-header h2 {
    font-size: 2.5em;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 1.15em;
    color: #666;
    margin-bottom: 20px;
}

.urgency-badge {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95em;
}

.contact-form-funnel {
    margin-top: 30px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1e3a8a;
    font-weight: 600;
    font-size: 1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-btn-funnel {
    width: 100%;
    padding: 18px;
    background: #f59e0b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.3em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn-funnel:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.form-disclaimer {
    margin-top: 20px;
    text-align: center;
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

/* Form Messages */
.form-message {
    max-width: 700px;
    margin: 30px auto 0;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.form-message.success {
    background: #d1fae5;
    border: 2px solid #6ee7b7;
    color: #065f46;
}

.form-message.error {
    background: #fee2e2;
    border: 2px solid #fca5a5;
    color: #991b1b;
}

.form-message h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

.listing-link-small {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.listing-link-small:hover {
    background: #2563eb;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 20px;
    background: #f9fafb;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5em;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-secondary {
    display: inline-block;
    padding: 18px 45px;
    background: #1e3a8a;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

/* Footer */
.footer-minimal {
    background: #1f2937;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer-minimal p {
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.2em;
    }

    .hero-subheadline {
        font-size: 1.1em;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }

    .section-headline {
        font-size: 2em;
    }

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

    .photo-grid-funnel {
        grid-template-columns: 1fr;
    }

    .photo-item-funnel.hero-photo {
        grid-column: span 1;
    }

    .photo-item-funnel.hero-photo img {
        height: 350px;
    }

    .details-cards {
        grid-template-columns: 1fr;
    }

    .form-container-funnel {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 2em;
    }

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

    .all-photos-grid {
        grid-template-columns: 1fr;
    }

    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.8em;
    }

    .stat strong {
        font-size: 1.5em;
    }

    .proof-stats {
        grid-template-columns: 1fr;
    }
}
