html { scroll-behavior: smooth; }
/* Deferred header/hero styles */
.nav-menu li > a { transition: all 0.3s ease; }
.nav-menu li > a::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--red); transition: all 0.3s ease; }
.nav-menu li > a:hover { color: var(--red); }
.nav-menu li > a:hover::after { width: 70%; }
.has-dropdown > a .chevron { transition: all 0.3s ease; }
.has-dropdown:hover > a .chevron { transform: rotate(180deg); }
.dropdown { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--white); box-shadow: 0 8px 30px rgba(0,0,0,0.12); border-radius: 0 0 10px 10px; border-top: 3px solid var(--red); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.3s ease; z-index: 100; padding: 8px 0; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { padding: 10px 20px !important; font-size: 0.85rem !important; text-transform: none !important; letter-spacing: 0 !important; font-weight: 600 !important; color: var(--navy) !important; white-space: nowrap; }
.dropdown li a::after { display: none !important; }
.dropdown li a:hover { color: var(--red) !important; background: var(--off-white); padding-left: 24px !important; }
.nav-cta { transition: all 0.3s ease; }
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }
.btn { transition: all 0.3s ease; }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(178,34,52,0.4); }
.btn-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-white:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; margin-top: 15px; }

/* Service Bar */
.service-bar { background: var(--white); margin-top: -60px; position: relative; z-index: 10; padding: 40px 0 60px; }
.service-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { background: var(--white); border-radius: 12px; padding: 30px 24px; text-align: center; box-shadow: var(--shadow-lg); transition: var(--transition); border-bottom: 4px solid transparent; cursor: pointer; }
.service-card:hover { transform: translateY(-8px); border-bottom-color: var(--red); box-shadow: 0 15px 50px rgba(0,0,0,0.15); }
.service-card-icon { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.8rem; color: var(--gold); }
.service-card h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.5; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 12px; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.4rem; color: var(--navy); margin-bottom: 15px; }
.section-header p { color: var(--gray); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* Specials */
.specials { padding: 80px 0; background: var(--off-white); }
.deals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.deal-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: flex; flex-direction: column; }
.deal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.deal-card-top { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: var(--white); padding: 24px; text-align: center; position: relative; overflow: hidden; }
.deal-card-top::after { content: ''; position: absolute; top: -30px; right: -30px; width: 80px; height: 80px; background: rgba(255,255,255,0.1); border-radius: 50%; }
.deal-amount { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; }
.deal-label { font-size: 0.9rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 1px; }
.deal-card-body { padding: 24px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.deal-card-body h3 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.deal-card-body p { color: var(--gray); font-size: 0.85rem; margin-bottom: 18px; flex: 1; }
.deal-card-body .btn { font-size: 0.85rem; padding: 10px 24px; align-self: center; }
.deal-expires { font-size: 0.75rem; color: var(--gray); margin-top: 12px; }

/* About */
.about { padding: 80px 0; background: var(--white); }
.about .container { display: flex; align-items: center; gap: 60px; }
.about-image { flex: 0 0 45%; position: relative; }
.about-image-main { border-radius: 12px; box-shadow: var(--shadow-lg); width: 100%; height: 400px; object-fit: cover; background: linear-gradient(135deg, var(--navy) 0%, #2D4A7A 100%); display: flex; align-items: center; justify-content: center; }
.about-visual { text-align: center; color: var(--white); padding: 40px; }
.about-visual i { font-size: 4rem; color: var(--gold); margin-bottom: 20px; display: block; }
.about-visual .stat-number { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 900; color: var(--gold); }
.about-visual .stat-label { font-size: 1.1rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 2px; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--red); color: var(--white); padding: 16px 24px; border-radius: 12px; box-shadow: var(--shadow); text-align: center; }
.about-badge .badge-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; }
.about-badge .badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.about-content { flex: 1; }
.about-content h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.about-content p { color: var(--gray); margin-bottom: 15px; line-height: 1.7; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 25px 0; }
.about-feature { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.about-feature i { color: var(--red); font-size: 1rem; }

/* Neighborhoods */
.neighborhoods { padding: 80px 0; background: var(--light); }
.neighborhoods .container { display: flex; align-items: center; gap: 60px; }
.neighborhoods-map { flex: 0 0 45%; position: relative; }
.neighborhoods-map-main { border-radius: 12px; box-shadow: var(--shadow-lg); width: 100%; height: 400px; background: linear-gradient(135deg, var(--navy) 0%, #2D4A7A 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.neighborhoods-map-main::before { content: ''; position: absolute; width: 300px; height: 300px; border: 2px solid rgba(255,255,255,0.1); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.neighborhoods-map-main::after { content: ''; position: absolute; width: 200px; height: 200px; border: 2px solid rgba(255,255,255,0.08); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.map-visual { text-align: center; color: var(--white); padding: 40px; position: relative; z-index: 1; }
.map-visual i { font-size: 5rem; color: var(--gold); margin-bottom: 20px; display: block; }
.map-visual .map-label { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--gold); }
.map-visual .map-sublabel { font-size: 1rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; }
.neighborhoods-badge { position: absolute; bottom: -20px; right: -20px; background: var(--red); color: var(--white); padding: 16px 24px; border-radius: 12px; box-shadow: var(--shadow); text-align: center; }
.neighborhoods-badge .badge-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; }
.neighborhoods-badge .badge-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.neighborhoods-content { flex: 1; }
.neighborhoods-content h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.neighborhoods-content p { color: var(--gray); margin-bottom: 15px; line-height: 1.7; }
.neighborhoods-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 25px 0; }
.neighborhoods-city { display: flex; align-items: center; gap: 10px; }
.neighborhoods-city i { color: var(--red); font-size: 1.1rem; flex-shrink: 0; }
.neighborhoods-city a { font-weight: 600; color: var(--navy); font-size: 0.95rem; text-decoration: none; transition: color 0.3s; }
.neighborhoods-city a:hover { color: var(--red); }

/* Why Us */
.why-us { padding: 80px 0; background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.why-us::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 10% 90%, rgba(178,34,52,0.1) 0%, transparent 40%), radial-gradient(circle at 90% 10%, rgba(212,168,67,0.05) 0%, transparent 40%); }
.why-us .section-header h2 { color: var(--white); }
.why-us .section-tag { color: var(--gold); }
.why-us .section-header p { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; position: relative; z-index: 2; }
.why-card { text-align: center; padding: 30px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; transition: var(--transition); }
.why-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.why-card i { font-size: 2.2rem; color: var(--gold); margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; opacity: 0.7; line-height: 1.5; }

