/**
 * Door Landing Page Styles - VERSION 2.0 COMPLETE
 * Custom CSS for bespoke door landing pages
 * Includes: Styled badges, wider containers, new technical icons, mobile CTA fix
 */
 
/* Hide default Avada header and footer ONLY on bespoke landing pages */
body.page-template-template-bespoke-door-landing .fusion-header,
body.page-template-template-bespoke-door-landing .fusion-secondary-header,
body.page-template-template-bespoke-door-landing #slidingbar {
    display: none !important;
}

body.page-template-template-bespoke-door-landing .avada-page-titlebar-wrapper {
    display: none !important;
}

.custom-landing-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: black;
    padding: 20px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

body {
    padding-top: 80px; /* Adjust if header height changes */
}

.custom-landing-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.landing-logo {
    max-height: 40px;
    width: auto;
}

.call-button {
    background: #5ce1e6;
    color: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.3s ease;
}

.call-button:hover {
    background: #00acc1;
}

/* Mobile styling */
@media (max-width: 480px) {
    .custom-landing-header .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .landing-logo {
        max-height: 60px;
    }

    .call-button {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .custom-landing-header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .call-button {
        width: 100%;
        text-align: center;
        font-size: 14px;
        padding: 12px;
    }

    .landing-logo {
        max-height: 60px;
    }
}


/* Remove top padding from wrapper (optional) */
body.page-template-template-bespoke-door-landing #wrapper {
    padding-top: 1px !important;
}

/* Reset and base styles */
* {
    box-sizing: border-box !important;
}

html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* Ensure all elements stay within viewport */
.door-landing-page * {
    max-width: 100% !important;
}

/* Core Variables */
:root {
    --primary-color: #1a4d2e;
    --secondary-color: #8b7355;
    --accent-color: #d4af37;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --transition: all 0.3s ease;
    --tech-blue: #5ce1e6;
}

/* ENHANCED Container System - More Width */
.container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
}

/* Responsive container widths - INCREASED */
@media (min-width: 576px) {
    .container {
        max-width: 540px !important;
        padding: 0 20px !important;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 750px !important; /* Increased from 720px */
        padding: 0 30px !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 1000px !important; /* Increased from 960px */
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1260px !important; /* Increased from 1200px */
        padding: 0 40px !important;
    }
}

/* FIXED Row and Column System */
.row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    width: 100% !important;
}

.col-md-6 {
    width: 100% !important;
    padding: 0 15px !important;
    margin-bottom: 30px !important;
}

.col-md-8 {
    width: 100% !important;
    padding: 0 15px !important;
}

.offset-md-2 {
    margin-left: 0 !important;
}

/* Responsive columns */
@media (min-width: 768px) {
    .col-md-6 {
        width: 50% !important;
        margin-bottom: 0 !important;
    }
    
    .col-md-8 {
        width: 66.666667% !important;
    }
    
    .offset-md-2 {
        margin-left: 16.666667% !important;
    }
}

/* ===== COMPLETE HERO SECTION WITH STYLED BADGES ===== */
.door-hero-section {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: none !important;
    overflow: hidden !important;
    min-height: 100vh !important; /* Full height mobile */
    background-size: cover !important;
    background-position: center !important;
    padding: 100px 0 60px 0 !important; /* Top padding for header */
}

@media (min-width: 768px) {
    .door-hero-section {
        min-height: 70vh !important;
        padding: 140px 0 80px 0 !important;
    }
}

@media (min-width: 992px) {
    .door-hero-section {
        min-height: 80vh !important;
        background-attachment: fixed !important;
    }
}

/* Hero overlay */
.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px 0 !important;
}

/* STYLED HERO BADGES */
.hero-trust-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 auto 30px auto !important;
    padding: 10px 20px !important;
    max-width: 100vw !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
}

/* Hide scrollbar */
.hero-trust-badges::-webkit-scrollbar {
    display: none;
}

