/* css/contactus.css - Dark theme, no outlines, mobile-friendly */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    padding: 20px 15px;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 40px auto;
    background: #111;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group {
    margin-bottom: 24px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #ccc;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 14px 16px;
    background: #222;
    border: 1px solid #444;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* REMOVE OUTLINE COMPLETELY (desktop + mobile) */
input:focus,
textarea:focus,
button:focus {
    outline: none !important;
    border-color: #555;
    box-shadow: 0 0 0 3px rgba(80, 80, 80, 0.3);
}

textarea {
    resize: vertical;
    min-height: 130px;
}

button {
    background: #fff;
    color: #000;
    border: none;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s ease;
}

/* NO HOVER ON MOBILE */
button:hover {
    background: #eee;
}

@media (hover: none) and (pointer: coarse) {
    button:hover {
        background: #fff !important;
    }
}

.success {
    background: rgba(0, 200, 0, 0.2);
    color: #0f0;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #0f0;
}

.error {
    background: rgba(255, 0, 0, 0.2);
    color: #ff5555;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #ff5555;
}

/* Extra mobile tweaks */
@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
        margin: 20px 10px;
    }
    h1 {
        font-size: 1.9rem;
    }
}

/* Add these to your existing dark CSS */
.row {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
}
.half {
    flex: 1;
}
@media (max-width: 640px) {
    .row { flex-direction: column; }
    .half { flex: none; }
}
select {
    width: 100%;
    padding: 14px 16px;
    background: #222;
    border: 1px solid #444;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
}
.cooldown {
    background: rgba(255,165,0,0.2);
    color: #ffa500;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    border: 1px solid #ffa500;
}