/* Reviews */
.reviews { padding: 80px 0; background: var(--off-white); }
.reviews-stats { display: flex; justify-content: center; align-items: center; gap: 40px; margin-bottom: 50px; flex-wrap: wrap; }
.review-stat { text-align: center; }
.review-stat .stat-value { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: var(--navy); }
.review-stat .stat-desc { color: var(--gray); font-size: 0.9rem; }
.review-stat .stars { color: var(--gold); font-size: 1.2rem; margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.review-card { background: var(--white); border-radius: 12px; padding: 30px; box-shadow: var(--shadow); position: relative; }
.review-card::before { content: '\201C'; font-family: var(--font-heading); font-size: 4rem; color: var(--red); opacity: 0.15; position: absolute; top: 10px; left: 20px; line-height: 1; }
.review-stars { color: var(--gold); margin-bottom: 15px; }
.review-text { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.review-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.review-source { font-size: 0.8rem; color: var(--gray); }

/* Services Overview */
.services-overview { padding: 80px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.service-overview-card { display: flex; gap: 20px; padding: 30px; border-radius: 12px; border: 1px solid var(--gray-light); transition: var(--transition); scroll-margin-top: 100px; }
.service-overview-card:hover { border-color: var(--red); box-shadow: var(--shadow); }
.service-overview-icon { flex-shrink: 0; width: 60px; height: 60px; border-radius: 12px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); }
.service-overview-card h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.service-overview-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.service-overview-card p a { color: var(--red); font-weight: 700; transition: var(--transition); }
.service-overview-card p a:hover { color: var(--red-dark); text-decoration: underline; }

/* FAQ */
.faq { padding: 80px 0; background: var(--off-white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: 10px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--navy); font-size: 0.95rem; transition: var(--transition); border: none; background: none; width: 100%; text-align: left; font-family: var(--font-body); }
.faq-question:hover { color: var(--red); }
.faq-question i { transition: var(--transition); color: var(--red); flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--gray); line-height: 1.7; font-size: 0.9rem; }

/* CTA Banner */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: var(--white); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-banner::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 250px; height: 250px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-banner h2 { font-family: var(--font-heading); font-size: 2.4rem; margin-bottom: 15px; position: relative; z-index: 2; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; }
.cta-banner .btn { position: relative; z-index: 2; }

/* Footer */
.footer { background: var(--navy); color: var(--white); padding: 60px 0 0; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { max-width: 400px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 16px 0 20px; line-height: 1.7; }
.footer-brand img { height: 60px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.footer-social a:hover { background: var(--red); transform: translateY(-2px); }
.footer h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 20px; color: var(--gold); }
.footer-links li { margin-bottom: 10px; }
.footer-links li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-links li a:hover { color: var(--white); padding-left: 5px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer-contact li i { color: var(--gold); margin-top: 4px; }
.footer-bottom { text-align: center; padding: 20px 0; margin-top: 20px; color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* Mobile Bar */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); z-index: 999; padding: 10px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); border-top: 1px solid var(--gray-light); transform: translateY(100%); transition: transform 0.4s ease; display: none; }
.mobile-bar.visible { transform: translateY(0); }
.mobile-bar-inner { display: flex; gap: 10px; }
.mobile-bar-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 16px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.3px; cursor: pointer; transition: var(--transition); border: 2px solid transparent; }
.mobile-bar-book { background: var(--red); color: var(--white); border-color: var(--red); }
.mobile-bar-book:hover { background: var(--red-dark); }
.mobile-bar-call { background: var(--white); color: var(--navy); border-color: var(--navy); }
.mobile-bar-call:hover { background: var(--navy); color: var(--white); }
.mobile-bar-btn i { font-size: 1rem; }

