SLPM Association Management Services -- Mobile Header
SLPM Association Management Services
Oakland & SF East Bay Real Estate Sales - Independent Real Estate Brokers DeMattei & Associates <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet"> <style> :root { --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%); --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); --dark-gradient: linear-gradient(135deg, #2a2a72 0%, #009ffd 100%); --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); --glass-bg: rgba(255, 255, 255, 0.1); --glass-border: rgba(255, 255, 255, 0.2); --text-primary: #1a202c; --text-secondary: #4a5568; --accent-color: #667eea; --success-color: #48bb78; --warning-color: #f6ad55; --white: #ffffff; --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15); --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: var(--text-primary); overflow-x: hidden; background: #f8f9fa; } .material-icons { vertical-align: middle; font-size: 28px; } .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; } .container-wide { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; } /* Hero Section */ .hero { min-height: 100vh; background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); position: relative; display: flex; align-items: center; overflow: hidden; width: 100%; } .hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>'); animation: float 30s linear infinite; } @keyframes float { 0% { transform: translate(0, 0) rotate(0deg); } 100% { transform: translate(-60px, -60px) rotate(360deg); } } .hero-content { text-align: center; position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; animation: fadeInUp 1s ease-out; } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.2); padding: 0.75rem 1.5rem; border-radius: 50px; color: var(--white); font-size: 1rem; margin-bottom: 2rem; backdrop-filter: blur(10px); } .hero-badge .material-icons { color: #38ef7d; font-size: 32px; } .hero-title { font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; color: var(--white); margin-bottom: 1.5rem; line-height: 1.1; } .hero-subtitle { font-size: 1.4rem; color: rgba(255, 255, 255, 0.95); margin-bottom: 3rem; font-weight: 300; line-height: 1.6; max-width: 800px; margin-left: auto; margin-right: auto; } .hero-cta { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 4rem; } .btn { padding: 1.2rem 2.5rem; font-size: 1.1rem; font-weight: 600; border: none; border-radius: 50px; cursor: pointer; transition: all 0.3s ease; text-decoration: none !important; display: inline-flex; align-items: center; gap: 0.75rem; position: relative; overflow: hidden; } .btn .material-icons { font-size: 26px; } .btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s; } .btn:hover::before { width: 300px; height: 300px; } .btn-primary { background: var(--white); color: var(--accent-color) !important; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); } .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3); } .btn-secondary { background: rgba(255, 255, 255, 0.15); color: var(--white) !important; border: 2px solid rgba(255, 255, 255, 0.5); backdrop-filter: blur(10px); } .btn-secondary:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-2px); border-color: var(--white); } .hero-features { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; } .hero-feature { display: flex; align-items: center; gap: 0.75rem; color: rgba(255, 255, 255, 0.95); font-size: 1.1rem; } .hero-feature .material-icons { font-size: 36px; color: rgba(255, 255, 255, 0.9); } /* Introduction Section */ .introduction { padding: 6rem 0; background: var(--white); width: 100%; } .intro-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .intro-text h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1.5rem; } .intro-text p { font-size: 1.2rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; } .intro-highlights { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; } .intro-highlight { display: flex; align-items: center; gap: 1rem; } .intro-highlight .material-icons { width: 50px; height: 50px; background: var(--success-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; font-size: 32px; line-height: 50px; } .intro-image { position: relative; } .intro-image img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-xl); } /* Services Section */ .services { padding: 6rem 0; background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%); width: 100%; } .section-header { text-align: center; margin-bottom: 4rem; } .section-header h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1rem; } .section-header p { font-size: 1.25rem; color: var(--text-secondary); max-width: 800px; margin: 0 auto; } .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; } .service-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; } .service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); } .service-image { height: 200px; overflow: hidden; position: relative; } .service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; } .service-card:hover .service-image img { transform: scale(1.1); } .service-content { padding: 2rem; } .service-icon { width: 70px; height: 70px; background: var(--primary-gradient); border-radius: 15px; display: flex; align-items: center; justify-content: center; color: var(--white); margin-bottom: 1.5rem; } .service-icon .material-icons { font-size: 42px; } .service-content h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-primary); } .service-content p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; } .service-features { list-style: none; } .service-features li { padding: 0.5rem 0; color: var(--text-secondary); display: flex; align-items: center; gap: 0.5rem; } .service-features .material-icons { color: var(--success-color); font-size: 24px; } /* Process Section */ .process { padding: 6rem 0; background: var(--white); width: 100%; } .process-tabs { display: flex; justify-content: center; gap: 2rem; margin-bottom: 3rem; } .process-tab { padding: 1rem 2rem; background: #f8f9fa; border: none; border-radius: 50px; font-size: 1.1rem; font-weight: 600; color: var(--text-secondary); cursor: pointer; transition: all 0.3s ease; } .process-tab.active { background: var(--primary-gradient); color: var(--white); transform: scale(1.05); } .process-content { display: none; } .process-content.active { display: block; animation: fadeIn 0.5s ease; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; } .process-step { text-align: center; padding: 2rem; background: #f8f9fa; border-radius: 20px; transition: all 0.3s ease; } .process-step:hover { background: var(--white); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transform: translateY(-5px); } .step-number { width: 60px; height: 60px; background: var(--primary-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.5rem; font-weight: 700; margin: 0 auto 1.5rem; } .process-step h4 { font-size: 1.2rem; margin-bottom: 1rem; color: var(--text-primary); } .process-step p { color: var(--text-secondary); line-height: 1.6; } /* Local Expertise Section */ .local-expertise { padding: 6rem 0; background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); width: 100%; } .expertise-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .expertise-image img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-xl); } .expertise-text h3 { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--text-primary); } .expertise-text p { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 2rem; } .neighborhoods-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; } .neighborhood-item { padding: 1rem; background: var(--white); border-radius: 10px; display: flex; align-items: center; gap: 0.75rem; transition: all 0.3s ease; } .neighborhood-item:hover { background: var(--primary-gradient); color: var(--white); transform: translateX(5px); } .neighborhood-item .material-icons { color: var(--accent-color); font-size: 28px; } .neighborhood-item:hover .material-icons { color: var(--white); } /* Why Choose Section */ .why-choose { padding: 6rem 0; background: var(--white); width: 100%; } .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; } .why-card { background: linear-gradient(180deg, #fafaff 0%, #f0f0ff 100%); border-radius: 20px; padding: 2.5rem; text-align: center; transition: all 0.3s ease; } .why-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); } .why-icon { width: 90px; height: 90px; background: var(--primary-gradient); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: var(--white); margin: 0 auto 1.5rem; } .why-icon .material-icons { font-size: 52px; } .why-card h4 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text-primary); } .why-card p { color: var(--text-secondary); line-height: 1.7; } /* Resources Section */ .resources { padding: 6rem 0; background: #f8f9fa; width: 100%; } .resources-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; margin-top: 3rem; } .resource-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; } .resource-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); } .resource-image { height: 250px; overflow: hidden; } .resource-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; } .resource-card:hover .resource-image img { transform: scale(1.05); } .resource-content { padding: 2.5rem; } .resource-content h3 { font-size: 1.8rem; margin-bottom: 1rem; color: var(--text-primary); } .resource-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; } .resource-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--accent-color); font-weight: 600; text-decoration: none; transition: all 0.3s ease; } .resource-link .material-icons { font-size: 24px; } .resource-link:hover { gap: 1rem; } /* FAQ Section */ .faq { padding: 6rem 0; background: var(--white); width: 100%; } .faq-container { max-width: 900px; margin: 0 auto; } .faq-item { background: #f8f9fa; border-radius: 15px; margin-bottom: 1.5rem; overflow: hidden; transition: all 0.3s ease; } .faq-item:hover { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); } .faq-question { padding: 1.5rem 2rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 1.1rem; color: var(--text-primary); transition: all 0.3s ease; } .faq-question:hover { background: rgba(102, 126, 234, 0.05); } .faq-question .material-icons { transition: transform 0.3s ease; color: var(--accent-color); font-size: 32px; } .faq-item.active .faq-question .material-icons { transform: rotate(180deg); } .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; } .faq-item.active .faq-answer { max-height: 500px; } .faq-answer-content { padding: 0 2rem 2rem; color: var(--text-secondary); line-height: 1.8; } /* Contact Section */ .contact-section { padding: 6rem 0; background: var(--dark-gradient); text-align: center; position: relative; overflow: hidden; width: 100%; } .contact-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 50px 50px; animation: float 25s linear infinite; } .contact-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; } .contact-content h2 { font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 1.5rem; font-weight: 700; } .contact-content p { font-size: 1.3rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 3rem; line-height: 1.6; } .contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; } .contact-item { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-radius: 15px; padding: 2rem; border: 1px solid rgba(255, 255, 255, 0.2); } .contact-item .material-icons { font-size: 48px; color: #38ef7d; margin-bottom: 1rem; } .contact-item h4 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.5rem; } .contact-item p { color: rgba(255, 255, 255, 0.8); font-size: 1rem; } /* Responsive Design */ @media (max-width: 968px) { .intro-content, .expertise-content { grid-template-columns: 1fr; } .services-grid, .why-grid { grid-template-columns: 1fr; } .process-steps { grid-template-columns: repeat(2, 1fr); } .neighborhoods-grid { grid-template-columns: 1fr; } .resources-grid { grid-template-columns: 1fr; } .contact-info { grid-template-columns: 1fr; } } @media (max-width: 768px) { .container { padding: 0 1rem; } .hero-features { flex-direction: column; gap: 1rem; } .process-tabs { flex-direction: column; } .process-steps { grid-template-columns: 1fr; } } /* Animations */ .animate-on-scroll { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; } .animate-on-scroll.animated { opacity: 1; transform: translateY(0); } </style> </head> <body> <!-- Hero Section --> <section class="hero"> <div class="container"> <div class="hero-content"> <div class="hero-badge"> <span class="material-icons">workspace_premium</span> Independent Real Estate Brokers DeMattei & Associates <h1 class="hero-title">Your Oakland & East Bay<br>Real Estate Experts</h1> <p class="hero-subtitle">Whether buying your first home or selling your property, we deliver exceptional results through local expertise and personalized service.</p> <div class="hero-cta"> <a href="#get-started" class="btn btn-primary"> <span class="material-icons">home</span> Start Your Journey </a> <a href="tel:+15105690723" class="btn btn-secondary"> <span class="material-icons">phone</span> Call (510) 569-0723 </a> </div> <div class="hero-features"> <div class="hero-feature"> <span class="material-icons">map</span> <span>Local Market Experts</span> </div> <div class="hero-feature"> <span class="material-icons">handshake</span> <span>Trusted Advisors</span> </div> <div class="hero-feature"> <span class="material-icons">emoji_events</span> <span>Proven Results</span> </div> </div> </div> </div> </section> <!-- Introduction Section --> <section class="introduction"> <div class="container"> <div class="intro-content"> <div class="intro-text animate-on-scroll"> <h2>Independent Real Estate Brokers DeMattei & Associates</h2> <p>With deep roots in the Oakland and East Bay communities, we bring unparalleled local knowledge and a commitment to excellence to every real estate transaction.</p> <p>Our team combines decades of experience with innovative marketing strategies and a genuine passion for helping clients achieve their real estate goals.</p> <div class="intro-highlights"> <div class="intro-highlight"> <span class="material-icons">check</span> <span>Comprehensive market analysis and strategic pricing</span> </div> <div class="intro-highlight"> <span class="material-icons">check</span> <span>Professional photography and virtual tours</span> </div> <div class="intro-highlight"> <span class="material-icons">check</span> <span>Dedicated support from contract to closing</span> </div> </div> </div> <div class="intro-image animate-on-scroll"> <img decoding="async" src="https://slpmhoa.com/wp-content/plugins/gumlet/assets/images/pixel.png" alt="Oakland Real Estate" data-gmsrc="https://slpmhoa.gumlet.io/wp-content/uploads/2025/10/independent-realty-demattei-associates-oakland-realtors.jpg?compress=true"> </div> </div> </div> </section> <!-- Services Section --> <section class="services"> <div class="container"> <div class="section-header animate-on-scroll"> <h2>Comprehensive Real Estate Services</h2> <p>Tailored solutions for buyers, sellers, and investors in the Bay Area</p> </div> <div class="services-grid"> <div class="service-card animate-on-scroll"> <div class="service-image"> <img decoding="async" src="https://slpmhoa.com/wp-content/plugins/gumlet/assets/images/pixel.png" alt="Home Buying Services" data-gmsrc="https://slpmhoa.gumlet.io/wp-content/uploads/2025/10/oakland-homebuyer-assistance.jpg?compress=true"> </div> <div class="service-content"> <div class="service-icon"> <span class="material-icons">home</span> </div> <h3>Home Buying</h3> <p>Find your perfect home with expert guidance through every step of the buying process.</p> <ul class="service-features"> <li><span class="material-icons">check_circle</span> Personalized property search</li> <li><span class="material-icons">check_circle</span> Neighborhood insights</li> <li><span class="material-icons">check_circle</span> Negotiation expertise</li> <li><span class="material-icons">check_circle</span> Closing coordination</li> </ul> </div> </div> <div class="service-card animate-on-scroll"> <div class="service-image"> <img decoding="async" src="https://slpmhoa.com/wp-content/plugins/gumlet/assets/images/pixel.png" alt="Home Selling Services" data-gmsrc="https://slpmhoa.gumlet.io/wp-content/uploads/2025/10/oakland-home-sales-realtor.jpg?compress=true"> </div> <div class="service-content"> <div class="service-icon"> <span class="material-icons">sell</span> </div> <h3>Home Selling</h3> <p>Maximize your property's value with strategic marketing and expert positioning.</p> <ul class="service-features"> <li><span class="material-icons">check_circle</span> Market analysis</li> <li><span class="material-icons">check_circle</span> Professional staging</li> <li><span class="material-icons">check_circle</span> Premium marketing</li> <li><span class="material-icons">check_circle</span> Multiple offer management</li> </ul> </div> </div> <div class="service-card animate-on-scroll"> <div class="service-image"> <img decoding="async" src="https://slpmhoa.com/wp-content/plugins/gumlet/assets/images/pixel.png" alt="Investment Properties" data-gmsrc="https://slpmhoa.gumlet.io/wp-content/uploads/2025/10/oakland-real-estate-investment-sales.jpg?compress=true"> </div> <div class="service-content"> <div class="service-icon"> <span class="material-icons">trending_up</span> </div> <h3>Investment Properties</h3> <p>Build wealth through strategic real estate investments in prime East Bay locations.</p> <ul class="service-features"> <li><span class="material-icons">check_circle</span> Investment analysis</li> <li><span class="material-icons">check_circle</span> Rental market insights</li> <li><span class="material-icons">check_circle</span> Property management</li> <li><span class="material-icons">check_circle</span> Portfolio strategy</li> </ul> </div> </div> </div> </div> </section> <!-- Process Section --> <section class="process"> <div class="container"> <div class="section-header animate-on-scroll"> <h2>Your Journey Made Simple</h2> <p>A streamlined process designed for your success</p> </div> <div class="process-tabs"> <button class="process-tab active" data-process="buying">Buying Process</button> <button class="process-tab" data-process="selling">Selling Process</button> </div> <div class="process-content active" id="buying"> <div class="process-steps"> <div class="process-step animate-on-scroll"> <div class="step-number">1</div> <h4>Initial Consultation</h4> <p>Discuss your needs, preferences, and budget to create your personalized search strategy.</p> </div> <div class="process-step animate-on-scroll"> <div class="step-number">2</div> <h4>Property Search</h4> <p>Explore curated listings and schedule tours of homes that match your criteria.</p> </div> <div class="process-step animate-on-scroll"> <div class="step-number">3</div> <h4>Make an Offer</h4> <p>Craft a competitive offer with expert negotiation to secure your dream home.</p> </div> <div class="process-step animate-on-scroll"> <div class="step-number">4</div> <h4>Close & Move In</h4> <p>Navigate inspections, paperwork, and closing with confidence and support.</p> </div> </div> </div> <div class="process-content" id="selling"> <div class="process-steps"> <div class="process-step animate-on-scroll"> <div class="step-number">1</div> <h4>Property Evaluation</h4> <p>Comprehensive market analysis to determine optimal pricing strategy.</p> </div> <div class="process-step animate-on-scroll"> <div class="step-number">2</div> <h4>Prepare & Stage</h4> <p>Professional staging and improvements to showcase your home's best features.</p> </div> <div class="process-step animate-on-scroll"> <div class="step-number">3</div> <h4>Marketing Campaign</h4> <p>Premium photography, virtual tours, and targeted marketing to attract buyers.</p> </div> <div class="process-step animate-on-scroll"> <div class="step-number">4</div> <h4>Negotiate & Close</h4> <p>Expert negotiation to maximize your sale price and smooth closing process.</p> </div> </div> </div> </div> </section> <!-- Local Expertise Section --> <section class="local-expertise"> <div class="container"> <div class="section-header animate-on-scroll"> <h2>Oakland & East Bay Area Specialists</h2> <p>Deep local knowledge across the Bay Area's most desirable neighborhoods</p> </div> <div class="expertise-content"> <div class="expertise-image animate-on-scroll"> <img decoding="async" src="https://slpmhoa.com/wp-content/plugins/gumlet/assets/images/pixel.png" alt="East Bay Neighborhoods" data-gmsrc="https://slpmhoa.gumlet.io/wp-content/uploads/2025/10/oakland-east-bay-area-specialists-realtor.jpg?compress=true"> </div> <div class="expertise-text animate-on-scroll"> <h3>Know Your Neighborhood</h3> <p>From the vibrant streets of Oakland to the family-friendly communities of the East Bay, we know every neighborhood's unique character, amenities, and market trends.</p> <p>Our local expertise helps you find not just a house, but the perfect community for your lifestyle.</p> <div class="neighborhoods-grid"> <div class="neighborhood-item"> <span class="material-icons">location_on</span> <span>Oakland</span> </div> <div class="neighborhood-item"> <span class="material-icons">location_on</span> <span>Berkeley</span> </div> <div class="neighborhood-item"> <span class="material-icons">location_on</span> <span>Alameda</span> </div> <div class="neighborhood-item"> <span class="material-icons">location_on</span> <span>San Leandro</span> </div> <div class="neighborhood-item"> <span class="material-icons">location_on</span> <span>Castro Valley</span> </div> <div class="neighborhood-item"> <span class="material-icons">location_on</span> <span>Hayward</span> </div> <div class="neighborhood-item"> <span class="material-icons">location_on</span> <span>Fremont</span> </div> <div class="neighborhood-item"> <span class="material-icons">location_on</span> <span>Walnut Creek</span> </div> </div> </div> </div> </div> </section> <!-- Why Choose Section --> <section class="why-choose"> <div class="container"> <div class="section-header animate-on-scroll"> <h2>Why Choose Independent Real Estate Brokers DeMattei & Associates</h2> <p>Experience the difference of working with dedicated professionals</p> </div> <div class="why-grid"> <div class="why-card animate-on-scroll"> <div class="why-icon"> <span class="material-icons">business_center</span> </div> <h4>Expert Negotiators</h4> <p>Skilled negotiation strategies that protect your interests and maximize value in every transaction.</p> </div> <div class="why-card animate-on-scroll"> <div class="why-icon"> <span class="material-icons">campaign</span> </div> <h4>Marketing Excellence</h4> <p>Cutting-edge marketing techniques including professional photography, virtual tours, and targeted advertising.</p> </div> <div class="why-card animate-on-scroll"> <div class="why-icon"> <span class="material-icons">hub</span> </div> <h4>Extensive Network</h4> <p>Connected with top professionals including lenders, inspectors, contractors, and other industry experts.</p> </div> <div class="why-card animate-on-scroll"> <div class="why-icon"> <span class="material-icons">schedule</span> </div> <h4>Always Available</h4> <p>Responsive communication and flexible scheduling to accommodate your busy lifestyle.</p> </div> <div class="why-card animate-on-scroll"> <div class="why-icon"> <span class="material-icons">trending_up</span> </div> <h4>Market Intelligence</h4> <p>Data-driven insights and real-time market analysis to inform your decisions.</p> </div> <div class="why-card animate-on-scroll"> <div class="why-icon"> <span class="material-icons">favorite</span> </div> <h4>Client-Focused</h4> <p>Your goals are our priority, with personalized service tailored to your unique needs.</p> </div> </div> </div> </section> <!-- Resources Section --> <section class="resources"> <div class="container"> <div class="section-header animate-on-scroll"> <h2>Helpful Resources</h2> <p>Tools and information to support your real estate journey</p> </div> <div class="resources-grid"> <div class="resource-card animate-on-scroll"> <div class="resource-image"> <img decoding="async" src="https://slpmhoa.com/wp-content/plugins/gumlet/assets/images/pixel.png" alt="Buyer's Guide" data-gmsrc="https://slpmhoa.gumlet.io/wp-content/uploads/2025/10/oakland-first-time-buyers-guide.jpg?compress=true"> </div> <div class="resource-content"> <h3>First-Time Buyer's Guide</h3> <p>Everything you need to know about purchasing your first home in the Bay Area, from financing options to closing procedures.</p> <a href="#" class="resource-link"> Learn More <span class="material-icons">arrow_forward</span> </a> </div> </div> <div class="resource-card animate-on-scroll"> <div class="resource-image"> <img decoding="async" src="https://slpmhoa.com/wp-content/plugins/gumlet/assets/images/pixel.png" alt="Seller's Guide" data-gmsrc="https://slpmhoa.gumlet.io/wp-content/uploads/2025/10/oakland-home-sellers-checklist.jpg?compress=true"> </div> <div class="resource-content"> <h3>Home Seller's Checklist</h3> <p>Step-by-step guidance for preparing your home for sale and maximizing its market value in today's competitive market.</p> <a href="#" class="resource-link"> Learn More <span class="material-icons">arrow_forward</span> </a> </div> </div> </div> </div> </section> <!-- FAQ Section --> <section class="faq"> <div class="container"> <div class="section-header animate-on-scroll"> <h2>Frequently Asked Questions</h2> <p>Answers to common questions about buying and selling real estate</p> </div> <div class="faq-container"> <div class="faq-item animate-on-scroll"> <div class="faq-question"> How do I know if I'm ready to buy a home? <span class="material-icons">expand_more</span> </div> <div class="faq-answer"> <div class="faq-answer-content"> Key indicators include stable employment, a good credit score, savings for a down payment and closing costs, and a clear understanding of your long-term goals. We offer free consultations to help assess your readiness and create a personalized timeline for homeownership. </div> </div> </div> <div class="faq-item animate-on-scroll"> <div class="faq-question"> What's the current state of the Oakland real estate market? <span class="material-icons">expand_more</span> </div> <div class="faq-answer"> <div class="faq-answer-content"> The Oakland and East Bay markets remain dynamic with strong demand in many neighborhoods. Market conditions vary by area and property type. We provide detailed, up-to-date market analysis specific to your interests, helping you make informed decisions whether buying or selling. </div> </div> </div> <div class="faq-item animate-on-scroll"> <div class="faq-question"> How long does it typically take to sell a home? <span class="material-icons">expand_more</span> </div> <div class="faq-answer"> <div class="faq-answer-content"> Timeline varies based on market conditions, pricing strategy, and property preparation. Well-priced, properly marketed homes in desirable areas often receive offers quickly. We'll provide a realistic timeline based on current market data and your specific situation during our initial consultation. </div> </div> </div> <div class="faq-item animate-on-scroll"> <div class="faq-question"> What should I look for when choosing a neighborhood? <span class="material-icons">expand_more</span> </div> <div class="faq-answer"> <div class="faq-answer-content"> Consider factors like commute times, school quality, local amenities, future development plans, and community character. We provide comprehensive neighborhood guides and can arrange tours to help you experience different areas firsthand, ensuring you find the perfect community for your lifestyle. </div> </div> </div> <div class="faq-item animate-on-scroll"> <div class="faq-question"> Do you work with first-time home buyers? <span class="material-icons">expand_more</span> </div> <div class="faq-answer"> <div class="faq-answer-content"> Absolutely! We specialize in guiding first-time buyers through every step of the process. From understanding financing options and down payment assistance programs to navigating inspections and closing procedures, we ensure you feel confident and informed throughout your home buying journey. </div> </div> </div> </div> </div> </section> <!-- Contact Section --> <section class="contact-section" id="get-started"> <div class="container"> <div class="contact-content animate-on-scroll"> <h2>Ready to Make Your Move?</h2> <p>Let's discuss your real estate goals and create a personalized strategy for success.</p> <div class="hero-cta"> <a href="#contact-form" class="btn btn-primary"> <span class="material-icons">assignment</span> Complete Our Form Below </a> <a href="tel:+15105690723" class="btn btn-secondary"> <span class="material-icons">phone</span> Call (510) 569-0723 </a> </div> <div class="contact-info"> <div class="contact-item"> <span class="material-icons">phone</span> <h4>Call Us</h4> <p>(510) 569-0723</p> </div> <div class="contact-item"> <span class="material-icons">email</span> <h4>Email</h4> <p>info@slpmhoa.com</p> </div> <div class="contact-item"> <span class="material-icons">schedule</span> <h4>Available</h4> <p>7 Days a Week</p> </div> </div> </div> </div> </section> <!-- Note: Existing contact form will be inserted here with id="contact-form" --> <script> // Process Tabs const processTabs = document.querySelectorAll('.process-tab'); const processContents = document.querySelectorAll('.process-content'); processTabs.forEach(tab => { tab.addEventListener('click', () => { const process = tab.getAttribute('data-process'); processTabs.forEach(t => t.classList.remove('active')); processContents.forEach(c => c.classList.remove('active')); tab.classList.add('active'); document.getElementById(process).classList.add('active'); }); }); // FAQ functionality const faqItems = document.querySelectorAll('.faq-item'); faqItems.forEach(item => { const question = item.querySelector('.faq-question'); question.addEventListener('click', () => { faqItems.forEach(otherItem => { if (otherItem !== item) { otherItem.classList.remove('active'); } }); item.classList.toggle('active'); }); }); // Animate on scroll const observerOptions = { threshold: 0.1, rootMargin: '0px 0px -50px 0px' }; const observer = new IntersectionObserver((entries) => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('animated'); } }); }, observerOptions); document.querySelectorAll('.animate-on-scroll').forEach(el => { observer.observe(el); }); // Smooth scroll document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); const target = document.querySelector(this.getAttribute('href')); if (target) { target.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }); }); </script> </body> </html> </div> </div> </div> </div> </main> <footer data-elementor-type="footer" data-elementor-id="37" class="elementor elementor-37 elementor-location-footer" data-elementor-post-type="elementor_library"> <div class="elementor-element elementor-element-059bd7e e-con-full e-flex e-con e-parent" data-id="059bd7e" data-element_type="container" data-e-type="container" data-settings="{"jet_parallax_layout_list":[]}"> <div class="elementor-element elementor-element-b47a061 elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-template" data-id="b47a061" data-element_type="widget" data-e-type="widget" data-widget_type="template.default"> <div class="elementor-widget-container"> <div class="elementor-template"> <div data-elementor-type="section" data-elementor-id="48" class="elementor elementor-48 elementor-location-footer" data-elementor-post-type="elementor_library"> <div class="elementor-element elementor-element-ea49883 e-con-full e-flex e-con e-parent" data-id="ea49883" data-element_type="container" data-e-type="container" data-settings="{"jet_parallax_layout_list":[]}"> <div class="elementor-element elementor-element-b08347e elementor-widget elementor-widget-html" data-id="b08347e" data-element_type="widget" data-e-type="widget" data-widget_type="html.default"> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>SLPM Association Management Services -- Desktop Footer