/* Contact Section Styles */
#contact {
    padding: 20px 0 100px;
    position: relative;
    background: transparent;
}

/* Section Title Styling */
.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin: 0 0 30px 0;
    text-align: center;
}

/* Contact Info (Left Column) */
.contact-info-container {
    padding-right: 30px;
    padding-top: 100px; /* Push down to center vertically relative to form */
    text-align: center;
}

@media (max-width: 991px) {
    .contact-info-container {
        padding-right: 0;
        padding-top: 0;
        margin-bottom: 40px;
    }
}

.contact-desc {
    font-size: 1.8rem;
    color: #d0d0d0;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 20px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Icon Wrapper */
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.discord-icon {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
    border: 1px solid rgba(88, 101, 242, 0.2);
}

.email-icon {
    background: rgba(22, 114, 75, 0.1);
    color: #16724B;
    border: 1px solid rgba(22, 114, 75, 0.2);
}

.tmp-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card-item:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

/* Text Wrapper */
.text-wrapper {
    flex-grow: 1;
}

.text-wrapper h5 {
    margin: 0 0 5px 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.text-wrapper span {
    color: #aaa;
    font-size: 0.9rem;
    display: block;
}

.contact-card-item:hover .text-wrapper h5 {
    color: #16724B;
}

/* Arrow Icon */
.arrow-icon {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-card-item:hover .arrow-icon {
    color: white;
    transform: translateX(5px);
}

/* Contact Form Wrapper - Glassmorphism */
.contact-form-wrapper {
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #d0d0d0;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group label i {
    color: #16724B;
    margin-right: 8px;
}

/* Inputs */
.feedback-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    color: white;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    outline: none;
}

.feedback-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #16724B;
    box-shadow: 0 0 15px rgba(22, 114, 75, 0.2);
}

.feedback-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.feedback-input {
    min-height: 150px;
    resize: vertical;
}

/* Submit Button */
.submit-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #16724B;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.submit-btn:hover {
    background: #1e9663;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(22, 114, 75, 0.4);
}

.submit-btn i {
    margin-right: 10px;
}

/* Google Sign In & Turnstile adjustments */
#g-signin2, .cf-turnstile {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
