.v-footer {
    width: 100%;
    font-family: inherit;
}

/* -------------------------------------
 * CTA Banner
 * ------------------------------------- */
.v-footer-cta {
    background-color: var(--v-color-primary, #b50e35);
    border-radius: 8px;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    position: relative;
    z-index: 10;
    margin-bottom: -50px;
    transform: translateY(-50px);
    box-shadow: 0 10px 30px rgba(181, 14, 53, 0.2);
}

.v-footer-cta-content {
    flex: 1;
    max-width: 800px;
    padding-right: 40px;
}

.v-footer-cta-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.v-footer-cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 300;
}

.v-footer-cta-text strong {
    font-weight: 700;
}

.v-footer-cta-btn-wrap {
    flex-shrink: 0;
}

.v-footer-cta-btn {
    display: inline-block;
    background-color: #ffffff;
    color: var(--v-color-primary, #b50e35);
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.v-footer-cta-btn:hover {
    background-color: #f1f1f1;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* -------------------------------------
 * Main Footer Columns
 * ------------------------------------- */
.v-footer-main {
    background-color: #ffffff;
    padding: 80px 0 60px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    border-top: 1px solid #f0f0f0;
}

.v-footer-col {
    flex: 1;
}

.v-footer-col-1 {
    flex: 1.2;
    padding-right: 40px;
}

.v-footer-logo {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2.5rem;
    color: var(--v-color-primary, #b50e35);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.v-footer-priv {
    color: #718096;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: transparent;
}

.v-footer-priv:hover {
    color: var(--v-color-primary, #b50e35);
    text-decoration-color: var(--v-color-primary, #b50e35);
}

.v-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v-footer-list li {
    margin-bottom: 12px;
    color: #2d3748;
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Contact Info Styling (Column 2) */
.v-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.v-footer-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #fff1f3;
    border-radius: 50%;
    color: var(--v-color-primary, #b50e35);
    flex-shrink: 0;
}

.v-footer-contact-text {
    flex: 1;
}

/* Style only the links in Column 3 (Services) */
.v-footer-col-3 .v-footer-list li {
    margin-bottom: 6px;
}

.v-footer-col-3 .v-footer-list li a {
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 8px 15px;
    background-color: #f8fafc;
    border-radius: 6px;
    border: 1px solid transparent;
    width: 100%;
    box-sizing: border-box;
}

.v-footer-col-3 .v-footer-list li a::after {
    content: "→";
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--v-color-primary, #b50e35);
    font-weight: bold;
}

.v-footer-col-3 .v-footer-list li a:hover {
    color: var(--v-color-primary, #b50e35);
    background-color: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transform: translateX(4px);
}

.v-footer-col-3 .v-footer-list li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Sublist styling */
.v-footer-sublist {
    list-style: none;
    border-left: 2px solid #edf2f7;
    margin-left: 15px;
    padding-left: 15px !important;
    margin-top: 5px !important;
    margin-bottom: 15px;
}

.v-footer-sublist li {
    margin-bottom: 5px !important;
}

.v-footer-sublist li a {
    padding: 6px 10px !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    font-size: 0.95rem;
    color: #718096 !important;
}

.v-footer-sublist li a::after {
    display: none;
}

.v-footer-sublist li a:hover {
    color: var(--v-color-primary, #b50e35) !important;
    background-color: #f8fafc !important;
}

/* -------------------------------------
 * Bottom Bar
 * ------------------------------------- */
.v-footer-bottom {
    background-color: var(--v-color-primary, #b50e35);
    padding: 25px 0;
    color: #ffffff;
    font-size: 0.95rem;
    text-align: center;
}

.v-footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    opacity: 0.9;
}

.v-footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.v-footer-bottom a:hover {
    color: #ffffff;
    opacity: 0.7;
    text-decoration: underline;
}

/* -------------------------------------
 * Responsive Rules
 * ------------------------------------- */
@media (max-width: 992px) {
    .v-footer-cta {
        flex-direction: column;
        padding: 50px 40px;
        text-align: center;
    }
    
    .v-footer-cta-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .v-footer-main {
        flex-direction: column;
        text-align: left; /* Changed from center */
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .v-footer-cta {
        padding: 40px 20px;
        border-radius: 0;
        transform: translateY(0);
        margin-bottom: 0;
    }

    .v-footer-main {
        padding: 60px 20px 40px; /* Added padding to sides */
    }

    .v-footer-cta-title {
        font-size: 1.5rem;
    }
    
    .v-footer-cta-text {
        font-size: 1rem;
    }
}
/* -------------------------------------
 * Global Popup Styles
 * ------------------------------------- */
.v-popup-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.v-popup-wrapper.is-active {
    visibility: visible;
    opacity: 1;
}

.v-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.v-popup-content {
    position: relative;
    background-color: #c4002b; /* Deep Red matching the screenshot */
    width: 90%;
    max-width: 600px;
    padding: 50px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    max-height: 90vh;
    overflow-y: auto;
}

/* Custom Scrollbar for popup */
.v-popup-content::-webkit-scrollbar {
    width: 6px;
}
.v-popup-content::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}
.v-popup-content::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
}

.v-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.v-popup-close:hover {
    background: rgba(255,255,255,0.2);
}

.v-popup-header {
    text-align: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

/* CF7 Overrides for Popup */
.v-popup-content .wpcf7-form label {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 5px;
    display: block;
}

.v-popup-content .wpcf7-form input[type="text"],
.v-popup-content .wpcf7-form input[type="email"],
.v-popup-content .wpcf7-form input[type="tel"],
.v-popup-content .wpcf7-form textarea {
    background-color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 12px 15px;
    width: 100%;
    margin-bottom: 20px;
    color: #333333;
    font-size: 1rem;
}

.v-popup-content .wpcf7-form input[type="submit"] {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 30px auto 0;
    min-width: 200px;
}

.v-popup-content .wpcf7-form input[type="submit"]:hover {
    background-color: #ffffff;
    color: #c4002b;
}

@media (max-width: 768px) {
    .v-popup-content {
        padding: 40px 20px;
    }
    .v-popup-header {
        font-size: 1.3rem;
    }
}
