/* Landing Page Styles */

.landing-container {
    background: linear-gradient(135deg, #2ec9e2 0%, #1a9d96 100%);
    min-height: 100vh;
    padding: 40px 0;
}

.landing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 50px 40px;
    animation: fadeInUp 0.6s ease-out;
}

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

/* Logo Section */
.logo-section {
    margin-bottom: 30px;
}

.logo-image-landing {
    width: 200px;
    height: 90px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.logo-text-landing {
    color: #666;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.4;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 40px;
}

.welcome-title {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.welcome-subtitle {
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* Form Section */
.form-section {
    margin-top: 30px;
}

.feedback-form .form-group {
    margin-bottom: 25px;
}

.feedback-form .form-label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.feedback-form .form-label i {
    color: #2ec9e2;
    margin-right: 8px;
}

.feedback-form .form-control,
.feedback-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s;
}

.feedback-form .form-control:focus,
.feedback-form .form-select:focus {
    border-color: #2ec9e2;
    box-shadow: 0 0 0 0.2rem rgba(46, 201, 226, 0.25);
    outline: none;
}

.feedback-form .form-control-lg {
    padding: 15px 20px;
    font-size: 1.1rem;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, #2ec9e2 0%, #1a9d96 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(46, 201, 226, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 201, 226, 0.4);
    color: white;
}

.btn-submit:active {
    transform: translateY(0);
}

/* User Info Section */
.user-info-section .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.user-info-section .card-title {
    color: #2ec9e2;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Feedback Section */
.feedback-section {
    margin-top: 30px;
}

.feedback-section h3 {
    color: #2c3e50;
    font-weight: 700;
}

.rating-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.btn-rating {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    color: #2c3e50;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-rating:hover {
    border-color: #2ec9e2;
    color: #2ec9e2;
    transform: translateY(-2px);
}

.btn-rating.active {
    background: #2ec9e2;
    color: white;
    border-color: #2ec9e2;
}

.btn-rating i {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .landing-card {
        padding: 30px 20px;
    }

    .logo-text-como-landing {
        font-size: 40px;
        letter-spacing: 6px;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .rating-buttons {
        flex-direction: column;
    }

    .btn-rating {
        width: 100%;
    }
}

/* Remove default navbar and footer for landing page */
.landing-container ~ header,
.landing-container ~ footer {
    display: none;
}

/* Autocomplete Styles */
.form-group {
    position: relative;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4edda;
    border-top: none;
    background-color: #fff;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    display: none;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background-color: #f8f9fa;
}

.autocomplete-item strong {
    color: #2ec9e2;
    display: block;
    margin-bottom: 4px;
}

.autocomplete-item small {
    color: #6c757d;
    font-size: 0.875rem;
}

.autocomplete-no-results,
.autocomplete-error {
    padding: 12px 16px;
    color: #6c757d;
    font-style: italic;
    cursor: default;
}

.autocomplete-error {
    color: #dc3545;
}

.autocomplete-item:hover.autocomplete-no-results,
.autocomplete-item:hover.autocomplete-error {
    background-color: #fff;
}

/* Ensure autocomplete doesn't break form layout */
#locationAutocomplete {
    position: relative;
    z-index: 1;
}

#locationAutocomplete:focus {
    z-index: 1001;
    border-color: #2ec9e2;
    box-shadow: 0 0 0 0.2rem rgba(46, 201, 226, 0.25);
}

