
.hero {
    height: 60vh;
    background: linear-gradient(rgba(26, 42, 58, 0.5), rgba(26, 42, 58, 0.5)),
        url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(179, 142, 93, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(179, 142, 93, 0.4);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a2a3a;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.perks-section {
    background: white;
    border-radius: 25px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

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

.perk-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #a57e4d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.perk-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a2a3a;
    margin-bottom: 10px;
}

.perk-item p {
    color: #666;
    line-height: 1.7;
}

.properties-section {
    margin-bottom: 80px;
}

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

.property-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

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

.property-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.property-content {
    padding: 30px;
}

.property-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a2a3a;
    margin-bottom: 10px;
}

.property-location {
    color: var(--color-primary);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.property-location i {
    margin-right: 8px;
}

.property-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.property-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f0ede8;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
}

.property-cta {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.property-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(179, 142, 93, 0.3);
}

.booking-form {
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a2a3a;
}

input,
select,
textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, #a57e4d 100%);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(179, 142, 93, 0.4);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .perks-section,
    .booking-form {
        padding: 40px 25px;
    }

    .nav-links {
        display: none;
    }
}