:root { --primary-orange: #f97316; --primary-orange-light: #fb923c; --primary-blue: #2563eb; --dark-text: #000000; --white: #ffffff; --gray-light: #f3f4f6; --gray-border: #e5e7eb; --gray-text: #6b7280; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Poppins', sans-serif; color: var(--dark-text); line-height: 1.6; background: var(--white); } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Header */ .header { background: var(--white); padding: 1rem 0; border-bottom: 1px solid var(--gray-border); } .header .container { display: flex; justify-content: space-between; align-items: center; } .logo { display: flex; align-items: center; } .logo-img { height: 70px; width: auto; display: block; } .phone-link { text-decoration: none; background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%); color: var(--white); padding: 0.75rem 1.5rem; border-radius: 50px; display: inline-flex; align-items: center; transition: transform 0.3s; } .phone-link:hover { transform: scale(1.05); } .phone { font-weight: 600; font-size: 1rem; } /* Hero Section */ .hero { /* background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%); */ padding: 4rem 0 3rem; position: relative; overflow: hidden; } .hero-content { display: flex; align-items: center; gap: 3rem; max-width: 1200px; margin: 0 auto; } .hero-text { flex: 1; text-align: left; } .hero-image { flex: 0 0 700px; /* To create a circular crop effect */ /* -webkit-mask-image: radial-gradient(ellipse 60% 60% at center, black 50%, transparent 90%); mask-image: radial-gradient(ellipse 60% 60% at center, black 50%, transparent 90%); */ } .hero-img { width: 100%; height: auto; display: block; } .hero-title { font-size: 2.5rem; font-weight: 700; color: var(--dark-text); margin-bottom: 2rem; line-height: 1.2; } .asterisk { color: var(--primary-orange); font-size: 1.2em; } /* ZIP Form */ .zip-form-container { max-width: 500px; margin: 0 0 1rem 0; } .zip-form { background: transparent; padding: 0; } .form-group { margin-bottom: 1rem; } .input-group { display: flex; max-width: 500px; margin: 0 auto; background: var(--white); border-radius: 50px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); } .zip-input { flex: 1; padding: 1rem 1.5rem; border: none; font-size: 1rem; font-family: inherit; background: transparent; } .zip-input:focus { outline: none; } .zip-input::placeholder { color: var(--gray-text); } /* Buttons */ .btn { padding: 1rem 2rem; border: none; font-weight: 600; cursor: pointer; transition: all 0.3s; font-size: 1rem; font-family: inherit; } .btn-primary { background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%); color: var(--white); border-radius: 0 50px 50px 0; } .btn-primary:hover { transform: scale(1.05); } /* Disclaimer */ .disclaimer { font-size: 0.875rem; color: var(--gray-text); margin-top: 1rem; margin-bottom: 1.5rem; } /* Hero Features (inside hero section) */ .hero-features { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; } .hero-features .feature-item { display: flex; align-items: center; gap: 0.75rem; } .hero-features .feature-checkmark { flex-shrink: 0; width: 20px; height: 20px; background: var(--white); color: var(--primary-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: bold; box-shadow: 0 2px 4px rgba(0,0,0,0.1); } .hero-features .feature-text { font-size: 0.95rem; color: var(--dark-text); line-height: 1.4; font-weight: 500; } /* As Featured In Section */ .featured-in { background: var(--gray-light); padding: 2.5rem 0; text-align: center; } .featured-title { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gray-text); margin-bottom: 1.5rem; font-weight: 500; } .featured-logos { display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; } .featured-logo { height: 35px; width: auto; opacity: 0.6; filter: grayscale(100%); transition: opacity 0.3s; } .featured-logo:hover { opacity: 0.8; } /* Trust Bar */ .trust-bar { background: var(--white); padding: 3rem 0; overflow: hidden; border-bottom: 1px solid var(--gray-border); } .marquee { position: relative; overflow: hidden; } .marquee-content { display: flex; animation: scroll 40s linear infinite; gap: 0.5rem; align-items: center; padding: 0 0.5rem; } .trust-logo { height: 100px; width: auto; opacity: 1; margin: 0 0.75rem; } @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } } /* How It Works */ .how-it-works { padding: 4rem 0; background: var(--gray-light); } .section-title { text-align: center; font-size: 2rem; font-weight: 700; margin-bottom: 3rem; color: var(--dark-text); max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.3; } .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; } .step { text-align: center; padding: 2rem; background: var(--white); border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .step-number { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700; margin: 0 auto 1.5rem; } .step-heading { color: var(--primary-orange); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: 1px; } .step-description { color: var(--gray-text); font-size: 1rem; line-height: 1.6; } /* Reviews Section */ .reviews { background: var(--white); padding: 4rem 0; } .reviews h2 { text-align: center; font-size: 2rem; margin-bottom: 3rem; color: var(--dark-text); } .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1000px; margin: 0 auto; } .review-card { background: var(--gray-light); padding: 1.5rem; border-radius: 12px; transition: transform 0.3s; } .review-card:hover { transform: translateY(-5px); } .review-rating { color: var(--primary-orange); margin-bottom: 0.5rem; font-size: 1.2rem; } .review-text { color: var(--dark-text); margin-bottom: 1rem; font-style: italic; line-height: 1.6; } .review-author { color: var(--primary-orange); font-weight: 600; } /* Call to Action Section */ .cta-section { background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%); padding: 3rem 0; text-align: center; } .cta-content { max-width: 600px; margin: 0 auto; } .cta-title { color: var(--white); font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; } .cta-subtitle { color: var(--white); opacity: 0.9; margin-bottom: 1.5rem; } .btn-phone { background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%); color: var(--white); padding: 1rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1.25rem; display: inline-flex; align-items: center; text-decoration: none; transition: transform 0.3s; box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3); } .btn-phone:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4); } /* Footer */ .footer { background: var(--dark-text); color: var(--white); padding: 3rem 0; } .footer-content { text-align: center; } .footer-logo { margin-bottom: 2rem; } .footer-logo-img { height: 80px; width: auto; } .copyright { margin-bottom: 1.5rem; font-size: 0.9rem; } .footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; flex-wrap: wrap; } .footer-links a { color: var(--white); text-decoration: none; font-size: 0.9rem; transition: opacity 0.3s; } .footer-links a:hover { opacity: 0.7; } .social-links { display: flex; justify-content: center; gap: 1.5rem; } .social-link { color: var(--white); transition: transform 0.3s; } .social-link:hover { transform: scale(1.2); } /* Error Messages */ .error-message { color: #ef4444; font-size: 0.875rem; margin-top: 0.5rem; display: none; } .error-message.show { display: block; } /* Responsive */ @media (max-width: 768px) { .hero-content { flex-direction: column; text-align: center; } .hero-text { text-align: center; } .hero-image { flex: 1; max-width: 600px; margin: 0 auto; } .hero-title { font-size: 1.75rem; padding: 0 1rem; } .section-title { font-size: 1.5rem; padding: 0 1rem; } .input-group { flex-direction: column; border-radius: 12px; } .btn-primary { border-radius: 12px; } .steps { grid-template-columns: 1fr; } .footer-links { flex-direction: column; gap: 1rem; } .trust-logo { height: 70px; margin: 0 0.5rem; } .hero-features { padding: 0 1rem; gap: 0.5rem; } .hero-features .feature-text { font-size: 0.85rem; } .featured-logos { gap: 1.5rem; } .featured-logo { height: 25px; } .step-number { width: 60px; height: 60px; font-size: 1.5rem; } }