/* Badge Styling - ENHANCED */
.hero-trust-badges .badge-placeholder {
    background: rgba(212, 175, 55, 0.95) !important;
    color: #1a4d2e !important;
    padding: 10px 10px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

/* Badge icons */
.hero-trust-badges .badge-placeholder::before {
    content: '';
    font-size: 12px;
    font-weight: bold;
}

.hero-trust-badges .badge-placeholder:nth-child(1)::before {
    content: '✓';
}

.hero-trust-badges .badge-placeholder:nth-child(2)::before {
    content: '★';
}

.hero-trust-badges .badge-placeholder:nth-child(3)::before {
    content: '🌳';
}

/* Badge hover */
.hero-trust-badges .badge-placeholder:hover {
    background: rgba(212, 175, 55, 1) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35) !important;
}

/* Responsive badges */
@media (min-width: 576px) {
    .hero-trust-badges {
        gap: 15px !important;
        margin-bottom: 35px !important;
    }
    
    .hero-trust-badges .badge-placeholder {
        padding: 8px 18px !important;
        font-size: 11px !important;
    }
}

@media (min-width: 768px) {
    .hero-trust-badges {
        gap: 20px !important;
        margin-bottom: 45px !important;
    }
    
    .hero-trust-badges .badge-placeholder {
        padding: 10px 24px !important;
        font-size: 13px !important;
        letter-spacing: 0.5px !important;
        gap: 8px !important;
    }
    
    .hero-trust-badges .badge-placeholder::before {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .hero-trust-badges {
        gap: 30px !important;
        margin-bottom: 50px !important;
    }
    
    .hero-trust-badges .badge-placeholder {
        padding: 12px 30px !important;
        font-size: 14px !important;
    }
}

/* Hero content with WIDER container */
.hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: white !important;
    width: 100% !important;
    max-width: 100% !important; /* Full width mobile */
    margin: 0 auto !important;
    padding: 0 5px !important;
}

@media (min-width: 576px) {
    .hero-content {
        max-width: 540px !important;
    }
}

@media (min-width: 768px) {
    .hero-content {
        max-width: 720px !important;
        padding: 20px 30px 0 !important;
    }
}

@media (min-width: 992px) {
    .hero-content {
        max-width: 900px !important;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        max-width: 1000px !important;
    }
}

/* Hero typography */
.hero-headline {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7) !important;
    line-height: 1.15 !important;
    padding: 0 10px !important;
}

.hero-subheadline {
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    margin-bottom: 25px !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7) !important;
    line-height: 1.4 !important;
    padding: 0 10px !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
    }
    
    .hero-subheadline {
        font-size: 1.3rem !important;
        margin-bottom: 30px !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
}

@media (min-width: 992px) {
    .hero-headline {
        font-size: 3.5rem !important;
        margin-bottom: 25px !important;
    }
    
    .hero-subheadline {
        font-size: 1.5rem !important;
        margin-bottom: 40px !important;
    }
}

/* Hero CTA */
.hero-cta-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    padding: 0 20px !important;
}

@media (min-width: 768px) {
    .hero-cta-wrapper {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 20px !important;
        padding: 0 !important;
    }
}

/* Location reference */
.location-reference {
    font-size: 0.85rem !important;
    opacity: 0.95 !important;
    margin-top: 15px !important;
    padding: 0 20px !important;
}

/* BUTTON STYLES */
.btn {
    display: inline-block !important;
    padding: 12px 25px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: var(--transition) !important;
    border: 2px solid transparent !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 280px !important;
    font-size: 0.9rem !important;
}

@media (min-width: 768px) {
    .btn {
        width: auto !important;
        min-width: 200px !important;
        padding: 15px 35px !important;
        font-size: 1rem !important;
    }
}

.btn-large {
    padding: 15px 30px !important;
    font-size: 1rem !important;
}

@media (min-width: 768px) {
    .btn-large {
        padding: 18px 40px !important;
        font-size: 1.1rem !important;
    }
}

