
.contact-section {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 20px;
    overflow-x: hidden;
}

.contact-section * {
    box-sizing: border-box;
}

.contact-section .container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px;
    align-items: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 0px 50px;
}

.contact-section .form-container {
    grid-column: 1;
}

.contact-section .right-content {
    grid-column: 2;
    padding-left: 20px;
}


.contact-section .form-header {
    margin-bottom: 30px;
}

.contact-section .form-title {
    font-size: 2.7rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-section .form-subtitle {
    color: #718096;
    font-size: 1.1rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.contact-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.contact-section .form-group {
    display: block;
}

.contact-section .form-input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f7fafc;
    color: #2d3748;
    font-family: inherit;
}

.contact-section .form-input:focus {
    outline: none;
    border-color: #4299e1;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
    transform: translateY(-1px);
}

.contact-section .form-input::placeholder {
    color: #a0aec0;
}

.contact-section .message-input {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
}

.contact-section .submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.contact-section .submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-section .alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}

.contact-section .alert-success {
    background-color: #c6f6d5;
    border: 1px solid #9ae6b4;
    color: #22543d;
}

.contact-section .alert-error {
    background-color: #fed7d7;
    border: 1px solid #feb2b2;
    color: #c53030;
}

.contact-section .right-content {
    padding-left: 20px;
}

.contact-section .main-heading {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2d3748;
    line-height: 1.1;
    margin-bottom: 30px;
}

.contact-section .description {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-section .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-section .contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-section .contact-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
    z-index: 1;
}

.contact-section .contact-details h3 {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-section .contact-details p {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
}

.contact-section .stats-container {
    margin-top: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-section .stat-item {
    text-align: center;
}

.contact-section .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4299e1;
    display: block;
    margin-bottom: 5px;
}

.contact-section .stat-label {
    font-size: 0.9rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-section .container {
        grid-template-columns: 1fr !important;
        gap: 50px;
        padding: 40px 30px;
    }

    .contact-section .form-container {
        grid-column: 1;
        order: 1;
    }

    .contact-section .right-content {
        grid-column: 1;
        order: 2;
        padding-left: 0;
        text-align: center;
    }

    .contact-section .main-heading {
        font-size: 2.5rem;
    }

    .contact-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-section .container {
        padding: 30px 20px;
        gap: 30px;
    }

    .contact-section .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .contact-section .main-heading {
        font-size: 2rem;
        text-align: center;
    }

    .contact-section .form-title {
        font-size: 2rem;
        text-align: center;
    }

    .contact-section .form-subtitle {
        text-align: center;
        margin-bottom: 40px;
    }

    .contact-section .description {
        text-align: center;
    }

    .contact-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section .stat-number {
        font-size: 2rem;
    }

    .contact-section .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .contact-section .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .contact-section .container {
        padding: 20px 15px;
    }

    .contact-section .form-title {
        font-size: 1.8rem;
    }

    .contact-section .main-heading {
        font-size: 1.8rem;
    }

    .contact-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}