.contact-us-section {
    padding-top: 100px;
    background: #ffffff;
    min-height: 80vh;
}

.contact-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 30px;
}

.contact-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-us-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-us-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-us-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

@media (max-width: 968px) {
    .contact-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
    
    .submit-btn-wrapper {
        order: 2;
        grid-column: 1;
        margin-top: 0;
    }
    
    .services-contact-wrapper {
        order: 3;
    }
}

/* Left Column - Form */
.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fff;
}

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

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.phone-input-wrapper {
    position: relative;
}

.phone-input-wrapper .iti {
    width: 100%;
}

.phone-input-wrapper .iti__selected-flag {
    padding: 0 12px;
}

.phone-input-wrapper .form-input {
    padding-left: 60px;
}

.submit-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    width: 100%;
    grid-column: 1 / -1;
}

.submit-btn {
    width: auto;
    min-width: 200px;
    padding: 12px 40px;
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Right Column - Services & Contact Info */
.services-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.services-section,
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.service-icon {
    width: 24px;
    height: 24px;
    color: #000000;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000000;
    flex-shrink: 0;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-info-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-value {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.contact-info-value a {
    color: #1a1a1a;
    text-decoration: none;
}

.contact-info-value a:hover {
    text-decoration: underline;
}

/* Error states */
.form-input.is-invalid,
.form-textarea.is-invalid {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

/* Z-index fix for international telephone input dropdown */
.iti__country-list {
    z-index: 99999 !important;
}

@media (max-width: 768px) {
    .contact-us-section {
        padding-top: 88px;
    }
    
    .contact-us-container {
        padding: 20px 15px;
    }

    .contact-us-title {
        font-size: 28px;
    }

    .contact-us-subtitle {
        font-size: 16px;
    }
}