.btn-primary {
    background-color: var(--accent-color) !important;
    color: var(--text-dark) !important;
}

.btn-primary:hover {
    background-color: #b8941f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}

.btn-secondary {
    background-color: transparent !important;
    color: white !important;
    border-color: white !important;
}

.btn-secondary:hover {
    background-color: white !important;
    color: var(--text-dark) !important;
}

/* USP Bar */
.usp-bar {
    background-color: var(--primary-color) !important;
    padding: 30px 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.usp-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
}

@media (min-width: 576px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 992px) {
    .usp-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
    }
}

.usp-item {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    color: white !important;
    text-align: center !important;
    padding: 15px !important;
}

@media (min-width: 992px) {
    .usp-item {
        text-align: left !important;
        padding: 0 !important;
    }
}

.usp-item i {
    font-size: 1.5rem !important;
    color: var(--accent-color) !important;
    flex-shrink: 0 !important;
}

@media (min-width: 992px) {
    .usp-item i {
        font-size: 2rem !important;
    }
}

.usp-item span {
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

@media (min-width: 768px) {
    .usp-item span {
        font-size: 1rem !important;
    }
}

/* Section Padding */
.product-overview,
.features-section,
.customization-section,
.specifications-section,
.heritage-section,
.gallery-section,
.process-section,
.testimonials-section,
.pricing-section,
.faq-section,
.local-seo-section {
    padding: 60px 0 !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .product-overview,
    .features-section,
    .customization-section,
    .specifications-section,
    .heritage-section,
    .gallery-section,
    .process-section,
    .testimonials-section,
    .pricing-section,
    .faq-section,
    .local-seo-section {
        padding: 80px 0 !important;
    }
}

/* Typography */
.section-header h2,
.overview-content h2,
.heritage-content h2,
.local-content h2 {
    font-size: 1.8rem !important;
    color: var(--primary-color) !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
    text-align: center !important;
}

@media (min-width: 768px) {
    .section-header h2,
    .overview-content h2,
    .heritage-content h2,
    .local-content h2 {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
    }
}

@media (min-width: 992px) {
    .overview-content h2,
    .heritage-content h2,
    .local-content h2 {
        text-align: left !important;
    }
}

/* Features Grid */
.features-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (min-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.feature-box {
    background: white !important;
    padding: 30px 20px !important;
    border-radius: 8px !important;
    text-align: center !important;
    transition: var(--transition) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .feature-box {
        padding: 40px 30px !important;
    }
}

/* ===== TECHNICAL EXCELLENCE SECTION - NEW DESIGN ===== */
.specifications-section {
    background: #ffffff !important;
    padding: 80px 0 !important;
}

.specs-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    margin-bottom: 50px !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 35px !important;
    }
}

@media (min-width: 992px) {
    .specs-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.spec-card {
    background: #ffffff !important;
    padding: 35px 25px !important;
    border-radius: 16px !important;
    text-align: left !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    position: relative !important;
    overflow: hidden !important;
}

.spec-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12) !important;
}

/* NEW Technical Icon Design - Blue with White Gradient */
.spec-icon {
    width: 65px !important;
    height: 65px !important;
    background: linear-gradient(135deg, var(--tech-blue) 0%, rgba(255,255,255,0.9) 100%) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    position: relative !important;
    box-shadow: 0 6px 20px rgba(92, 225, 230, 0.35) !important;
    transition: all 0.4s ease !important;
}

.spec-card:hover .spec-icon {
    transform: rotate(5deg) scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(92, 225, 230, 0.45) !important;
}

.spec-icon i {
    font-size: 28px !important;
    color: #1a4d2e !important;
    z-index: 2 !important;
}

/* Spec card typography */
.spec-card h3 {
    font-size: 1.3rem !important;
    color: var(--primary-color) !important;
    margin-bottom: 12px !important;
    font-weight: 700 !important;
}

