/*
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;

/* Custom color classes to match complete.html */
.text-primary-blue {
    color: #374151;
}

/* Glossy Hero Custom Colors - Exact match from provided design */
:root {
    --canvas: #F6F6F4;
    --ink: #0E1116;
    --stroke: #E7E9EC;
    --primary: #2563EB;
    --primary-600: #1D4ED8;
}

.bg-canvas { background-color: var(--canvas); }
.text-ink { color: var(--ink); }
.border-stroke { border-color: var(--stroke); }
.bg-primary { background-color: var(--primary); }
.text-primary { color: var(--primary); }
.hover\:bg-primary-600:hover { background-color: var(--primary-600); }
.focus\:ring-primary\/40:focus { --tw-ring-color: rgb(37 99 235 / 0.4); }
.focus\:border-primary\/40:focus { border-color: rgb(37 99 235 / 0.4); }

/* Enhanced Glossy Effects for Header */
.bg-canvas\/85 { 
    background-color: rgb(246 246 244 / 0.85); 
}
.backdrop-blur { 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Glassmorphism utility classes - Exact match from original */
.glass-header {
    background: rgba(246, 246, 244, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(231, 233, 236, 0.1);
}

.glass-header.scrolled {
    background: rgba(246, 246, 244, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(231, 233, 236, 0.3);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

/* Additional glassmorphism support */
.supports-backdrop-blur .glass-header {
    background: rgba(246, 246, 244, 0.8);
}

.supports-backdrop-blur .glass-header.scrolled {
    background: rgba(246, 246, 244, 0.8);
}

/* Mobile hero full-width fix */
@media (max-width: 768px) {
    .glossy-hero-mobile {
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100vw !important;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }
}

/* Enhanced button styles for glossy theme */
.glossy-btn-primary {
    background: var(--primary);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.glossy-btn-secondary {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(231, 233, 236, 0.5);
}

.glossy-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
}

/* Star rating styles */
.star-rating {
    color: #fbbf24;
}

/* Steps Process Section Styles */
.steps-process-card {
    text-align: center;
    opacity: 0;
    animation: stepsfadeInUp 0.8s forwards;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.steps-process-card:nth-child(1) { 
    animation-delay: 0.2s; 
}

.steps-process-card:nth-child(2) { 
    animation-delay: 0.4s; 
}

.steps-process-card:nth-child(3) { 
    animation-delay: 0.6s; 
}

.steps-process-card:hover {
    transform: translateY(-10px);
}

/* Steps circular image container */
.steps-circular-image {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    border-radius: 50%;
    padding: 8px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.steps-process-card:hover .steps-circular-image {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
}

.steps-circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Steps number overlay */
.steps-step-number {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    padding: 8px;
    background: #ffffff;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

/* Steps card titles and content */
.steps-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    line-height: 1.3;
}

.steps-card-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 30px;
    padding: 0 10px;
}

/* Steps learn more link */
.steps-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #2563eb;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.steps-learn-more:hover {
    gap: 12px;
    color: #1d4ed8;
}

.steps-learn-more-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.steps-learn-more:hover .steps-learn-more-arrow {
    transform: translateX(4px);
}

/* Steps animations */
@keyframes stepsfadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Steps responsive design */
@media (max-width: 968px) {
    .steps-process-container {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }
    .steps-circular-image {
        width: 180px !important;
        height: 180px !important;
    }
}

/* Heading font class */
.heading-font {
    font-family: 'Source Sans Pro', sans-serif;
}

/* Gallery Portfolio Section Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f3f4f6;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1; /* Keep visible by default */
}

/* Animation-ready state - only apply when gallery is ready for animations */
/* Removed conflicting animation-ready rule */

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    /* Normal positioning by default */
}

.gallery-item:nth-child(3) {
    /* Normal positioning by default */
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item:nth-child(5) {
    /* Normal positioning by default */
}

.gallery-item:nth-child(6) {
    /* Normal positioning by default */
}

/* Animation positioning - FORCE off-screen positioning for animations */
.gallery-section.animation-ready .gallery-item:nth-child(1) {
    opacity: 0 !important;
    transform: translateX(-120vw) rotate(-5deg) !important;
}

.gallery-section.animation-ready .gallery-item:nth-child(2) {
    opacity: 0 !important;
    transform: translateY(-120vh) rotate(3deg) !important;
}

.gallery-section.animation-ready .gallery-item:nth-child(3) {
    opacity: 0 !important;
    transform: translateX(120vw) rotate(-3deg) !important;
}

.gallery-section.animation-ready .gallery-item:nth-child(4) {
    opacity: 0 !important;
    transform: translateX(-120vw) rotate(5deg) !important;
}

.gallery-section.animation-ready .gallery-item:nth-child(5) {
    opacity: 0 !important;
    transform: translateY(120vh) rotate(-3deg) !important;
}

.gallery-section.animation-ready .gallery-item:nth-child(6) {
    opacity: 0 !important;
    transform: translateX(120vw) rotate(3deg) !important;
}

/* Gallery animations that trigger on scroll - FORCE WITH !IMPORTANT */
.gallery-section.animate-in .gallery-item:nth-child(1) {
    animation: slideFromLeft 1.2s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

.gallery-section.animate-in .gallery-item:nth-child(2) {
    animation: slideFromTop 1.2s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

.gallery-section.animate-in .gallery-item:nth-child(3) {
    animation: slideFromRight 1.2s 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

.gallery-section.animate-in .gallery-item:nth-child(4) {
    animation: slideFromLeft 1.2s 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

.gallery-section.animate-in .gallery-item:nth-child(5) {
    animation: slideFromBottom 1.2s 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

.gallery-section.animate-in .gallery-item:nth-child(6) {
    animation: slideFromRight 1.2s 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

/* Fallback for gallery items to show even without animation */
.gallery-item.visible {
    opacity: 1 !important;
    transform: translateX(0) translateY(0) rotate(0deg) scale(1) !important;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
    border-radius: 12px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    will-change: auto;
}

.gallery-item:hover .gallery-image {
    transform: translateZ(0);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.project-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.1s;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.15s;
}

.project-description {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.2s;
}

.gallery-item:hover .project-category,
.gallery-item:hover .project-title,
.gallery-item:hover .project-description {
    opacity: 1;
    transform: translateY(0);
}

.project-number {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #111827;
    z-index: 10;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s 0.3s;
}

.gallery-item:hover .project-number {
    opacity: 1;
    transform: scale(1);
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #111827;
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.view-more-btn:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.arrow-icon {
    transition: transform 0.3s;
    font-size: 16px;
}

.view-more-btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Gallery animations */
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-120vw) rotate(-5deg) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateX(10px) rotate(0.5deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg) scale(1);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(120vw) rotate(5deg) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateX(-10px) rotate(-0.5deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg) scale(1);
    }
}

@keyframes slideFromTop {
    0% {
        opacity: 0;
        transform: translateY(-120vh) rotate(3deg) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(8px) rotate(-0.3deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

@keyframes slideFromBottom {
    0% {
        opacity: 0;
        transform: translateY(120vh) rotate(-3deg) scale(0.8);
    }
    60% {
        opacity: 1;
        transform: translateY(-8px) rotate(0.3deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

/* Gallery responsive */
@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(3, 250px) !important;
    }
    .gallery-item:nth-child(1) {
        grid-row: span 1 !important;
    }
    .gallery-item:nth-child(4) {
        grid-column: span 1 !important;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: repeat(6, 220px) !important;
        gap: 15px !important;
    }
    .project-title {
        font-size: 16px !important;
    }
}

/* NEW HERO SECTION STYLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;500;600;700&display=swap');

/* Global Container Styles - Matching noted code padding */
section:not(.vibe-hero-section):not(.remodeling-section) .container,
section:not(.vibe-hero-section):not(.remodeling-section) .max-w-6xl,
section:not(.vibe-hero-section):not(.remodeling-section) .max-w-7xl {
    max-width: 72rem !important; /* max-w-6xl = 1152px */
    margin: 0 auto !important;
    padding-left: 1rem !important; /* px-4 */
    padding-right: 1rem !important;
}

@media (min-width: 640px) {
    section:not(.vibe-hero-section):not(.remodeling-section) .container,
    section:not(.vibe-hero-section):not(.remodeling-section) .max-w-6xl,
    section:not(.vibe-hero-section):not(.remodeling-section) .max-w-7xl {
        padding-left: 1.5rem !important; /* sm:px-6 */
        padding-right: 1.5rem !important;
    }
}

@media (min-width: 1024px) {
    section:not(.vibe-hero-section):not(.remodeling-section) .container,
    section:not(.vibe-hero-section):not(.remodeling-section) .max-w-6xl,
    section:not(.vibe-hero-section):not(.remodeling-section) .max-w-7xl {
        padding-left: 2rem !important; /* lg:px-8 */
        padding-right: 2rem !important;
    }
}

/* Override existing container styles for consistency */
section:not(.vibe-hero-section):not(.remodeling-section) {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

@media (min-width: 640px) {
    section:not(.vibe-hero-section):not(.remodeling-section) {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

@media (min-width: 1024px) {
    section:not(.vibe-hero-section):not(.remodeling-section) {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* ---------- Base fonts ---------- */
body{ font-family:'Inter',sans-serif; }
.heading-font{ font-family:'Source Sans Pro',sans-serif; }
.text-shadow{ text-shadow:2px 4px 8px rgba(0,0,0,.3); }

/* ---------- Brand palette ---------- */
:root{
    --brand:#374151;      /* Neutral Gray */
    --brand-dark:#1f2937; /* Darker state */
    --accent:#6b7280;     /* Subtle Gray accent */
    --success:#059669;    /* Muted Emerald */
    --success-2:#0d9488;  /* Muted Teal */
    --cyan:#0891b2;       /* Muted Cyan for Hearth */
}
.bg-brand{ background-color:var(--brand); }
.text-brand{ color:var(--brand); }
.border-brand{ border-color:var(--brand); }
.bg-brand-dark{ background-color:var(--brand-dark); }
.bg-primary-blue{ background-color: #2563eb; }
.text-primary-blue{ color: #2563eb; }
.bg-cyan{ background-color:var(--cyan); }

/* Hero animations */
@keyframes slideUp{
    from{ opacity:0; transform:translateY(40px); }
    to{ opacity:1; transform:translateY(0); }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-slideUp{ animation:slideUp 1s ease-out forwards; }
.animate-fadeInUp{ animation: fadeInUp 0.8s ease-out forwards; }
.animate-delay-1{ animation-delay:.2s; opacity:0; }
.animate-delay-2{ animation-delay:.4s; opacity:0; }
.animate-delay-3{ animation-delay:.6s; opacity:0; }

/* Header transitions */
.navbar{ transition:all .3s ease; }
.navbar-transparent{ background:transparent; }
.navbar-solid{
    background:white;
    box-shadow:0 1px 3px 0 rgba(0,0,0,.1);
}

.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 */
}

/* Header scrolled background */
#main-header.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    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);
}

/* 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;
}

/* Headings font utility to match standalone */
.heading-font { font-family: 'Source Sans Pro', 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }

/* 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,
.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Pill service check styles */
.service-check {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.rotate-180 {
    transform: rotate(180deg);
}
.faq-question svg {
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
    opacity: 0;
    visibility: hidden;
    padding: 0 1rem 1rem 1rem;
    line-height: 1.6;
}
.faq-question:hover {
    background-color: #f9fafb;
}
.faq-answer.expanded {
.faq-answer[data-state="open"] {
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}
    opacity: 1 !important;
    visibility: visible !important;
}

.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;
}

/* Remodeling Section Specific Styles - EXACT match to complete.html */
.remodeling-section {
    width: 100% !important;
    display: block !important;
    padding: 5rem 0 !important; /* py-20 = 5rem - EXACT from complete.html */
    background-color: white !important;
    margin: 0 !important;
    position: relative !important;
}

.remodeling-section .max-w-6xl {
    max-width: 72rem !important;
    margin: 0 auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

@media (min-width: 640px) {
    .remodeling-section .max-w-6xl {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

@media (min-width: 1024px) {
    .remodeling-section .max-w-6xl {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* Grid styling - EXACT from complete.html */
.remodeling-section .grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 4rem !important; /* gap-16 = 4rem - EXACT from complete.html */
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (min-width: 1024px) {
    .remodeling-section .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 4rem !important; /* EXACT from complete.html */
    }
}

.remodeling-section .remodeling-grid > div {
    text-align: left !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.remodeling-section .order-2 {
    order: 2 !important;
}

.remodeling-section .order-1 {
    order: 1 !important;
}

@media (min-width: 1024px) {
    .remodeling-section .lg\:order-1 {
        order: 1 !important;
    }
    
    .remodeling-section .lg\:order-2 {
        order: 2 !important;
    }
}

.remodeling-section h2,
.remodeling-section h4,
.remodeling-section p,
.remodeling-section span,
.remodeling-section a {
    color: inherit !important;
    margin: revert !important;
    padding: revert !important;
}

.remodeling-section img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Fix image container positioning - EXACT from complete.html */
.remodeling-section .relative {
    position: relative !important;
    height: 700px !important; /* h-[700px] - EXACT from complete.html */
}

.remodeling-section .absolute {
    position: absolute !important;
}

.remodeling-section .top-0 {
    top: 0 !important;
}

.remodeling-section .right-0 {
    right: 0 !important;
}

.remodeling-section .bottom-0 {
    bottom: 0 !important;
}

.remodeling-section .left-0 {
    left: 0 !important;
}

.remodeling-section .w-3\/4 {
    width: 75% !important;
}

.remodeling-section .h-3\/4 {
    height: 75% !important;
}

.remodeling-section .w-2\/3 {
    width: 66.666667% !important;
}

.remodeling-section .h-2\/3 {
    height: 66.666667% !important;
}

.remodeling-section .z-10 {
    z-index: 10 !important;
}

.remodeling-section .z-20 {
    z-index: 20 !important;
}

/* Force exact Tailwind CSS classes to work - EXACT from complete.html */
.remodeling-section .py-20 {
    padding-top: 5rem !important; /* py-20 = 5rem - EXACT from complete.html */
    padding-bottom: 5rem !important;
}

.remodeling-section .bg-white {
    background-color: white !important;
}

.remodeling-section .px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.remodeling-section .sm\:px-6 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

@media (min-width: 640px) {
    .remodeling-section .sm\:px-6 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

.remodeling-section .lg\:px-8 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

@media (min-width: 1024px) {
    .remodeling-section .lg\:px-8 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

.remodeling-section .gap-16 {
    gap: 4rem !important; /* gap-16 = 4rem - EXACT from complete.html */
}

.remodeling-section .items-center {
    align-items: center !important;
}

.remodeling-section .lg\:grid-cols-2 {
    grid-template-columns: 1fr !important;
}

@media (min-width: 1024px) {
    .remodeling-section .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

/* Text and spacing classes */
.remodeling-section .text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem !important;
}

.remodeling-section .font-bold {
    font-weight: 700 !important;
}

.remodeling-section .uppercase {
    text-transform: uppercase !important;
}

.remodeling-section .tracking-widest {
    letter-spacing: 0.1em !important;
}

.remodeling-section .text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem !important;
}

@media (min-width: 1024px) {
    .remodeling-section .lg\:text-4xl {
        font-size: 2.25rem !important;
        line-height: 2.5rem !important;
    }
}

.remodeling-section .text-gray-900 {
    color: #111827 !important;
}

.remodeling-section .text-gray-600 {
    color: #4b5563 !important;
}

.remodeling-section .text-gray-500 {
    color: #6b7280 !important;
}

.remodeling-section .text-emerald-500 {
    color: #10b981 !important;
}

.remodeling-section .mb-8 {
    margin-bottom: 1.5rem !important; /* Reduced from 2rem for tighter spacing */
}

.remodeling-section .mb-6 {
    margin-bottom: 1rem !important; /* Reduced from 1.5rem for tighter spacing */
}

.remodeling-section .mb-4 {
    margin-bottom: 0.5rem !important; /* Reduced from 1rem for tighter spacing */
}

.remodeling-section .mb-10 {
    margin-bottom: 1.5rem !important; /* Reduced from 2.5rem for tighter spacing */
}

.remodeling-section .mb-1 {
    margin-bottom: 0.25rem !important;
}

.remodeling-section .mt-1 {
    margin-top: 0.25rem !important;
}

/* Flexbox classes */
.remodeling-section .inline-flex {
    display: inline-flex !important;
}

section.remodeling-section .flex {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
}

.remodeling-section .items-start {
    align-items: flex-start !important;
}

.remodeling-section .gap-4 {
    gap: 1rem !important;
}

/* FORCE service items to display horizontally with maximum specificity */
section.remodeling-section .space-y-4 div.flex.items-start.gap-4 {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
}

section.remodeling-section .space-y-4 div.flex.items-start.gap-4 > span {
    flex-shrink: 0 !important;
    margin-top: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

section.remodeling-section .space-y-4 div.flex.items-start.gap-4 > div {
    flex: 1 !important;
    min-width: 0 !important;
    display: block !important;
}

.remodeling-section .space-y-4 > * + * {
    margin-top: 0.75rem !important; /* Reduced from 1rem for tighter service list spacing */
}

/* Additional service item layout fixes with maximum specificity */
section.remodeling-section div.space-y-4 > div.flex {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
}

/* CONSOLIDATED: Service items flex layout for multiple section types */
section.py-16.bg-white div.space-y-4.mb-8 div.flex.items-center.gap-3,
section.py-16.bg-white div.space-y-4.mb-10 div.flex.items-start.gap-4 {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 1rem !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
    box-sizing: border-box !important;
}

/* Fix remodeling section flex layout - ensure proper alignment */
section.remodeling-section.py-20.bg-white div.space-y-4.mb-10 div.flex.items-start.gap-4 {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
}

section.remodeling-section.py-20.bg-white div.space-y-4.mb-10 div.flex.items-start.gap-4 span.text-emerald-500.mt-1 {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 0 !important;
    width: 24px !important;
    height: 24px !important;
}

section.remodeling-section.py-20.bg-white div.space-y-4.mb-10 div.flex.items-start.gap-4 span.text-emerald-500.mt-1 svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
}

/* UNIVERSAL FIX: Apply to all service check layouts regardless of section */
.flex.items-start.gap-4 {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
}

.flex.items-start.gap-4 span.text-emerald-500.mt-1 {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 0 !important;
    width: 24px !important;
    height: 24px !important;
}

.flex.items-start.gap-4 span.text-emerald-500.mt-1 svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
}

.flex.items-start.gap-4 > div {
    flex: 1 !important;
    min-width: 0 !important;
}

/* CRITICAL: Override Tailwind's mt-1 margin for emerald checkmarks */
span.text-emerald-500.mt-1 {
    margin-top: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    vertical-align: top !important;
}

/* Force SVG checkmarks to proper size */
span.text-emerald-500 svg.h-6.w-6 {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
}

/* NUCLEAR OPTION: Force horizontal layout for all service items */
.flex.items-start.gap-4 {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    flex-wrap: nowrap !important;
}

.flex.items-start.gap-4 > * {
    display: inline-block !important;
    vertical-align: top !important;
}

.flex.items-start.gap-4 > span {
    flex: 0 0 auto !important;
    width: 24px !important;
    height: 24px !important;
}

.flex.items-start.gap-4 > div {
    flex: 1 1 auto !important;
    display: inline-block !important;
    vertical-align: top !important;
}

/* Force text content to stay inline */
.flex.items-start.gap-4 h4,
.flex.items-start.gap-4 p {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.flex.items-start.gap-4 h4 {
    margin-bottom: 0.25rem !important;
}

/* Mobile-specific fixes for consistent alignment */
@media (max-width: 768px) {
    .flex.items-start.gap-4 {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.875rem !important;
        margin-bottom: 1rem !important;
    }
    
    .flex.items-start.gap-4 span.text-emerald-500.mt-1 {
        flex-shrink: 0 !important;
        width: 20px !important;
        height: 20px !important;
        margin-top: 0.125rem !important;
    }
}

section.remodeling-section.py-20.bg-white div.space-y-4.mb-10 div.flex.items-start.gap-4 > div {
    flex: 1 !important;
    flex-grow: 1 !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    width: auto !important;
    display: block !important;
}

/* Other sections - maintain existing behavior */
section.py-16.bg-white div.space-y-4.mb-8 div.flex.items-center.gap-3 div.service-check,
section.py-16.bg-white div.space-y-4.mb-10 div.flex.items-start.gap-4 span.text-emerald-500.mt-1 {
    flex-shrink: 0 !important;
    margin-top: 0.25rem !important;
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
}

section.py-16.bg-white div.space-y-4.mb-8 div.flex.items-center.gap-3 > div,
section.py-16.bg-white div.space-y-4.mb-10 div.flex.items-start.gap-4 > div {
    flex: 1 !important;
    flex-grow: 1 !important;
    flex-shrink: 1 !important;
    min-width: 0 !important;
    width: auto !important;
    display: block !important;
}

/* Target the hardcoded remodeling section specifically */
section.py-16.bg-white.scroll-animate div.service-check {
    width: 24px !important;
    height: 24px !important;
    background-color: #10b981 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

section.py-16.bg-white.scroll-animate div.space-y-4 {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

section.py-16.bg-white.scroll-animate div.space-y-4 > div {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    width: 100% !important;
}

section.py-16.bg-white.scroll-animate div.flex.items-center.gap-3 > div {
    flex: 1 !important;
    min-width: 0 !important;
}

/* Padding and border radius */
.remodeling-section .px-5 {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}

.remodeling-section .py-2\.5 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
}

.remodeling-section .px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.remodeling-section .py-3\.5 {
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
}

.remodeling-section .p-6 {
    padding: 1.5rem !important;
}

.remodeling-section .rounded-full {
    border-radius: 9999px !important;
}

.remodeling-section .rounded-xl {
    border-radius: 0.75rem !important;
}

.remodeling-section .rounded-2xl {
    border-radius: 1rem !important;
}

.remodeling-section .rounded-3xl {
    border-radius: 1.5rem !important;
}

/* Background and border colors */
.remodeling-section .bg-blue-50 {
    background-color: #eff6ff !important;
}

.remodeling-section .bg-blue-100 {
    background-color: #dbeafe !important;
}

.remodeling-section .bg-blue-600 {
    background-color: #2563eb !important;
}

.remodeling-section .border {
    border-width: 1px !important;
}

.remodeling-section .border-blue-100 {
    border-color: #dbeafe !important;
}

.remodeling-section .text-white {
    color: white !important;
}

.remodeling-section .font-semibold {
    font-weight: 600 !important;
}

/* Sizing classes */
.remodeling-section .h-6 {
    height: 1.5rem !important;
}

.remodeling-section .w-6 {
    width: 1.5rem !important;
}

.remodeling-section .w-14 {
    width: 3.5rem !important;
}

.remodeling-section .h-14 {
    height: 3.5rem !important;
}

.remodeling-section .text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem !important;
}

.remodeling-section .text-base {
    font-size: 1rem !important;
    line-height: 1.5rem !important;
}

.remodeling-section .text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
}

.remodeling-section .leading-relaxed {
    line-height: 1.625 !important;
}

/* Shadow classes */
.remodeling-section .shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.remodeling-section .shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.remodeling-section .shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

/* Object fit */
.remodeling-section .object-cover {
    object-fit: cover !important;
}

/* Height classes - EXACT from complete.html */
.remodeling-section .h-\[700px\] {
    height: 700px !important; /* h-[700px] - EXACT from complete.html */
}

.remodeling-section .h-full {
    height: 100% !important;
}

.remodeling-section .w-full {
    width: 100% !important;
}

/* Positioning values */
.remodeling-section .bottom-10 {
    bottom: 2.5rem !important;
}

.remodeling-section .right-10 {
    right: 2.5rem !important;
}

/* Hover effects and transitions */
.remodeling-section .hover\:bg-blue-700:hover {
    background-color: #1d4ed8 !important;
}

.remodeling-section .hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.remodeling-section .transition-all {
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.remodeling-section .duration-300 {
    transition-duration: 300ms !important;
}

/* Ensure SVG icons display correctly */
.remodeling-section svg {
    display: inline-block !important;
    vertical-align: top !important;
    flex-shrink: 0 !important;
    width: 1.5rem !important;
    height: 1.5rem !important;
}

/* Service item specific icon styling */
.remodeling-section .space-y-4 svg {
    margin-top: 0.125rem !important;
    flex-shrink: 0 !important;
}

/* Force correct button styling */
.remodeling-section button,
.remodeling-section a[class*="bg-blue"] {
    display: inline-block !important;
    text-decoration: none !important;
    cursor: pointer !important;
    border: none !important;
}

.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;
    }
}

/* ABSOLUTE FINAL OVERRIDE - Checkmark alignment fix */
/* This MUST fix the checkmark alignment issue */
body .remodeling-section .flex.items-start.gap-4,
body .flex.items-start.gap-4 {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
}

body .remodeling-section .flex.items-start.gap-4 > span.text-emerald-500,
body .flex.items-start.gap-4 > span.text-emerald-500 {
    display: inline-flex !important;
    flex: 0 0 24px !important;
    width: 24px !important;
    height: 24px !important;
    margin-top: 2px !important;
    align-items: center !important;
    justify-content: center !important;
}

body .remodeling-section .flex.items-start.gap-4 > div,
body .flex.items-start.gap-4 > div {
    flex: 1 1 auto !important;
    display: block !important;
    min-width: 0 !important;
}

/* Remove any possible margin from Tailwind's mt-1 */
body span.mt-1 {
    margin-top: 0 !important;
}

/* Remodeling section spacing adjustments */
.remodeling-section .inline-flex.mb-4 {
    margin-bottom: 1rem !important;
}

.remodeling-section h2 {
    margin-top: 0 !important;
}

/* Adjust image container height on mobile */
@media (max-width: 768px) {
    .remodeling-section .h-\[500px\] {
        height: 350px !important;
    }
}

/* Fine-tune image proportions in remodeling section */
.remodeling-section .h-\[65\%\] {
    height: 65% !important;
}

.remodeling-section .h-\[55\%\] {
    height: 55% !important;
}

/* ===== CONTACT FORM STYLES ===== */
/* Exact styling from complete.html */

/* Contact form input styling */
.contact-form-section input,
.contact-form-section textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid #e5e7eb; /* border-gray-200 */
    outline: none;
    transition: all 0.15s ease;
    padding: 1rem 0;
    font-size: 1.125rem; /* text-lg */
    color: #1f2937; /* text-gray-800 */
}

.contact-form-section input::placeholder,
.contact-form-section textarea::placeholder {
    color: #9ca3af; /* placeholder-gray-400 */
}

.contact-form-section input:focus,
.contact-form-section textarea:focus {
    border-bottom-color: #2563eb; /* primary-blue */
}

.contact-form-section .group:hover input,
.contact-form-section .group:hover textarea {
    border-bottom-color: #d1d5db; /* border-gray-300 */
}

/* Button hover effects */
.contact-form-section button[type="submit"] {
    transition: all 0.15s ease;
}

.contact-form-section button[type="submit"]:hover {
    background-color: #1d4ed8; /* hover:bg-blue-700 */
}

.contact-form-section button[type="submit"]:hover .fa-arrow-right {
    transform: translateX(0.25rem);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-section .grid.md\\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section .lg\\:grid-cols-5 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-section h2 {
        font-size: 2.5rem; /* Smaller on mobile */
    }
}

/* Contact info links hover effects */
.contact-form-section a {
    transition: color 0.15s ease;
}

.contact-form-section a:hover {
    color: #6b7280; /* hover:text-gray-600 */
}

/* ===== CUSTOM CONTACT FORM STYLES ===== */
/* Styles for the advanced contact form with testimonials carousel */

/* Contact form container with rounded border */
.vibe-contact-form-container {
    background: white;
    border-radius: 1.5rem; /* rounded-3xl */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    overflow: hidden;
}

/* Mobile view contact form styling */
.contact-form-mobile {
    margin: 1rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background: white;
}

.contact-form-mobile .contact-image {
    position: relative;
    height: 12rem; /* h-48 */
    overflow: hidden;
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}

.contact-form-mobile .contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop contact form layout */
.contact-form-desktop {
    max-width: 1280px; /* max-w-7xl */
    margin: 0 auto;
    padding: 3rem 1rem; /* py-12 px-4 */
}

.contact-form-grid {
    display: flex;
    border-radius: 1.5rem;
    overflow: hidden;
    background: white;
}

.contact-form-left {
    width: 45%;
    background: white;
    padding: 2.5rem; /* p-10 */
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
}

.contact-form-right {
    width: 55%;
    position: relative;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    overflow: hidden;
}

/* Testimonial carousel styles */
.testimonials-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%, transparent 100%);
}

.testimonials-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.testimonial-slide {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.hidden {
    display: none;
}

.testimonial-stars {
    display: flex;
    margin-bottom: 0.75rem;
}

.testimonial-stars svg {
    width: 1rem;
    height: 1rem;
    color: white;
    fill: currentColor;
}

.testimonial-text {
    color: white;
    font-size: 1rem;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: white;
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.testimonial-author-title {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Navigation dots and arrows */
.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-dots {
    display: flex;
    gap: 0.375rem;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.dot.active,
.dot:hover {
    background-color: white;
}

.testimonial-arrows {
    display: flex;
    gap: 0.5rem;
}

.testimonial-arrow {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.testimonial-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.testimonial-arrow svg {
    width: 1rem;
    height: 1rem;
    display: block;
}

/* Contact form specific styling for vibe forms */
.vibe-contact-form .form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.vibe-contact-form button[type="submit"] {
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 1rem;
}

.vibe-contact-form button[type="submit"]:hover {
    background-color: #1d4ed8;
}

/* Contact info styling */
.contact-info-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-item:hover {
    color: #111827;
}

.contact-info-item svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    color: #9ca3af;
    flex-shrink: 0;
}

.contact-info-address {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    color: #6b7280;
}

.contact-info-address svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    color: #9ca3af;
    flex-shrink: 0;
}

/* Logo and branding */
.contact-form-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-form-logo svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.contact-form-logo span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #111827;
}

/* Responsive design */
@media (max-width: 1023px) {
    .contact-form-desktop {
        display: none;
    }
    
    .contact-form-mobile {
        display: block;
    }
}

@media (min-width: 1024px) {
    .contact-form-desktop {
        display: block;
    }
    
    .contact-form-mobile {
        display: none;
    }
}

/* Additional responsive adjustments */
@media (max-width: 640px) {
    .contact-form-mobile {
        margin: 1rem;
    }
    
    .contact-form-mobile .contact-content {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.875rem;
    }
}

/* Width utilities for contact form layout */
.w-45 {
    width: 45%;
}

.w-55 {
    width: 55%;
}

/* Custom backdrop blur */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Force specific background colors */
.bg-white-force {
    background-color: white !important;
}

/* Custom border radius utilities */
.rounded-3xl {
    border-radius: 1.5rem;
}

/* Custom shadow utilities */
.shadow-testimonial {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Image object fit utilities */
.object-cover {
    object-fit: cover;
}

/* Prevent horizontal scroll on contact form animations */
.contact-form-container {
    overflow-x: hidden;
}

/* Custom color utilities for contact form */
.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-900 {
    color: #111827;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-300 {
    border-color: #d1d5db;
}

/* Background utilities */
.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-200 {
    background-color: #e5e7eb;
}
