.elementor-162 .elementor-element.elementor-element-c22b5fb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-85762b3 *//* Hero Section */
        .hero {
            background: linear-gradient(135deg, #0a0f1c 0%, #1a202c 100%);
            color: white;
            padding: 8rem 2rem 4rem;
            text-align: center;
            position: relative;
        }

        .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(241, 196, 15, 0.2), transparent 80%),
        url('https://psrebuildsite.dvcdevelopment.com/wp-content/uploads/2025/06/25fba5ed-a7f9-41b2-ad4f-08fa6f7fc558.webp') center/cover no-repeat;
    background-blend-mode: overlay; /* Optional: blend gradient with image */
    z-index: 0;
}


        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(241, 196, 15, 0.2);
            border: 1px solid rgba(241, 196, 15, 0.3);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 2rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
        }

        .hero-subtitle {
            font-size: 1.375rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
            
            
        }

        .btn-hero-primary {
            background: linear-gradient(135deg, var(--accent), #e67e22);
            color: white;
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
        }

        .btn-hero-secondary {
            background: var(--white);
            color: white;
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-hero-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        /* Trust Bar */
        .trust-bar {
            background: white;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            margin: -2rem auto 0;
            position: relative;
            z-index: 3;
            border-radius: 15px;
            max-width: 1000px;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            text-align: center;
        }

        .trust-item {
            padding: 1rem;
        }

        .trust-number {
            font-size: 2rem;
            font-weight: 900;
            color: var(--gold);
            display: block;
            margin-bottom: 0.5rem;
        }

        .trust-label {
            font-size: 0.9rem;
            color: var(--gray-700);
            font-weight: 600;
        }

        /* Content Sections */
        .section {
            padding: 4rem 2rem;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--gray-600);
            margin-bottom: 3rem;
            text-align: center;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Problems Section */
        .problems {
            background: var(--gray-100);
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .problem-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--accent);
        }

        .problem-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .problem-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .problem-card p {
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* Solution Section */
        .solution-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .solution-feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .solution-feature-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: linear-gradient(135deg, var(--gold), #e67e22);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .solution-feature h4 {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .solution-feature p {
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* Services Section */
        .services {
            background: linear-gradient(135deg, var(--gray-100) 0%, white 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .service-card.featured {
            border-color: var(--gold);
            position: relative;
        }

        .service-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--gold), #e67e22);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 0 0 15px 15px;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 2;
        }

        .service-header {
            padding: 2rem 2rem 0;
            text-align: center;
        }

        .service-subtitle {
            font-size: 0.75rem;
            color: var(--primary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }

        .service-name {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .service-description {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-body {
            padding: 0 2rem 2rem;
        }

        .service-ideal {
            background: var(--gray-100);
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1.5rem;
            font-size: 0.875rem;
        }

        .service-ideal strong {
            color: var(--dark);
        }

        .service-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .service-feature {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: var(--gray-700);
            font-size: 0.9rem;
        }

        .service-feature-icon {
            width: 16px;
            height: 16px;
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .service-button {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--primary), #004499);
            color: white !important;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            text-align: center;
        }

        .service-button:hover {
            transform: translateY(-2px);
        }

        .service-card.featured .service-button {
            background: linear-gradient(135deg, var(--accent), #e67e22);
        }

        /* Investment Section */
        .investment-box {
            background: var(--gray-100);
            padding: 2rem;
            border-radius: 15px;
            max-width: 600px;
            margin: 3rem auto 0;
            text-align: center;
        }

        .investment-box h3 {
            color: var(--dark);
            margin-bottom: 1rem;
            font-size: 1.125rem;
        }

        .investment-box p {
            color: var(--gray-600);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .investment-box a {
            background: linear-gradient(135deg, var(--accent), #e67e22);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .investment-box a:hover {
            transform: translateY(-2px);
        }

        /* Tax Resolution */
        .tax-resolution {
            background: var(--dark);
            color: white;
        }

        .resolution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .resolution-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .resolution-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .resolution-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .resolution-card p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .resolution-features {
            list-style: none;
            text-align: left;
        }

        .resolution-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
        }

        .resolution-feature-icon {
            width: 14px;
            height: 14px;
            color: var(--accent);
            flex-shrink: 0;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--gold);
        }

        .testimonial-quote {
            font-size: 1rem;
            color: var(--gray-700);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .testimonial-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--gold), #e67e22);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .testimonial-info h4 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.25rem;
            font-size: 0.9rem;
        }

        .testimonial-info p {
            color: var(--gray-600);
            font-size: 0.8rem;
        }

        .testimonial-savings {
            background: linear-gradient(135deg, var(--secondary), #00994d);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            display: inline-block;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--accent), #e67e22);
            color: white;
            text-align: center;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.125rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: white;
            color: var(--gold);
            padding: 1.25rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }

        .cta-button:hover {
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            background: #1a202c;
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 1.5rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1rem;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .trust-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-grid,
            .problems-grid,
            .resolution-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .solution-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .trust-grid {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 3rem 1rem;
            }
        }/* End custom CSS */