/* Animations */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Schedule Modal */
.modal-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.6); z-index: 2000; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.active { display: flex; }
.modal { background: var(--white); border-radius: 16px; max-width: 500px; width: 100%; padding: 40px; position: relative; box-shadow: var(--shadow-lg); overflow: hidden; }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 1.5rem; color: var(--gray); cursor: pointer; transition: var(--transition); z-index: 10; }
.modal-close:hover { color: var(--navy); }
.modal h2 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--navy); margin-bottom: 4px; }
.modal .modal-sub { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }
.progress-dots { display: flex; justify-content: center; gap: 10px; margin-bottom: 24px; }
.progress-dots .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-light); transition: var(--transition); }
.progress-dots .dot.active { background: var(--red); }
.progress-dots .dot.completed { background: var(--navy); }
.wizard-step { display: none; animation: slideIn 0.3s ease; }
.wizard-step.active { display: block; }
@keyframes slideIn { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.service-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.service-option { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 2px solid var(--gray-light); border-radius: 10px; cursor: pointer; transition: var(--transition); }
.service-option:hover { border-color: var(--navy); background: #f8f9fc; }
.service-option.selected { border-color: var(--red); background: #fef2f3; }
.service-option .opt-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--off-white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--navy); flex-shrink: 0; }
.service-option.selected .opt-icon { background: var(--red); color: var(--white); }
.service-option .opt-label { flex: 1; font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.service-option .opt-check { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--gray-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.service-option.selected .opt-check { border-color: var(--red); background: var(--red); }
.service-option.selected .opt-check::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 0.7rem; color: var(--white); }
.calendar-wrapper { margin-bottom: 20px; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; background: var(--navy); color: var(--white); padding: 12px 16px; border-radius: 10px 10px 0 0; }
.calendar-header .cal-nav { background: none; border: none; color: var(--white); font-size: 1rem; cursor: pointer; padding: 4px 8px; border-radius: 6px; transition: var(--transition); }
.calendar-header .cal-nav:hover { background: rgba(255,255,255,0.15); }
.calendar-header .cal-title { font-weight: 700; font-size: 1rem; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); border: 1px solid var(--gray-light); border-top: none; border-radius: 0 0 10px 10px; overflow: hidden; }
.calendar-grid .day-label { padding: 8px 0; text-align: center; font-size: 0.75rem; font-weight: 700; color: var(--gray); background: var(--off-white); }
.calendar-grid .day-cell { padding: 10px 0; text-align: center; font-size: 0.85rem; cursor: pointer; transition: var(--transition); border-top: 1px solid var(--gray-light); }
@media (hover: hover) { .calendar-grid .day-cell:hover:not(.disabled):not(.empty) { background: #f0f4ff; } }
.calendar-grid .day-cell.selected, .calendar-grid .day-cell.selected:hover { background: var(--red); color: var(--white); font-weight: 700; }
.calendar-grid .day-cell.today:not(.selected) { font-weight: 700; color: var(--red); }
.calendar-grid .day-cell.disabled { color: #ccc; cursor: default; pointer-events: none; }
.calendar-grid .day-cell.empty { cursor: default; }
.time-label { font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 8px; }
.time-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.time-option { padding: 12px; text-align: center; border: 2px solid var(--gray-light); border-radius: 10px; cursor: pointer; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); transition: var(--transition); }
.time-option:hover { border-color: var(--navy); background: #f8f9fc; }
.time-option.selected { border-color: var(--red); background: #fef2f3; color: var(--red); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--navy); margin-bottom: 6px; }
.form-group input { width: 100%; padding: 14px 16px; border: 2px solid var(--gray-light); border-radius: 10px; font-family: var(--font-body); font-size: 1rem; color: var(--text-dark); transition: var(--transition); }
.form-group input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(178,34,52,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.back-btn { background: none; border: none; color: var(--gray); font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; gap: 6px; margin-bottom: 16px; transition: var(--transition); font-family: var(--font-body); }
.back-btn:hover { color: var(--navy); }
.form-submit { width: 100%; padding: 14px; background: var(--navy); color: var(--white); border: none; border-radius: 50px; font-family: var(--font-body); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; transition: var(--transition); }
.form-submit:hover:not(:disabled) { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(13,27,62,0.3); }
.form-submit:disabled { opacity: 0.45; cursor: not-allowed; }
.form-submit.submit-final { background: var(--red); }
.form-submit.submit-final:hover:not(:disabled) { background: var(--red-dark); box-shadow: 0 4px 15px rgba(178,34,52,0.3); }
.wizard-success { display: none; text-align: center; padding: 40px 0; }
.wizard-success.active { display: block; }
.wizard-success i { font-size: 3.5rem; color: #22c55e; margin-bottom: 16px; display: block; }
.wizard-success h3 { font-family: var(--font-heading); color: var(--navy); margin-bottom: 8px; font-size: 1.3rem; }
.wizard-success p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

/* Responsive - below fold */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .service-bar .container { grid-template-columns: repeat(2, 1fr); }
  .service-bar { margin-top: -30px; }
  .deals-grid { grid-template-columns: 1fr; }
  .about .container { flex-direction: column; }
  .about-image { flex: none; width: 100%; }
  .about-features { grid-template-columns: 1fr; }
  .neighborhoods .container { flex-direction: column; }
  .neighborhoods-map { flex: none; width: 100%; }
  .neighborhoods-cities { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; text-align: center; align-items: center; }
  .footer-brand { max-width: 100%; }
  .footer-social { justify-content: center; }
  .footer-contact li { justify-content: center; }
  .footer-column { align-items: center; display: flex; flex-direction: column; }
  .mobile-bar { display: block; }
  .footer { padding-bottom: 60px; }
  .section-header h2 { font-size: 1.8rem; }
  .cta-banner h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .service-bar .container { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
