/*
Theme Name: Vibe Theme
Theme URI: https://actionagent.ai/
Author: Action Agent
Author URI: https://actionagent.ai/
Description: AI-powered WordPress theme with component-based architecture
Version: 2.0
*/

/* Critical CSS - Above the fold styles */
.hero-critical {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

.hero-cta-contact-button {
    background-color: #2563eb !important; /* Tailwind's blue-600 */
    color: white !important;
    font-weight: 500 !important; /* Tailwind's font-medium */
    padding-top: 1rem !important; /* Tailwind's py-4 */
    padding-bottom: 1rem !important;
    padding-left: 2rem !important; /* Tailwind's px-8 */
    padding-right: 2rem !important;
    border-radius: 9999px !important; /* Tailwind's rounded-full */
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 300ms !important;
    font-size: 1rem !important; /* Tailwind's text-base */
    line-height: 1.5rem !important;
    opacity: 0;
    transform: translateY(1.25rem); /* translate-y-5 */
}

.hero-cta-contact-button:hover {
    background-color: #1d4ed8 !important; /* Tailwind's blue-700 */
}

/* --- Optimized Header Transitions --- */
#main-header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, transform 0.3s ease;
    transform: translateZ(0); /* Enable hardware acceleration */
    backface-visibility: hidden; /* Prevent flickering */
}

/* Disabled - causing issues
#main-header.header-hidden {
    transform: translateY(-100%);
} */

#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Synchronize all text color changes with same timing */
#main-header #nav-links,
#main-header #nav-links a,
#main-header #nav-links button,
#main-header #mobile-menu-button {
    transition: color 0.1s ease !important;
    font-weight: 300 !important; /* Ensure consistent font-light weight */
}

/* Ensure text changes happen immediately with background */
#main-header.header-scrolled #nav-links,
#main-header.header-scrolled #nav-links a,
#main-header.header-scrolled #nav-links button,
#main-header.header-scrolled #mobile-menu-button {
    color: #1f2937 !important;
    font-weight: 300 !important; /* Keep consistent font-light weight */
}

/* Default hover for transparent header (white text becomes dim white) - ONLY for main nav links, NOT dropdowns */
#main-header:not(.header-scrolled):not([style*="background-color"]) #nav-links > li > a:hover,
#main-header:not(.header-scrolled):not([style*="background-color"]) #nav-links > li > button:hover {
    color: rgba(255, 255, 255, 0.7) !important; /* dim white for transparent header */
}

/* Hover for dark header (dark text stays blue on hover) - ONLY for main nav links */
#main-header[style*="background-color"] #nav-links > li > a:hover,
#main-header[style*="background-color"] #nav-links > li > button:hover {
    color: #2563eb !important; /* blue for dark headers */
}

/* Hover for scrolled header (dark text becomes blue) - main nav links */
#main-header.header-scrolled #nav-links > li > a:hover,
#main-header.header-scrolled #nav-links > li > button:hover {
    color: #2563eb !important; /* blue for white background */
}

/* Hover for scrolled header dropdown links - same blue */
#main-header.header-scrolled .group .absolute a:hover {
    color: #2563eb !important; /* blue for dropdown links when scrolled */
    background-color: #f9fafb !important;
}


#main-header #logo-img {
    transition: none; /* Remove transition from logo to make it instant */
}

/* Legacy support for old scrolled class */
#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

#main-header.scrolled .nav-link,
#main-header.scrolled .phone-number {
    color: #1f2937;
}

#main-header.scrolled .nav-link:hover {
    color: #2563eb;
}

#main-header .logo-white { display: block; }
#main-header.scrolled .logo-white { display: none; }
#main-header .logo-color { display: none; }
#main-header.scrolled .logo-color { display: block; }

#main-header .btn-outline-white {
    border: 2px solid white;
    color: white;
}
#main-header.scrolled .btn-outline-white {
    border-color: #2563eb;
    color: #2563eb;
}
#main-header .btn-outline-white:hover {
    background-color: white;
    color: #1f2937;
}
#main-header.scrolled .btn-outline-white:hover {
    background-color: #2563eb;
    color: white;
}
#main-header.scrolled #menu-btn { color: #1f2937; }

#main-header nav .menu-item {
    list-style-type: none;
}

/* Custom styles to use the Inter font family */
body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Custom list style for the blue bullet points */
.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