.spec-card p {
    color: var(--text-light) !important;
    line-height: 1.6 !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
}

/* Mobile adjustments for specs */
@media (max-width: 768px) {
    .spec-card {
        padding: 30px 20px !important;
        text-align: center !important;
    }
    
    .spec-icon {
        margin: 0 auto 20px !important;
    }
}

/* Gallery Grid */
.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

.gallery-item {
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
    width: 100% !important;
}

.gallery-item img,
.placeholder-image {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    transition: var(--transition) !important;
}

@media (min-width: 768px) {
    .gallery-item img,
    .placeholder-image {
        height: 250px !important;
    }
}

@media (min-width: 992px) {
    .gallery-item img,
    .placeholder-image {
        height: 300px !important;
    }
}

/* Testimonials */
.testimonials-carousel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
}

.testimonial-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: left;
}


@media (min-width: 768px) {
    .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (min-width: 992px) {
    .testimonials-carousel {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.testimonial-item {
    background-color: var(--bg-light) !important;
    padding: 30px 20px !important;
    border-radius: 8px !important;
    position: relative !important;
    transition: var(--transition) !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .testimonial-item {
        padding: 40px 30px !important;
    }
}

.testimonials-section > .container {
    max-width: 100% !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* Process Timeline */
.process-timeline {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    width: 100% !important;
}

@media (min-width: 992px) {
    .process-timeline {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        position: relative !important;
    }
}

.timeline-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    width: 100% !important;
}

@media (min-width: 992px) {
    .timeline-item {
        flex: 1 !important;
        text-align: center !important;
        position: relative !important;
        padding: 0 20px !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

.timeline-icon {
    min-width: 50px !important;
    height: 50px !important;

    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    flex-shrink: 0 !important;
}

@media (min-width: 992px) {
    .timeline-icon {
        width: 80px !important;
        height: 80px !important;
        font-size: 2rem !important;
        margin-bottom: 20px !important;
        position: relative !important;
        z-index: 2 !important;
    }
}

.timeline-connector {
    display: none !important;
}

@media (min-width: 992px) {
    .timeline-connector {
        display: block !important;
        position: absolute !important;
        top: 40px !important;
        left: 50% !important;
        right: -50% !important;
        height: 2px !important;
        background-color: var(--primary-color) !important;
        z-index: 1 !important;
    }
    
    .timeline-item:last-child .timeline-connector {
        display: none !important;
    }
}

/* Tabs */
.tab-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
    margin-bottom: 30px !important;
    list-style: none !important;
    padding: 0 !important;
    border-bottom: 2px solid #e0e0e0 !important;
}

@media (min-width: 768px) {
    .tab-nav {
        justify-content: center !important;
        gap: 20px !important;
        margin-bottom: 40px !important;
    }
}

.tab-nav li {
    flex: 1 !important;
    min-width: calc(50% - 5px) !important;
    padding: 10px 8px !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    color: var(--text-light) !important;
    transition: var(--transition) !important;
    border-bottom: 3px solid transparent !important;
    margin-bottom: -2px !important;
    text-align: center !important;
    font-size: 0.9rem !important;
}

@media (min-width: 768px) {
    .tab-nav li {
        flex: none !important;
        min-width: auto !important;
        padding: 15px 30px !important;
        font-size: 1rem !important;
    }
}

.tab-nav li:hover {
    color: var(--primary-color) !important;
}

.tab-nav li.active {
    color: var(--primary-color) !important;
    border-bottom-color: var(--accent-color) !important;
}

/* Tab content */
.tab-content {
    position: relative;
    min-height: 300px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block !important;
}

/* Option Grid */
.option-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
    width: 100% !important;
}

@media (min-width: 992px) {
    .option-grid {
        flex-direction: row !important;
        align-items: center !important;
        gap: 40px !important;
    }
    
    .option-content,
    .option-visual {
        flex: 1 !important;
    }
}

/* Form Styles */
.contact-form {
    background: white !important;
    padding: 30px 20px !important;
    border-radius: 8px !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2) !important;
    color: var(--text-dark) !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .contact-form {
        padding: 40px !important;
    }
}

.form-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
}

@media (min-width: 768px) {
    .form-row {
        flex-direction: row !important;
        gap: 20px !important;
    }
}

.form-group {
    margin-bottom: 20px !important;
    flex: 1 !important;
    width: 100% !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100% !important;
    padding: 15px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    transition: var(--transition) !important;
    box-sizing: border-box !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2) !important;
}

