

.contact-section {
    padding-top: 8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 245, 245, 0.95));
    margin-top: 0;
}

body.dark-mode .contact-section {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(30, 30, 30, 0.95));
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-container h1,
.contact-container h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: bold;
    text-align: center;
}

body.dark-mode .contact-container h1,
body.dark-mode .contact-container h2 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-intro {
    font-size: 1.2rem;
    color: #999;
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

body.dark-mode .contact-intro {
    color: #bbb;
}

/*.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}*/

.contact-info {
    display: flex;
    flex-direction: column;
}

.info-item {
    background: #EBF0ED;
   /* border-left: 4px solid #494949;*/
    padding: 1.5rem;
    transition: all 0.3s ease;
}



body.dark-mode .info-item {
    background: rgba(168, 237, 234, 0.1);
    border-left-color: #a8edea;
}

body.dark-mode .info-item:hover {
    background: rgba(168, 237, 234, 0.2);
}

.info-item h3 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

body.dark-mode .info-item h3 {
    color: #a8edea;
}

.info-item a,
.info-item p {
    color: #555;
    text-decoration: none;
    font-size: 0.95rem;
    word-break: break-word;
}

body.dark-mode .info-item a,
body.dark-mode .info-item p {
    color: #ccc;
}

.info-item a:hover {
    color: #000;
    text-decoration: underline;
}

body.dark-mode .info-item a:hover {
    color: #a8edea;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

body.dark-mode .form-group label {
    color: #e0e0e0;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    background: white;
    color: #333;
    transition: all 0.3s ease;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea {
    background: #2a2a2a;
    color: #e0e0e0;
    border-color: #444;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
    border-color: #a8edea;
    box-shadow: 0 0 0 3px rgba(168, 237, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    padding: 1rem 2rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

body.dark-mode .submit-btn {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
    box-shadow: 0 8px 20px rgba(168, 237, 234, 0.3);
}

body.dark-mode .submit-btn:hover {
    box-shadow: 0 12px 30px rgba(168, 237, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem 2rem;
    }

    .contact-container h1 {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        gap: 1rem;
    }
}