.custom-list li::before {
    content: '•';
    color: #2563eb; /* Blue-600 to match your theme */
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
    line-height: 1;
}

/* Styles for scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.custom-accordion-height {
    height: 38rem; /* 608px */
}

.services-icon-container {
    background-color: #F7F9F1;
    border-radius: 0.5rem;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.services-icon {
    width: 3rem;
    height: 3rem;
    color: #2563eb;
}

.services-section .grid > div {
    text-align: left;
}

.services-section-header {
    max-width: 50%;
    margin-bottom: 4rem;
}

/* Manual CSS additions for Project Details Page */
.pt-32 {
    padding-top: 8rem;
}

@media (min-width: 1024px) {
    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }
    .lg\:col-span-3 {
        grid-column: span 3 / span 3;
    }
    .lg\:row-span-2 {
        grid-row: span 2 / span 2;
    }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.animate-marquee {
  animation: marquee 40s linear infinite;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spinning-star {
    animation: spin 4s linear infinite;
    height: 1.75rem; /* 28px */
    width: 1.75rem;  /* 28px */
    color: black;
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

/* Mobile Menu Button Visibility Fix */
@media (max-width: 1023px) {
    #mobile-menu-button {
        display: block !important;
        visibility: visible !important;
        z-index: 60;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 8px;
    }
    
    #mobile-menu-button svg {
        width: 28px;
        height: 28px;
        stroke-width: 2;
    }
    
    /* Add background on dark headers for better visibility */
    #main-header:not(.header-scrolled) #mobile-menu-button {
        background-color: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
    }
    
    #main-header.header-scrolled #mobile-menu-button {
        background-color: transparent;
    }
    
    /* Mobile menu full screen with solid background */
    #mobile-menu {
        background-color: #111827 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 9999 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    #mobile-menu.hidden {
        display: none !important;
    }
    
    /* Force all mobile menu content to be visible */
    #mobile-menu * {
        color: white !important;
    }
    
    #mobile-menu nav {
        display: block !important;
    }
    
    #mobile-menu nav ul {
        display: block !important;
        list-style: none !important;
    }
    
    #mobile-menu nav ul li {
        display: block !important;
    }
    
    #mobile-menu nav ul li a {
        color: white !important;
        display: block !important;
        text-decoration: none !important;
    }
    
    #mobile-menu nav ul li button {
        color: white !important;
        text-decoration: none !important;
    }
    
    /* Fix mobile services dropdown button alignment */
    #mobile-services-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        text-align: left !important;
    }
}

/* --- Mobile Accordion Improvements --- */
@media (max-width: 1023px) {
    /* Mobile: Stack accordion panels vertically */
    .image-accordion-mobile {
        flex-direction: column !important;
        height: auto !important;
    }
    
    .image-accordion-mobile .accordion-panel {
        flex: none !important;
        height: 200px !important;
        margin-bottom: 4px;
    }
    
    .image-accordion-mobile .accordion-panel:hover {
        flex: none !important;
    }
    
    /* Mobile: Always show text, not just on hover */
    .image-accordion-mobile .accordion-text {
        opacity: 1 !important;
        font-size: 1.125rem !important; /* text-lg */
        padding: 16px !important;
    }
    
    /* Mobile: Enhance gradient overlay for better text readability */
    .image-accordion-mobile .accordion-overlay {
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%) !important;
    }
    
    /* Mobile: Better positioning for text */
    .image-accordion-mobile .accordion-text-container {
        bottom: 12px !important;
        left: 16px !important;
        right: 16px !important;
    }
}

/* Fix hero image aspect ratio on mobile */
@media (max-width: 640px) {
    /* Prevent vertical squishing of hero social proof image */
    #hero-social-proof img,
    [id$="-hero-social-proof"] img {
        height: auto !important;
        min-height: 48px;
        max-height: 64px;
        width: auto;
        object-fit: contain;
    }
}

/* Desktop: Let original Tailwind classes work without interference */
@media (min-width: 1024px) {
    /* Only override what's absolutely necessary for desktop */
    .image-accordion-desktop {
        padding: 0 !important; /* Remove mobile padding */
    }
    
    /* Ensure mobile-specific overrides don't affect desktop */
    .image-accordion-desktop .accordion-panel {
        margin-bottom: 0 !important;
    }
}

