

.entry-content-wrap{padding:0 !important;}
.entry.single-entry{box-shadow:none !important;background:transparent !important;}
.site-container.content-container{max-width:100% !important;padding:0 !important;}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
        }
        
        /* Container */
        .deck-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Top Header Bar */
        .top-header {
            background: #0f4c81;
            color: white;
            padding: 12px 20px;
            text-align: center;
            font-weight: 600;
        }
        
        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(15, 76, 129, 0.85), rgba(15, 76, 129, 0.85)), 
                              url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?q=80&w=2000&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 80px 20px 60px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 300;
        }
        
        .hero .tagline {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .location-tags {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        
        .location-tag {
            background: rgba(255,255,255,0.2);
            padding: 10px 24px;
            border-radius: 25px;
            font-size: 0.95rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }
        
        .location-tag:hover {
            background: rgba(255,255,255,0.3);
        }
        
        .cta-button {
            display: inline-block;
            background: #ff6b35;
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s;
            margin: 10px;
        }
        
        .cta-button:hover {
            background: #e55a2b;
        }
        
        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
        }
        
        .cta-button.secondary:hover {
            background: rgba(255,255,255,0.1);
        }
        
        /* Trust Badges */
        .trust-badges {
            background: #f8f9fa;
            padding: 30px 20px;
            text-align: center;
        }
        
        .badges-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .badge {
            text-align: center;
        }
        
        .badge-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .badge-text {
            font-weight: 600;
            color: #1a1a1a;
        }
        
        /* Sections */
        section {
            padding: 60px 20px;
        }
        
        .section-light {
            background: #f8f9fa;
        }
        
        .section-white {
            background: white;
        }
        
        h2 {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
        }
        
        .section-intro {
            font-size: 1.1rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: #666;
            line-height: 1.8;
        }
        
        /* Benefits Grid */
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .benefit-item {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .benefit-item strong {
            color: #0f4c81;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 10px;
        }
        
        /* Services Grid */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.8;
        }
        
        /* Process Section */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .step {
            text-align: center;
        }
        
        .step-number {
            background: #ff6b35;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .step h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #1a1a1a;
            font-weight: 600;
        }
        
        .step p {
            color: #666;
            line-height: 1.7;
        }
        
        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 40px;
        }
        
        .gallery-item {
            position: relative;
            height: 250px;
            background: #d1d5db;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-weight: 600;
            text-align: center;
            padding: 30px;
            font-size: 1.1rem;
            line-height: 1.5;
        }
        
        .gallery-item img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            padding: 0;
            margin: 0;
        }
        
        .gallery-item span {
            position: relative;
            z-index: 1;
        }
        
        /* Service Area */
        .service-area {
            background: #d1d5db;
            color: #1a1a1a;
            padding: 60px 20px;
        }
        
        .service-area h2 {
            color: #1a1a1a;
        }
        
        .service-area p {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .stars {
            color: #f39c12;
            margin-bottom: 15px;
        }
        
        .testimonial-text {
            font-style: italic;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #1a1a1a;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 900px;
            margin: 40px auto 0;
        }
        
        .faq-item {
            background: #f8f9fa;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            padding: 20px 25px;
            background: none;
            border: none;
            text-align: left;
            font-size: 1.2rem;
            font-weight: 600;
            color: #0f4c81;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: rgba(15, 76, 129, 0.05);
        }
        
        .faq-question::after {
            content: '▼';
            font-size: 0.8rem;
            transition: transform 0.3s;
        }
        
        .faq-question.active::after {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-answer-content {
            padding: 0 25px 20px 25px;
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
        }
        
        .faq-answer.active {
            max-height: 500px;
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            text-align: center;
            padding: 40px 20px;
        }
        
        footer p {
            opacity: 0.9;
            margin: 5px 0;
        }
        
        /* Responsive */
        @media (max-width: 1024px) and (min-width: 769px) {
            .gallery-grid,
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero .subtitle {
                font-size: 1.1rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .badges-grid {
                gap: 20px;
            }
            
            .service-grid,
            .process-steps,
            .testimonials-grid,
            .gallery-grid,
            .benefits {
                grid-template-columns: 1fr;
            }
        }

// Smooth scrolling for anchor links
        document.querySelectorAll('a[href^="#"]').forEach(anchor =&gt; {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                const target = document.querySelector(this.getAttribute('href'));
                if (target) {
                    target.scrollIntoView({
                        behavior: 'smooth',
                        block: 'start'
                    });
                }
            });
        });

        // FAQ Accordion functionality
        document.querySelectorAll('.faq-question').forEach(button =&gt; {
            button.addEventListener('click', function() {
                const answer = this.nextElementSibling;
                const isActive = this.classList.contains('active');
                
                // Close all FAQs
                document.querySelectorAll('.faq-question').forEach(q =&gt; q.classList.remove('active'));
                document.querySelectorAll('.faq-answer').forEach(a =&gt; a.classList.remove('active'));
                
                // Open clicked FAQ if it wasn't already open
                if (!isActive) {
                    this.classList.add('active');
                    answer.classList.add('active');
                }
            });
        });


document.querySelectorAll('.faq-question').forEach(function(btn) {
  btn.addEventListener('click', function() {
    var item = this.closest('.faq-item');
    var wasActive = this.classList.contains('active');
    document.querySelectorAll('.faq-question').forEach(function(q) { q.classList.remove('active'); });
    document.querySelectorAll('.faq-answer').forEach(function(a) { a.classList.remove('active'); });
    if (!wasActive) {
      this.classList.add('active');
      item.querySelector('.faq-answer').classList.add('active');
    }
  });
});
document.querySelectorAll('a[href^="#"]').forEach(function(anchor) {
  anchor.addEventListener('click', function(e) {
    var target = document.querySelector(this.getAttribute('href'));
    if (target) { e.preventDefault(); target.scrollIntoView({behavior: 'smooth'}); }
  });
});
/* Emergency hero fix - override Kadence white backgrounds */
.page .content-area{margin-top:0 !important;margin-bottom:0 !important;}
.page .entry-content-wrap{padding:0 !important;}
.page .entry.single-entry{box-shadow:none !important;background:transparent !important;border:none !important;}
.page .content-bg,.page body.content-style-unboxed .site{background:transparent !important;}
.page .site-container.content-container{max-width:100% !important;width:100% !important;padding:0 !important;}
.hero{background:linear-gradient(135deg,#0f2847 0%,#1a3c6e 50%,#2a5ba8 100%) !important;position:relative;overflow:hidden;padding:100px 0 80px;width:100vw !important;margin-left:calc(-50vw + 50%) !important;}