.form-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    justify-content: center !important;
    margin-top: 30px !important;
    align-items: center !important;
}

@media (min-width: 768px) {
    .form-buttons {
        flex-direction: row !important;
        gap: 20px !important;
    }
}



/* Final CTA */
.final-cta-section {
    padding: 80px 0 !important;
 
    color: white !important;
    text-align: center !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    .final-cta-section {
        padding: 100px 0 !important;
    }
}

.cta-content h2 {
    font-size: 2rem !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

@media (min-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
    }
}

@media (min-width: 992px) {
    .cta-content h2 {
        font-size: 3rem !important;
    }
}

.cta-content p {
    font-size: 1.1rem !important;
    margin-bottom: 30px !important;
    opacity: 0.9 !important;
}

@media (min-width: 768px) {
    .cta-content p {
        font-size: 1.3rem !important;
        margin-bottom: 40px !important;
    }
}





/* Certification Badges */
.certification-badges {
    display: none;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 40px !important;
    flex-wrap: wrap !important;
}

@media (min-width: 768px) {
    .certification-badges {
        gap: 40px !important;
        margin-top: 50px !important;
    }
}

.certification-badges img,
.badge-placeholder {
    height: 40px !important;
    opacity: 0.8 !important;
    transition: var(--transition) !important;
}

@media (min-width: 768px) {
    .certification-badges img,
    .badge-placeholder {
        height: 60px !important;
    }
}