/* --- Explicit Lightbox Styles --- */
#lightbox {
    display: none; /* Hidden by default, JS will toggle this */
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999; /* High z-index to ensure it's on top */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#lightbox-top-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 1rem;
    z-index: 10;
}

#lightbox-counter {
    font-size: 1.125rem;
    font-weight: 600;
}

#close-lightbox {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 0.5rem;
    border-radius: 9999px;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s;
}
#close-lightbox:hover {
    background-color: rgba(0, 0, 0, 0.75);
}
#close-lightbox svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

#lightbox-content-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

#prev-lightbox, #next-lightbox {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.75rem;
    border-radius: 9999px;
    cursor: pointer;
    z-index: 5;
    transition: background-color 0.2s;
}
#prev-lightbox:hover, #next-lightbox:hover {
    background-color: rgba(0, 0, 0, 0.75);
}
#prev-lightbox svg, #next-lightbox svg {
    width: 2rem;
    height: 2rem;
    display: block;
}

#prev-lightbox { left: 1rem; }
#next-lightbox { right: 1rem; }

@media (min-width: 768px) {
    #prev-lightbox { left: 2.5rem; }
    #next-lightbox { right: 2.5rem; }
}

#lightbox-image-container {
    max-width: 1152px;
    max-height: 80vh;
}

#lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

#lightbox-caption {
    position: absolute;
    bottom: 1rem;
    color: white;
    text-align: center;
    font-size: 1.125rem;
    width: 100%;
}

/* Custom styles for the gallery page */
.page-template-default body {
    background-color: #f7f5f2; /* A light beige background similar to the screenshot */
}
/* Style for the gallery images on hover */
.lightbox-trigger {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.lightbox-trigger:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* Fade-in animation for the lightbox */
.lightbox-fade-in {
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Fade-out animation for the lightbox */
.lightbox-fade-out {
    animation: fadeOut 0.3s ease-in-out;
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* --- Financing Page Specific Styles --- */
#financing-page .animate-fade-in-up {
    animation: financing-fade-in-up 0.8s ease-out forwards;
}

#financing-page .scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#financing-page .scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes financing-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Blog and Content Typography Styles --- */
.prose {
    color: #374151;
    max-width: 65ch;
    line-height: 1.75;
}

.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    color: #111827;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.25;
}

.prose h1 {
    font-size: 2.25em;
    margin-top: 0;
}

.prose h2 {
    font-size: 1.875em;
    margin-top: 2em;
}

.prose h3 {
    font-size: 1.5em;
}

.prose h4 {
    font-size: 1.25em;
}

.prose p {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    font-size: 1.125em;
    line-height: 1.75;
}

.prose a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
}

.prose a:hover {
    color: #1d4ed8;
}

.prose strong {
    color: #111827;
    font-weight: 600;
}

.prose em {
    font-style: italic;
}

.prose blockquote {
    font-weight: 500;
    font-style: italic;
    color: #111827;
    border-left: 0.25rem solid #e5e7eb;
    quotes: "\201C""\201D""\2018""\2019";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-left: 1em;
    font-size: 1.25em;
    line-height: 1.6;
}

.prose blockquote p:first-of-type::before {
    content: open-quote;
}

.prose blockquote p:last-of-type::after {
    content: close-quote;
}

.prose ul, .prose ol {
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-left: 1.625em;
}

.prose ul {
    list-style-type: disc;
}

.prose ol {
    list-style-type: decimal;
}

.prose li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    line-height: 1.625;
}

.prose li p {
    margin-top: 0.75em;
    margin-bottom: 0.75em;
}

