/* ====================================
   VS Real Contact Us Page Styles
   ==================================== */

/* General Section Styles */
.vs-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.vs-section-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ====================================
   Contact Section
   ==================================== */
.vs-contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.vs-contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

/* ====================================
   Form Styles
   ==================================== */
.vs-contact-form {
    margin-top: 30px;
}

.vs-form-group {
    margin-bottom: 10px;
}

.vs-form-label {
    display: block;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 16px;
    letter-spacing: 1px;
}

.vs-form-input,
.vs-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fff;
    letter-spacing: 1px;
}

.vs-form-input:focus,
.vs-form-textarea:focus {
    outline: none;
    border-color: #FFB800;
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.vs-form-input::placeholder,
.vs-form-textarea::placeholder {
    color: #999;
}

.vs-form-input.error,
.vs-form-textarea.error {
    border-color: #dc3545;
}

.vs-form-input.error:focus,
.vs-form-textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.vs-form-input.success,
.vs-form-textarea.success {
    border-color: #28a745;
}

.vs-form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ====================================
   Error Message Styles
   ==================================== */
.vs-error-message {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 500;
    min-height: 20px;
    letter-spacing: 1px;
}

/* ====================================
   Captcha Styles
   ==================================== */
.vs-captcha-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: center;
}

.vs-captcha-code {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF0CC 100%);
    border: 2px solid #FFB800;
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 200px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #1a1a1a;
    letter-spacing: 5px;
    user-select: none;
    font-family: 'Courier New', monospace;
}

.vs-captcha-code span {
    font-family: 'Courier New', monospace;
}

.vs-refresh-btn {
    background: #FFB800;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-refresh-btn:hover {
    background: #E6A400;
    transform: rotate(90deg);
}

.vs-refresh-btn:active {
    transform: scale(0.95) rotate(90deg);
}

/* ====================================
   Submit Button
   ==================================== */
.vs-submit-btn {
    background: #FFB800;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.vs-submit-btn:hover {
    background: #E6A400;
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
    transform: translateY(-2px);
}

.vs-submit-btn:active {
    transform: translateY(0);
}

.vs-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* ====================================
   Form Message
   ==================================== */
.vs-form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    display: none;
    font-weight: 500;
}

.vs-form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.vs-form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ====================================
   Contact Information Styles
   ==================================== */
.vs-contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.vs-contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #FFB800;
}

.vs-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    align-items: flex-start;
}

.vs-contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vs-contact-icon {
    font-size: 1.5rem;
    color: #FFB800;
    min-width: 30px;
    text-align: center;
}

.vs-contact-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.vs-contact-details p,
.vs-contact-details a {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 5px 0;
    letter-spacing: 1px;
}

.vs-contact-details a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vs-contact-details a:hover {
    color: #E6A400;
    text-decoration: underline;
}

/* ====================================
   Google Map Section
   ==================================== */
.vs-map-section {
    padding: 0;
    background: white;
}

.vs-map-container {
    width: 100%;
    height: 500px;
}

.vs-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ====================================
   Responsive Styles
   ==================================== */
@media (max-width: 992px) {
    .vs-section-title {
        font-size: 2rem;
    }

    .vs-contact-form-wrapper,
    .vs-contact-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .vs-section-title {
        font-size: 1.8rem;
    }

    .vs-section-text {
        font-size: 1rem;
    }

    .vs-contact-section {
        padding: 50px 0;
    }

    .vs-contact-form-wrapper,
    .vs-contact-info {
        padding: 25px;
    }

    .vs-contact-title {
        font-size: 1.5rem;
    }

    .vs-map-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .vs-section-title {
        font-size: 1.5rem;
    }

    .vs-section-text {
        font-size: 0.95rem;
    }

    .vs-contact-section {
        padding: 40px 0;
    }

    .vs-contact-form-wrapper,
    .vs-contact-info {
        padding: 20px;
    }

    .vs-form-group {
        margin-bottom: 20px;
    }

    .vs-form-label {
        font-size: 0.9rem;
    }

    .vs-form-input,
    .vs-form-textarea {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .vs-captcha-wrapper {
        flex-wrap: wrap;
    }

    .vs-captcha-code {
        min-width: 100%;
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .vs-refresh-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .vs-submit-btn {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .vs-contact-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .vs-contact-item {
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .vs-contact-icon {
        font-size: 1.3rem;
    }

    .vs-contact-details h4 {
        font-size: 1rem;
    }

    .vs-contact-details p,
    .vs-contact-details a {
        font-size: 0.9rem;
    }

    .vs-map-container {
        height: 300px;
    }
}

/* ====================================
   Animation Styles
   ==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vs-contact-form-wrapper,
.vs-contact-info {
    animation: fadeInUp 0.6s ease-out;
}
