/* -------------------------------------
 * Contact Page Styles
 * ------------------------------------- */

.verslolygis-contact-wrapper {
    font-family: "Outfit", sans-serif;
    color: #333333;
    background-color: #ffffff;
}

.v-contact-hero-section {
    padding: 100px 0;
}

.v-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.v-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* Left Column */
.v-contact-info-col {
    padding-right: 20px;
}

.v-contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 25px;
    line-height: 1.2;
}

.v-contact-desc {
    font-size: 1.05rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 40px;
}

.v-contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.v-contact-detail-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.v-contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--v-color-primary, #b50e35);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(181, 14, 53, 0.2);
}

.v-contact-text {
    font-size: 1.05rem;
    color: #1a202c;
    font-weight: 500;
}

.v-contact-hours-text {
    font-size: 1.05rem;
    color: #1a202c;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 250px;
}

.v-contact-hours-text div {
    display: flex;
    justify-content: space-between;
}

/* Right Column (Form) */
.v-contact-form-title {
    font-size: 1.35rem;
    color: #1a365d;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.5;
    text-align: center;
}

.v-contact-form-wrapper {
    /* Style overrides for CF7 */
}

/* CF7 Style Overrides to match the design */
.wpcf7-form label {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #4a5568;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    font-size: 1rem;
    font-family: inherit;
    color: #1a202c;
    background: transparent;
    transition: border-color 0.3s ease;
    margin-top: 5px;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-bottom-color: var(--v-color-primary, #b50e35);
}

.wpcf7-form input[type="submit"] {
    background-color: var(--v-color-primary, #b50e35);
    color: #ffffff;
    font-weight: 500;
    padding: 15px 50px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #900b2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 14, 53, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .v-contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .v-contact-info-col {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .v-contact-hero-section {
        padding: 50px 0;
    }
    
    .v-contact-title {
        font-size: 2rem;
    }
    
    .v-contact-detail-item {
        gap: 15px;
    }
    
    .v-contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* -------------------------------------
 * Additional Mobile Responsiveness Fixes
 * ------------------------------------- */
@media (max-width: 768px) {
    .v-contact-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .v-contact-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .v-contact-form-title {
        font-size: 1.15rem;
        margin-bottom: 30px;
    }
    .v-contact-text, .v-contact-hours-text {
        font-size: 0.95rem;
    }
    .v-contact-hours-text {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .v-contact-hero-section {
        padding: 40px 0;
    }
    .v-contact-detail-item {
        align-items: flex-start;
    }
    .v-contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-top: 3px;
    }
    .v-contact-hours-text div {
        flex-direction: column;
        gap: 5px;
        border-bottom: 1px solid #f1f5f9;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .v-contact-hours-text div:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .wpcf7-form input[type="submit"] {
        width: 100%;
        box-sizing: border-box;
    }
}

/* Map Section */
.v-contact-map-section {
    width: 100%;
    height: 450px;
    background-color: #f1f5f9;
    /* Premium silver filter matching the design */
    filter: grayscale(100%) opacity(0.8) contrast(1.1);
    transition: filter 0.5s ease;
}

.v-contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.v-contact-map-section:hover {
    filter: grayscale(80%) opacity(1) contrast(1.1);
}

@media (max-width: 768px) {
    .v-contact-map-section {
        height: 350px;
    }
}

/* -------------------------------------
 * Testimonial Section
 * ------------------------------------- */
.v-contact-testi-section {
    display: flex;
    background-color: #f8fafc;
    align-items: stretch;
}

.v-contact-testi-left {
    flex: 1;
    position: relative;
    min-height: 450px;
}

.v-contact-testi-left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-contact-testi-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
}

.v-contact-testi-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 100px 80px;
}

.v-contact-testi-content {
    max-width: 650px;
}

.v-contact-testi-icon {
    font-size: 3.5rem;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 30px;
}

.v-contact-testi-quote {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.7;
    margin-bottom: 40px;
}

.v-contact-testi-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.v-contact-testi-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.v-contact-testi-name {
    font-size: 1.15rem;
    color: #4a5568;
    font-weight: 500;
}

@media (max-width: 992px) {
    .v-contact-testi-section {
        flex-direction: column;
    }
    
    .v-contact-testi-left {
        min-height: 350px;
    }
    
    .v-contact-testi-right {
        padding: 60px 40px;
    }
    
    .v-contact-testi-quote {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .v-contact-testi-right {
        padding: 50px 20px;
    }
    .v-contact-testi-quote {
        font-size: 1.25rem;
    }
    .v-contact-testi-icon {
        font-size: 2.5rem;
    }
}

/* Premium Testimonial Design Updates */
.v-contact-testi-wrapper {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}
.v-contact-testi-section {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.05), 0 5px 15px rgba(0,0,0,0.03);
    background-color: #fcfcfc;
}

@media (max-width: 768px) {
    .v-contact-testi-wrapper {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }
    .v-contact-testi-left {
        min-height: 250px;
    }
}
