.contact-channels-section {
    margin-bottom: 3rem;
}

.contact-channels-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #e0e0e0; /* Light text color */
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}



.contact-option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option-card:hover {
    transform: translateY(-10px);
    border-color: #84cc16;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.2);
}

.contact-option-card i {
    font-size: 3rem;
    color: var(--gradient-primary); /* Accent color */
    margin-bottom: 1rem;
}

.contact-option-card h3 {
    font-size: 1.8rem;
    color: #e0e0e0; /* Light text color */
    margin-bottom: 0.5rem;
}

.contact-option-card p {
    font-size: 1rem;
    color: var(--text-secondary); /* Secondary text color */
}

.contact-option-card span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary); /* Secondary text color */
    margin-top: 0.5rem;
}

.contact-option-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-option-card p {
    font-size: 1rem;
    color: #666;
}

.contact-option-card span {
    display: block;
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

.contact-form-section {
    margin-top: 3rem;
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #e0e0e0; /* Light text color */
}

.contact-form-section p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary); /* Secondary text color */
    margin-bottom: 2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e0e0e0; /* Light text color */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: calc(100% - 30px); /* Account for padding and border */
    padding: 15px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #e0e0e0; /* Light text color */
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #84cc16;
    box-shadow: 0 0 10px rgba(132, 204, 22, 0.3);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-cta-small {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gradient-primary);
    color: #0a0a0a;
    padding: 15px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-form .btn-cta-small:hover {
    background: #a3e635;
    transform: scale(1.05);
}