.prose img {
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.prose figure {
    margin-top: 2em;
    margin-bottom: 2em;
}

.prose figure img {
    margin-top: 0;
    margin-bottom: 0;
}

.prose figcaption {
    color: #6b7280;
    font-size: 0.875em;
    line-height: 1.4;
    margin-top: 0.857em;
    text-align: center;
    font-style: italic;
}

.prose pre {
    color: #e5e7eb;
    background-color: #1f2937;
    overflow-x: auto;
    font-size: 0.875em;
    line-height: 1.714;
    margin-top: 1.714em;
    margin-bottom: 1.714em;
    border-radius: 0.375rem;
    padding: 1.142em 1.143em;
}

.prose code {
    color: #111827;
    font-weight: 600;
    font-size: 0.875em;
}

.prose pre code {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.prose :not(pre) > code {
    background-color: #f3f4f6;
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

.prose table {
    width: 100%;
    table-layout: auto;
    text-align: left;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 0.875em;
    line-height: 1.7;
    border-collapse: collapse;
}

.prose thead {
    border-bottom: 1px solid #d1d5db;
}

.prose thead th {
    color: #111827;
    font-weight: 600;
    vertical-align: bottom;
    padding: 0 0.571em 0.571em 0.571em;
}

.prose tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.prose tbody td {
    vertical-align: baseline;
    padding: 0.571em;
}

.prose hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 3em;
    margin-bottom: 3em;
}

/* Line clamping utility for excerpts */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog post meta styling */
.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.post-meta svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Comment styling */
.comment-respond {
    margin-top: 2rem;
}

.comment-form {
    display: grid;
    gap: 1rem;
}

.comment-form label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form input[type="submit"] {
    background-color: #2563eb;
    color: white;
    font-weight: 500;
    border: none;
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    width: auto;
    justify-self: start;
}

.comment-form input[type="submit"]:hover {
    background-color: #1d4ed8;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .prose h1 {
        font-size: 2rem;
    }
    
    .prose h2 {
        font-size: 1.5rem;
    }
    
    .prose p {
        font-size: 1rem;
    }
    
    .prose blockquote {
        font-size: 1.125rem;
        padding-left: 0.75rem;
    }
}

/* Hide the theme's default popup when using Vibe popup */
body.vibe-popup-active #consultationPopup {
    display: none !important;
}

/* Center the Vibe popup and ensure close button works */
.vibe-contact-form-wrapper.vibe-form-popup {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.75) !important;
    z-index: 10000 !important;
}

.vibe-contact-form-wrapper.vibe-form-popup .vibe-contact-form {
    margin: auto !important;
    position: relative !important;
}

/* Enhanced close button styling - positioned inside the form container */
.vibe-contact-form-wrapper.vibe-form-popup .vibe-contact-form-container {
    position: relative !important;
}

.vibe-contact-form-wrapper.vibe-form-popup .vibe-popup-close {
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important;
    width: 28px !important;
    height: 28px !important;
    border: none !important;
    background: #f9fafb !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.2s ease !important;
}

.vibe-contact-form-wrapper.vibe-form-popup .vibe-popup-close:hover {
    background: #f3f4f6 !important;
    border-color: #d1d5db !important;
    transform: scale(1.05) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.vibe-contact-form-wrapper.vibe-form-popup .vibe-popup-close::before,
.vibe-contact-form-wrapper.vibe-form-popup .vibe-popup-close::after {
    content: '' !important;
    position: absolute !important;
    width: 12px !important;
    height: 1.5px !important;
    background: #6b7280 !important;
    border-radius: 1px !important;
}

.vibe-contact-form-wrapper.vibe-form-popup .vibe-popup-close::before {
    transform: rotate(45deg) !important;
}

.vibe-contact-form-wrapper.vibe-form-popup .vibe-popup-close::after {
    transform: rotate(-45deg) !important;
}

/* Hide ALL Vibe popups by default - force them hidden */
.vibe-contact-form-wrapper.vibe-form-popup,
.vibe-popup-trigger,
div[class*="vibe-form-popup"],
div[class*="vibe-popup"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Only show our controlled popup when explicitly opened */
.vibe-contact-form-wrapper.vibe-form-popup[id^="vibe-popup-"].vibe-popup-open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .vibe-contact-form-wrapper.vibe-form-popup {
        padding: 1rem !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .vibe-contact-form-wrapper.vibe-form-popup .vibe-contact-form {
        margin: 0 !important;
        padding: 2rem 1.5rem !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        width: 100% !important;
        max-width: 400px !important;
    }
    
    .vibe-contact-form-wrapper.vibe-form-popup .vibe-popup-close {
        top: 0.75rem !important;
        right: 0.75rem !important;
        width: 26px !important;
        height: 26px !important;
    }
    
    .vibe-contact-form-wrapper.vibe-form-popup .vibe-popup-close::before,
    .vibe-contact-form-wrapper.vibe-form-popup .vibe-popup-close::after {
        width: 11px !important;
        height: 1.5px !important;
    }
}
