.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.phone-input-container {
    display: flex;
    gap: 8px;
    width: 100%;
    align-items: flex-start;
}

.country-selector {
    position: relative;
    flex: 0 0 140px;
    min-width: 140px;
}

.country-selected {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    height: 38px;
    transition: all 0.3s ease;
}

.country-selected:hover {
    background: #f8f9fa;
    border-color: #d0d0d0;
}

.country-flag-img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    margin-right: 8px;
    box-shadow: 0 0 2px rgba(0,0,0,0.1);
}

.country-code {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
}

.country-dropdown-arrow {
    margin-left: auto;
    color: #666666;
    font-size: 12px;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.country-dropdown.show {
    display: block;
}

.country-search {
    position: sticky;
    top: 0;
    background: white;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.country-search input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.input-field, .contact-input {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #333333;
    transition: all 0.3s ease;
}

.input-field:focus, .contact-input:focus {
    border-color: #714c08;
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(113, 76, 8, 0.1);
}

.input-field::placeholder, .contact-input::placeholder {
    color: #999999;
}

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

.error-message {
    color: #ff6b6b;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.validation-message {
    font-size: 12px;
    margin-top: 4px;
}

.validation-success {
    color: #51cf66;
}

.validation-error {
    color: #ff6b6b;
}

.btn1 {
    background: none;
    border: none;
    padding: 0;
}

.btn1 a {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #714c08;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn1 a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .country-selector {
        flex: 0 0 110px;
        min-width: 110px;
    }
    
    .btn1 a {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
}

/* Animation Effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-form {
    animation: fadeIn 0.5s ease-out;
}
