* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    min-height: 100vh;
}

/* Hotel Logo Styles */
.hotel-logo {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

.logo-arc {
    position: relative;
    display: inline-block;
}

.logo-arc::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    height: 60px;
    background: linear-gradient(45deg, #20B2AA, #48D1CC);
    border-radius: 50px 50px 0 0;
    z-index: -1;
}

.hotel-text {
    font-size: 14px;
    color: #666;
    display: block;
    margin-top: 15px;
    font-weight: 300;
}

.tilmen-text {
    font-size: 32px;
    font-weight: bold;
    color: #20B2AA;
    margin: 5px 0;
}

.stars {
    color: #20B2AA;
    font-size: 20px;
    letter-spacing: 2px;
}

/* Form Header */
.form-header {
    background: #007bff;
    color: white;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
}

.form-header h2 {
    margin: 0;
    font-size: 20px;
}

/* Form Styles */
.form-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* Date Section */
.date-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.date-group {
    text-align: center;
}

.date-group h3 {
    color: #B8860B;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.date-group input[type="date"] {
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    width: 200px;
    transition: border-color 0.3s ease;
}

.date-group input[type="date"]:focus {
    outline: none;
    border-color: #20B2AA;
}

/* Form Rows */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group.full-width {
    flex: 100%;
}

.form-group select,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.form-group select:focus,
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #20B2AA;
}

.form-group select {
    cursor: pointer;
    color: #B8860B;
}

.form-group input::placeholder {
    color: #B8860B;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Rating Questions */
.rating-question {
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.rating-question h4 {
    margin-bottom: 8px;
    color: #333;
    font-size: 16px;
}

.rating-question .instruction {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.rating-options {
    display: flex;
    gap: 15px;
    align-items: center;
}

.rating-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #20B2AA;
}

.rating-option label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

/* Yes/No Questions */
.yes-no-question {
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.yes-no-options {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.yes-no-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yes-no-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #20B2AA;
}

.yes-no-option label {
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

/* File Upload */
.file-upload {
    border: 2px dashed #e9ecef;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    background: #f8f9fa;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload label {
    display: inline-block;
    padding: 10px 20px;
    background: #20B2AA;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.file-upload label:hover {
    background: #1a9a94;
}

.file-name {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.file-info {
    margin-top: 5px;
    font-size: 12px;
    color: #888;
    font-style: italic;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #0056b3;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Section Headers */
.section-header {
    background: #e3f2fd;
    color: #1976d2;
    padding: 10px 15px;
    margin: 20px 0 15px 0;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
}

/* Thank You Message */
.thank-you-message {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #20B2AA;
    margin-top: 20px;
}

.thank-you-message p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.thank-you-message p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 0;
    }
    
    .date-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .date-group input[type="date"] {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        min-width: auto;
    }
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}
