/* FOOTER */
.footer {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ccc;
    margin-top: 40px;
    padding: 30px 15px;
    font-size: 14px;
}

/* CONTAINER */
.footer-container {
    max-width: 1100px;
    margin: auto;
}

/* TOP */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

/* LOGO */
.footer-logo img {
    height: 35px;
}

/* COPYRIGHT */
.footer-copy {
    font-size: 13px;
    color: #aaa;
}

/* INFO */
.footer-info {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* LINKS */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: white;
}

/* EXTRA LINK */
.footer-link {
    color: #3498db;
    margin-left: 5px;
}

.footer-link:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 600px) {
    .footer-top {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* POPUP */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    display: none;
    z-index: 9999;
}

.cookie-box {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-text {
    font-size: 14px;
}

.cookie-text a {
    color: #3498db;
}

/* BUTTONS */
.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.cookie-buttons button:first-child {
    background: #27ae60;
    color: white;
}

.cookie-buttons .secondary {
    background: #555;
    color: white;
}

/* MODAL */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.cookie-modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

.cookie-modal-content h3 {
    margin-top: 0;
}

.cookie-modal-content label {
    display: block;
    margin-bottom: 10px;
}

/** TIKET CSS */

.ticket-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.ticket-info {
    margin-bottom: 15px;
}

.ticket-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.message {
    display: flex;
}

.message.user {
    justify-content: flex-end;
}

.message.admin {
    justify-content: flex-start;
}

.message-box {
    max-width: 70%;
    padding: 10px;
    border-radius: 8px;
    background: #ecf0f1;
}

.message.user .message-box {
    background: #3498db;
    color: white;
}

.ticket-form textarea {
    width: 100%;
    height: 80px;
    padding: 10px;
    margin-bottom: 10px;
}

.ticket-form button {
    padding: 10px 15px;
    background: #3498db;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

/** CONTACT.PHP CSS */

.contact-container {
    max-width: 700px;
    margin: 50px auto;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-title {
    margin-bottom: 20px;
}

/* GRID */
.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

/* INPUT */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: 0.2s;
}

/* FOCUS EFFECT */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

/* BUTTON */
.contact-btn {
    width: 100%;
    padding: 12px;
    background: #3498db;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s;
}

.contact-btn:hover {
    background: #2980b9;
}

/* ALERTY */
.alert {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.alert.success {
    background: #2ecc71;
    color: white;
}

.alert.error {
    background: #e74c3c;
    color: white;
}