/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Terminal */
.contact-terminal {
    background: rgba(13, 17, 23, 0.8);
    border: 2px solid #30363d;
    border-radius: 12px;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    margin-top: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #30363d;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff4757;
}

.terminal-dot:nth-child(2) { background: #ffa502; }
.terminal-dot:nth-child(3) { background: #00ff88; }

.contact-content {
    font-size: 1rem;
}

.contact-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: #00ff88;
    margin-bottom: 30px;
}

.contact-line {
    margin: 12px 0;
    padding-left: 20px;
}

.prompt {
    color: #00ff88;
    margin-right: 10px;
}

.command {
    color: #58a6ff;
}

.output {
    color: #c9d1d9;
}

.output-value {
    color: #ffa502;
    font-weight: 600;
}

.status-ok {
    color: #00ff88;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 20px;
    background: #00ff88;
    margin-left: 5px;
    animation: blink-cursor 1s infinite;
}

@keyframes blink-cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}


.info-section {
    margin: 30px 0;
    padding: 20px;
    background: rgba(88, 166, 255, 0.05);
    border-left: 3px solid #58a6ff;
    border-radius: 6px;
}

.info-section h3 {
    color: #58a6ff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section li {
    padding: 8px 0;
    color: #8b949e;
}

.info-section li::before {
    content: '\25B9';
    color: #58a6ff;
    margin-right: 10px;
}

.work-section {
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 136, 77, 0.05);
    border-left: 3px solid #00ff88;
    border-radius: 6px;
}

.work-section h3 {
    color: #00ff88;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.work-section ul {
    list-style: none;
    padding: 0;
}

.work-section li {
    padding: 8px 0;
    color: #8b949e;
}

.work-section li::before {
    content: '\2713';
    color: #00ff88;
    margin-right: 10px;
    font-weight: bold;
}

.cta-message {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid #00ff88;
    border-radius: 6px;
    text-align: center;
}

.cta-message .command {
    font-size: 1.1rem;
    color: #00ff88;
}

/* Contact Form */
.contact-form-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #30363d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.form-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.field-prompt {
    color: #00ff88;
    font-weight: 600;
    padding-top: 12px;
    flex-shrink: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    flex: 1;
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid #30363d;
    border-radius: 6px;
    padding: 12px 15px;
    color: #e6edf3;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8b949e;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.15);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300ff88' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact-form select option {
    background: #0d1117;
    color: #e6edf3;
}

.form-submit {
    background: transparent;
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 12px 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.form-submit:hover {
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-status {
    margin-top: 15px;
    padding: 15px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.form-status.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    color: #00ff88;
}

.form-status.error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
}

body.light-theme .contact-terminal {
    background: rgba(255, 255, 255, 0.9);
    border-color: #d0d7de;
}

body.light-theme .terminal-header { border-bottom-color: #d0d7de; }
body.light-theme .contact-title { color: #00884d; }
body.light-theme .prompt { color: #00884d; }
body.light-theme .command { color: #0969da; }
body.light-theme .output { color: #24292f; }
body.light-theme .output-value { color: #dd8800; }
body.light-theme .status-ok { color: #00884d; }
body.light-theme .cursor { background: #00884d; }
body.light-theme .info-section { background: rgba(9, 105, 218, 0.05); border-left-color: #0969da; }
body.light-theme .info-section h3 { color: #0969da; }
body.light-theme .info-section li { color: #57606a; }
body.light-theme .info-section li::before { color: #0969da; }
body.light-theme .work-section { background: rgba(0, 136, 77, 0.05); border-left-color: #00884d; }
body.light-theme .work-section h3 { color: #00884d; }
body.light-theme .work-section li { color: #57606a; }
body.light-theme .work-section li::before { color: #00884d; }
body.light-theme .cta-message { background: rgba(0, 136, 77, 0.05); border-color: #00884d; }
body.light-theme .cta-message .command { color: #00884d; }

body.light-theme .contact-form-section { border-top-color: #d0d7de; }
body.light-theme .contact-form input,
body.light-theme .contact-form textarea,
body.light-theme .contact-form select {
    background-color: #f6f8fa;
    border-color: #d0d7de;
    color: #24292f;
}
body.light-theme .contact-form input::placeholder,
body.light-theme .contact-form textarea::placeholder { color: #57606a; }
body.light-theme .contact-form input:focus,
body.light-theme .contact-form textarea:focus,
body.light-theme .contact-form select:focus {
    border-color: #00884d;
    box-shadow: 0 0 10px rgba(0, 136, 77, 0.15);
}
body.light-theme .contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300884d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}
body.light-theme .contact-form select option { background: #ffffff; color: #24292f; }
body.light-theme .field-prompt { color: #00884d; }
body.light-theme .form-submit { border-color: #00884d; color: #00884d; }
body.light-theme .form-submit:hover { background: rgba(0, 136, 77, 0.1); box-shadow: 0 0 20px rgba(0, 136, 77, 0.2); }
body.light-theme .form-status.success { background: rgba(0, 136, 77, 0.1); border-color: #00884d; color: #00884d; }

/* Tablet and medium screens - improve navbar spacing */


/* Responsive */
@media (max-width: 768px) {

    .contact-terminal { padding: 30px 20px; margin-top: 80px; }
    .contact-title { font-size: 1.5rem; }
    .contact-content { font-size: 0.9rem; }
}
