/* ==============================
   Hotel Partners Page - Simple & Elegant Design
   ============================== */

/* Page Header - Minimal */
.page-header {
    background: #f8f9fa;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Hotels Section */
.hotels-section {
    padding: 60px 0;
    background: white;
}

/* Hotel Card - Clean Design */
.hotel-card {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #e8f5e8;
}

/* Hotel Header */
.hotel-header {
    background: linear-gradient(135deg, #f8f9fa, #e8f5e8);
    padding: 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.hotel-logo img {
    width: 100px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hotel-info h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 8px;
}

.hotel-info p {
    color: #555;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.exclusive-badge {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

/* Hotel Details */
.hotel-details {
    padding: 30px;
    background: #fdfdfd;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.detail-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-item i {
    color: #4CAF50;
    font-size: 1rem;
    margin-top: 2px;
    min-width: 16px;
}

.detail-item .label {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.detail-item .value {
    display: block;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.detail-item a.value {
    color: #2E7D32;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-item a.value:hover {
    color: #1B5E20;
    text-decoration: underline;
}

/* Email Section */
.email-section {
    border-top: 1px solid #e8f5e8;
    padding-top: 20px;
}

.email-item {
    background: #f8fdf8;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #4CAF50;
}

.email-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.email-list a {
    color: #2E7D32;
    text-decoration: none;
    font-weight: 500;
}

.email-list a:hover {
    text-decoration: underline;
}

.email-list .cc {
    font-size: 0.85rem;
    color: #888;
}

.email-list .cc a {
    color: #666;
}

/* Reservation Form */
.reservation-form {
    background: #f8f9fa;
    padding: 30px;
    border-top: 1px solid #e0e0e0;
}

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

.form-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-header p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Form Action */
.form-action {
    margin-bottom: 25px;
}

.form-download {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.form-download:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pdf-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d32f2f, #f44336);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pdf-icon i {
    color: white;
    font-size: 1.4rem;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.download-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.btn-download {
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-download:hover {
    background: linear-gradient(135deg, #1B5E20, #2E7D32);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
    color: white;
    text-decoration: none;
}

/* Form Steps */
.form-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e8f5e8;
    transition: background-color 0.3s ease;
}

.step:hover {
    background: #f8fdf8;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.step span:last-child {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .hotels-section {
        padding: 40px 0;
    }
    
    .hotel-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .hotel-logo img {
        width: 80px;
    }
    
    .hotel-info h2 {
        font-size: 1.4rem;
    }
    
    .hotel-details {
        padding: 20px;
    }
    
    .detail-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .detail-col {
        gap: 15px;
    }
    
    .reservation-form {
        padding: 20px;
    }
    
    .form-download {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .form-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .step {
        padding: 12px 8px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .step span:last-child {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.6rem;
    }
    
    .hotel-card {
        margin: 0 15px;
        border-radius: 8px;
    }
    
    .hotel-header {
        padding: 20px;
    }
    
    .hotel-details {
        padding: 15px;
    }
    
    .reservation-form {
        padding: 15px;
    }
    
    .form-steps {
        grid-template-columns: 1fr;
    }
    
    .exclusive-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}