/* FAQ */
.faq-accordion {
    max-width: 800px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.faq-item {
    margin-bottom: 15px !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

@media (min-width: 768px) {
    .faq-item {
        margin-bottom: 20px !important;
    }
}

.faq-question {
    width: 100% !important;
    text-align: left !important;
    padding: 15px 0 !important;
    background: none !important;
    border: none !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    transition: var(--transition) !important;
}

@media (min-width: 768px) {
    .faq-question {
        padding: 20px 0 !important;
        font-size: 1.2rem !important;
    }
}

/* CONVERSION FEATURES */

/* MOBILE CTA ALTERNATIVE - Floating Button Instead of Banner */
    @media (max-width: 768px) {
    /* Hide sticky CTA bar on mobile to avoid chat conflict 
        .sticky-cta-bar {
            display: none !important;
        } */
    
    /* Floating call button positioned above chat */
    .mobile-phone-cta {
        position: fixed !important;
        bottom: 80px !important;
        right: 20px !important;
        width: auto !important;
        background: #4CAF50 !important;
        color: white !important;
        padding: 10px 15px !important;
        border-radius: 50px !important;
        text-align: center !important;
        z-index: 9996 !important;
        display: flex !important
;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
        transition: all 0.3s ease !important;
    }
}
    
    .mobile-phone-cta:hover {
        transform: scale(1.05) !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
    }
    
    .mobile-phone-cta i {
        font-size: 1.3rem !important;
        animation: ring 1s ease-in-out infinite !important;
    }


/* Desktop sticky CTA bar - ensure it works */
@media (min-width: 769px) {
    .sticky-cta-bar {
        position: fixed !important;
        bottom: -100px !important;
        left: 0 !important;
        width: 100% !important;
        background: linear-gradient(90deg, var(--primary-color) 0%, #0f3d21 100%) !important;
        padding: 15px 0 !important;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.2) !important;
        z-index: 9999 !important;
        transition: bottom 0.3s ease !important;
        display: block !important; /* Ensure it's not hidden */
    }
    
    .sticky-cta-bar.show {
        bottom: 0 !important;
    }
    
    .sticky-cta-bar .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 20px !important;
    }
    
    .sticky-cta-bar span {
        color: white !important;
        font-size: 1.5rem !important;
        font-weight: 600 !important;
    }
}

/* Ensure it's hidden on mobile */
@media (max-width: 768px) {
    .sticky-cta-bar {
        display: none !important;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0 !important;
        transform: translateY(20px) !important;
    }
    to {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

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

.animate-fade-in {
    animation: fadeIn 1s ease-out !important;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both !important;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both !important;
}


/* Section backgrounds - enhanced contrast with subtle patterns */
.product-overview {
    background-color: #ffffff;
    background-image: radial-gradient(circle at top left, rgba(212,175,55,0.02) 10%, transparent 40%);
    padding: 80px 0;
}

.features-section {
    background-color: #f8f6f3;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,.01) 10px, rgba(0,0,0,.01) 20px);
    padding: 80px 0;
    position: relative;
}

.customization-section {
    background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
    padding: 80px 0;
}

.heritage-section {
    background-color: #f3f0ea;
    background-image: url('https://www.transparenttextures.com/patterns/french-stucco.png');
    padding: 80px 0;
    border-top: 1px solid #e8e6e3;
    border-bottom: 1px solid #e8e6e3;
}

.gallery-section {
    background-color: #ffffff;
    background-image: linear-gradient(to bottom right, rgba(240,240,240,0.05), rgba(0,0,0,0.01));
    padding: 80px 0;
}

.process-section {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding: 80px 30px !important;
    background: linear-gradient(to bottom, rgba(26, 77, 46, 0.03), rgba(26, 77, 46, 0.06));
}

/* Expand process-section container to full width */
.process-section > .container {
    max-width: none !important;
    width: 100% !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.testimonials-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 30px;
    background-color: #f8f6f3;
    background-image: url('https://www.transparenttextures.com/patterns/brushed-alum-dark.png');
    overflow: hidden;
}

.testimonials-section .container,
.testimonials-section .fusion-row {
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.product-overview {
    background-color: #ffffff;
    padding: 80px 0;
}

.features-section {
    background-color: #f8f6f3;
    padding: 80px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255,255,255,.05) 10px,
            rgba(255,255,255,.05) 20px
        );
    pointer-events: none;
}

.customization-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.heritage-section {
    background-color: #faf8f5;
    padding: 80px 0;
    border-top: 1px solid #e8e6e3;
    border-bottom: 1px solid #e8e6e3;
}

.gallery-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.process-section {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    padding: 80px 30px !important;
    background: linear-gradient(to bottom, rgba(26, 77, 46, 0.03), rgba(26, 77, 46, 0.06));
}



.testimonials-section::after {
    content: '"';
    position: absolute;
    top: -50px;
    right: 10%;
    font-size: 300px;
    color: rgba(212, 175, 55, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.pricing-section {
    background-color: #ffffff;
    padding: 80px 0;
    border-top: 3px solid var(--accent-color);
}

.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f3 100%);
    padding: 80px 0;
}

.local-seo-section {
    display: none;
}

.related-section {
    background-color: #f8f6f3;
    padding: 60px 0;
}

.product-overview,
.customization-section,
.gallery-section,
.pricing-section {
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* Hover effects */
.feature-box {
    transition: all 0.3s ease;
    background: white;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-item {
    background: #fff;
    border-left: 5px solid var(--accent-color);
    padding: 25px 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.testimonial-item::before {
    content: "“";
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    top: -20px;
    left: 15px;
    font-family: Georgia, serif;
    opacity: 0.2;
}

.testimonial-content {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px; /* Or higher if needed */
    margin: 0 auto;
    text-align: left;
}

.testimonial-author {
    margin-top: 20px;
    font-weight: bold;
    color: var(--text-dark);
}

.testimonial-author small {
    display: block;
    font-size: 0.9rem;
    color: #999;
}


.testimonial-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Mobile scroll snap for carousel effect */
@media (max-width: 768px) {
    .testimonials-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 0;
            max-width: 100%;
    width: 100%;
    }
    
     .testimonial-content {
    max-width: 100% !important;
  }
  
    blockquote {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

    .testimonial-item {
        min-width: 280px;
        padding: 20px 15px !important;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

.timeline-icon {
    box-shadow: 0 4px 15px rgba(26, 77, 46, 0.3);

}

.config-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.config-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

/* Image responsiveness */
img {
    max-width: 100% !important;
    height: auto !important;
}

/* Avada overrides */
.door-landing-page .fusion-fullwidth {
    max-width: 100% !important;
    overflow: hidden !important;
}

.door-landing-page .fusion-row {
    max-width: 100% !important;
}

.door-landing-page #main,
.door-landing-page .fusion-row {
    max-width: 100% !important;
    padding: 0 !important;
}

.door-landing-page #content {
    padding: 0 !important;
    margin: 0 !important;
}

/* Ensure sections don't break viewport */
section {
    width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .container {
        padding: 0 10px !important;
    }
    
    .hero-headline {
        font-size: 1.6rem !important;
    }
    
    .hero-subheadline {
        font-size: 0.95rem !important;
    }
    
    .btn {
        padding: 12px 20px !important;
        font-size: 0.85rem !important;
    }
    
    .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    .contact-form {
        padding: 20px 15px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px !important;
        font-size: 16px !important;
    }
    
    section {
        padding: 0px 0 !important;
    }
    
    .final-cta-section {
        padding: 80px 0 !important;
    }
}

/* Print styles */
@media print {
    .hero-trust-badges,
    .btn,
    .filter-btn,
    .contact-form,
    .sticky-cta-bar,
    .mobile-phone-cta {
        display: none !important;
    }
    
    .door-hero-section {
        background: none !important;
        color: black !important;
    }
    
    .hero-content {
        color: black !important;
    }
}

/* Form success state */
.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success h3 {
    color: #4CAF50;
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-success p {
    font-size: 1.2rem;
    color: var(--text-dark);
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn.loading::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* End of CSS file - Version 2.0 */
/* HERO BADGES: Stack for mobile */
@media (max-width: 480px) {
    .hero-trust-badges {
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
}


/* ===== TOP BANNER STYLES - COMPLETE REPLACEMENT ===== */

/* Top Banner Container - FIXED POSITIONING */
.top-info-banner {
    position: relative !important; /* Changed to relative to avoid overlap */
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: linear-gradient(90deg, #4a4a4a 0%, #2d2d2d 100%) !important;
    color: #ffffff !important;
    font-size: 14px !important;
    z-index: 999 !important; /* Lower than main header (9999) */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1) !important;
}

/* Inner container */
.top-banner-inner {
    max-width: 1260px !important;
    margin: 0 auto !important;
    padding: 8px 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Left side text - Desktop only */
.banner-text {
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    color: #ffffff !important;
    display: none !important; /* Hidden on mobile */
}

/* Right side social icons */
.banner-social-icons {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important; /* Full width on mobile */
}

.banner-social-icons a {
    color: #ffffff !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    opacity: 0.8 !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.banner-social-icons a:hover {
    opacity: 1 !important;
    transform: translateY(-2px) !important;
}

/* Individual icon colors on hover */
.banner-social-icons a.facebook:hover { color: #1877f2 !important; }
.banner-social-icons a.twitter:hover { color: #1da1f2 !important; }
.banner-social-icons a.youtube:hover { color: #ff0000 !important; }
.banner-social-icons a.instagram:hover { color: #e4405f !important; }
.banner-social-icons a.email:hover { color: #d4af37 !important; }
.banner-social-icons a.linkedin:hover { color: #0077b5 !important; }
.banner-social-icons a.pinterest:hover { color: #bd081c !important; }
.banner-social-icons a.phone:hover { color: #4CAF50 !important; }

/* Desktop styles */
@media (min-width: 768px) {
    .top-banner-inner {
        padding: 10px 30px !important;
    }
    
    .banner-text {
        display: block !important;
        flex: 1 !important;
    }
    
    .banner-social-icons {
        width: auto !important;
        gap: 20px !important;
    }
    
    .banner-social-icons a {
        font-size: 18px !important;
    }
}

@media (min-width: 992px) {
    .top-info-banner {
        font-size: 15px !important;
    }
    
    .top-banner-inner {
        padding: 12px 40px !important;
    }
    
    .banner-social-icons {
        gap: 25px !important;
    }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    .top-info-banner {
        padding: 8px 0 !important;
    }
    
    .banner-social-icons a {
        padding: 5px !important;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .banner-social-icons {
        gap: 12px !important;
    }
    
    .banner-social-icons a {
        font-size: 14px !important;
    }
}

/* ===== MAIN HEADER ADJUSTMENTS ===== */

/* Ensure main header stays on top */
.custom-landing-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background: black !important;
    padding: 20px 20px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Body padding adjustment */
body {
    padding-top: 80px !important; /* Only account for fixed header */
}

/* Hero section padding */
.door-hero-section {
    padding-top: 100px !important; /* Reduced since banner is not fixed */
}

@media (min-width: 768px) {
    .door-hero-section {
        padding-top: 120px !important;
    }
}

/* Mobile header adjustments */
@media (max-width: 768px) {
    /* Ensure main header has defined height and z-index */
    .custom-landing-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background: black !important;
        /* Add a specific height if not defined */
        min-height: 60px !important;
    }
    
    body {
        padding-top: 70px !important;
    }
    
    .door-hero-section {
        padding-top: 90px !important;
    }
}

/* Remove these conflicting styles */
body.has-top-banner {
    /* Remove extra padding */
}

.has-top-banner .fusion-header-wrapper,
.has-top-banner header.fixed {
    /* Remove positioning */
}

.has-top-banner .door-hero-section {
    /* Remove extra padding */
}

/* ===== MOBILE BANNER FIX - ADD THIS TO YOUR CSS ===== */

/* Mobile-specific banner positioning */
@media (max-width: 768px) {
    /* Make banner fixed on mobile and position below header */
    .top-info-banner {
        position: fixed !important;
        top: 70px !important; /* Position below the mobile header */
        left: 0 !important;
        width: 100% !important;
        background: linear-gradient(90deg, #4a4a4a 0%, #2d2d2d 100%) !important;
        z-index: 9998 !important; /* Just below main header */
        padding: 6px 0 !important;
    }
    
    /* Adjust body padding to account for both header and banner */
    body {
        padding-top: 110px !important; /* 70px header + 40px banner */
    }
    
    /* Adjust hero section for mobile */
    .door-hero-section {
        padding-top: 120px !important;
    }
    
    /* Make icons smaller on mobile to fit better */
    .banner-social-icons {
        gap: 10px !important;
        padding: 0 10px !important;
    }
    
    .banner-social-icons a {
        font-size: 14px !important;
        padding: 3px !important;
    }
}

/* Very small mobile adjustments */
@media (max-width: 480px) {
    .top-info-banner {
        top: 60px !important; /* Adjust if header is smaller on very small screens */
    }
    
    body {
        padding-top: 95px !important;
    }
    
    .banner-social-icons {
        gap: 8px !important;
    }
    
    .banner-social-icons a {
        font-size: 13px !important;
    }
}

/* Desktop remains relative positioning */
@media (min-width: 769px) {
    .top-info-banner {
        position: relative !important;
        top: 0 !important;
        z-index: 999 !important;
    }
}

