.contact-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #132f3f, #0f2430);
    color: #fff;
    text-align: center;
}

.contact-section h2 {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 24px;
    line-height: 1.4;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: #ffffff;
    color: #333;
    padding: 35px 25px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card-red {
    background: #e1261c;
    color: #fff;
}

.icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.icon i {
    color: #140c5c;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive text */
@media (max-width: 600px) {
    .contact-section h2 {
        font-size: 20px;
    }
}

/* Section */
.message-section {
    min-height: 100vh;
    padding: 80px 20px;
    background: linear-gradient(180deg, #132f3f, #0f2430);
    color: #fff;
}

.form-wrapper {
    max-width: 900px;
    margin: auto;
}

.form-wrapper h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.form-wrapper p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 50px;
}

/* Form Layout */
.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.input-group {
    position: relative;
    margin-bottom: 45px;
}

.input-group.full {
    width: 100%;
}

/* Inputs */
.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.4);
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    outline: none;
    resize: none;
}

/* Labels */
.input-group label {
    position: absolute;
    left: 0;
    top: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Floating effect */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -18px;
    font-size: 13px;
    color: #c77dff;
}

.input-group input:focus,
.input-group textarea:focus {
    border-bottom-color: #c77dff;
}

/* Button */
.btn-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

button {
    background: linear-gradient(135deg, #00bcd4, #132f3f);
    border: none;
    padding: 14px 32px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 12px 25px rgba(46, 23, 179, 0.4);
    transition: transform 0.3s ease;
}

button:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .form-wrapper h1 {
        font-size: 32px;
    }

    .row {
        grid-template-columns: 1fr;
    }

    .btn-wrap {
        justify-content: center;
    }
}