/* Contact Page Specific Styles */

.contact-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-container {
    background-color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
    width: 100%;
    padding: 18px 20px;
    border: none;
    background-color: #f5f5f5;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #333;
    transition: all 0.3s ease;
}

.contact-form input::placeholder {
    color: #999;
}

.contact-form input:focus {
    outline: none;
    background-color: #ebebeb;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Phone Input with Country Code */
.phone-input {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.phone-input .country-code {
    padding: 18px 15px;
    background-color: #e8e8e8;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    border-right: 1px solid #d0d0d0;
}

.phone-input input {
    flex: 1;
    background-color: transparent;
    padding-left: 15px;
}

/* Budget Input with Currency Symbol */
.budget-input {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    grid-column: 1 / -1;
}

.budget-input .currency {
    padding: 18px 15px;
    background-color: #e8e8e8;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    border-right: 1px solid #d0d0d0;
}

.budget-input input {
    flex: 1;
    background-color: transparent;
    padding-left: 15px;
}

/* Services Section */
.services-section {
    margin-top: 30px;
    margin-bottom: 30px;
}

.services-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #667eea;
}

.checkbox-label span {
    font-size: 14px;
    color: #555;
    font-family: 'Inter', sans-serif;
}

.checkbox-label:hover span {
    color: #667eea;
}

/* Submit Button */
.contact-form .btn-submit {
    width: 100%;
    padding: 18px 40px;
    background-color: #ff6b35;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form .btn-submit:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.contact-form .btn-submit:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .checkbox-label span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 25px 20px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"] {
        padding: 15px 18px;
        font-size: 14px;
    }

    .phone-input .country-code,
    .budget-input .currency {
        padding: 15px 12px;
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-label {
        font-size: 15px;
    }

    .contact-form .btn-submit {
        padding: 16px 35px;
        font-size: 15px;
    }
}
