/* ============================================
   Hotels & Cottages - Modern Minimal Design
   ============================================ */

:root {
    --hotel-primary: #2563eb;
    --hotel-primary-dark: #1e40af;
    --hotel-secondary: #10b981;
    --hotel-dark: #0f172a;
    --hotel-gray: #64748b;
    --hotel-light-gray: #f1f5f9;
    --hotel-border: #e2e8f0;
    --hotel-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --hotel-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --hotel-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Hero Section - Modern Search Focus */
.hotels-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hotels-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/destinations/hotel8.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hotels-hero .container {
    position: relative;
    z-index: 1;
}

.hero-content-modern {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-modern h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-content-modern .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat-item .label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Quick Inquiry Card */
.quick-inquiry-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--hotel-shadow-xl);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.quick-inquiry-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--hotel-dark);
    margin-bottom: 1.5rem;
}

.inquiry-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-field-modern {
    position: relative;
}

.form-field-modern label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--hotel-gray);
    margin-bottom: 0.5rem;
}

.form-field-modern input,
.form-field-modern select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--hotel-border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.form-field-modern input:focus,
.form-field-modern select:focus {
    outline: none;
    border-color: var(--hotel-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-search-modern {
    background: var(--hotel-primary);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-search-modern:hover {
    background: var(--hotel-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--hotel-shadow-lg);
}

/* Benefits Section */
.benefits-modern {
    padding: 80px 0;
    background: #fff;
}

.section-header-modern {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hotel-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header-modern p {
    font-size: 1.125rem;
    color: var(--hotel-gray);
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card-modern {
    background: #fff;
    border: 1px solid var(--hotel-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--hotel-shadow-lg);
    border-color: var(--hotel-primary);
}

.benefit-card-modern .icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-card-modern .icon-wrapper i {
    font-size: 1.75rem;
    color: #fff;
}

.benefit-card-modern h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hotel-dark);
    margin-bottom: 0.75rem;
}

.benefit-card-modern p {
    font-size: 1rem;
    color: var(--hotel-gray);
    line-height: 1.6;
    margin: 0;
}

/* Destinations Showcase */
.destinations-showcase {
    padding: 80px 0;
    background: var(--hotel-light-gray);
}

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

.destination-card-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.destination-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--hotel-shadow-xl);
}

.destination-card-modern .image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

.destination-card-modern:hover .image-wrapper img {
    transform: scale(1.1);
}

.destination-card-modern .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: all 0.3s ease;
}

.destination-card-modern:hover .overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
}

.destination-card-modern h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.destination-card-modern .location-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.destination-card-modern .properties-count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Process Steps */
.process-steps-modern {
    padding: 80px 0;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.step-card-modern {
    text-align: center;
    position: relative;
}

.step-card-modern .step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-card-modern h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hotel-dark);
    margin-bottom: 0.75rem;
}

.step-card-modern p {
    font-size: 1rem;
    color: var(--hotel-gray);
    line-height: 1.6;
}

/* Inquiry Section Modern */
.inquiry-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.inquiry-container-modern {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--hotel-shadow-xl);
}

.inquiry-header-modern {
    background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-primary-dark));
    padding: 3rem;
    text-align: center;
    color: #fff;
}

.inquiry-header-modern h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.inquiry-header-modern p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.inquiry-form-modern {
    padding: 3rem;
}

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

.form-group-modern {
    display: flex;
    flex-direction: column;
}

.form-group-modern label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--hotel-dark);
    margin-bottom: 0.5rem;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--hotel-border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--hotel-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.btn-submit-modern {
    background: var(--hotel-primary);
    color: #fff;
    padding: 1.125rem 3rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
}

.btn-submit-modern:hover {
    background: var(--hotel-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--hotel-shadow-lg);
}

/* Trust Indicators */
.trust-section {
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid var(--hotel-border);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

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

.trust-item .icon {
    font-size: 2.5rem;
    color: var(--hotel-primary);
    margin-bottom: 1rem;
}

.trust-item .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--hotel-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.trust-item .label {
    font-size: 0.95rem;
    color: var(--hotel-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hotels-hero {
        padding: 80px 0 60px;
    }

    .hero-content-modern h1 {
        font-size: 2.25rem;
    }

    .hero-content-modern .subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat-item .number {
        font-size: 2rem;
    }

    .quick-inquiry-card {
        padding: 1.5rem;
        margin-top: -40px;
    }

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

    .section-header-modern h2 {
        font-size: 2rem;
    }

    .benefits-grid,
    .destinations-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .destination-card-modern {
        height: 320px;
    }

    .inquiry-header-modern,
    .inquiry-form-modern {
        padding: 2rem 1.5rem;
    }

    .inquiry-header-modern h2 {
        font-size: 1.75rem;
    }

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

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Badge Styles */
.badge-modern {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--hotel-primary), var(--hotel-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
