 :root { --primary-bg: #050607; --card-bg: #0f1115; --neon-accent: #f0b90b; --glass-bg: rgba(255, 255, 255, 0.03); --glass-border: rgba(255, 255, 255, 0.08); --glass-blur: blur(12px); --text-primary: #ffffff; --text-secondary: rgba(255, 255, 255, 0.7); } @keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } } @keyframes pulse-glow { 0% { box-shadow: 0 0 0 0 rgba(240, 185, 11, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(240, 185, 11, 0); } 100% { box-shadow: 0 0 0 0 rgba(240, 185, 11, 0); } } @keyframes breathe { 0% { transform: scale(1); } 100% { transform: scale(1.05); } } body { background-color: var(--primary-bg); color: var(--text-primary); font-family: 'Inter', sans-serif; overflow-x: hidden; } .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); } .reveal.active { opacity: 1; transform: translateY(0); } .delay-100 { transition-delay: 0.1s; } .delay-200 { transition-delay: 0.2s; } .delay-300 { transition-delay: 0.3s; } .text-gradient { background: linear-gradient(135deg, #fff 40%, var(--neon-accent) 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; } .section-header { text-align: center; margin-bottom: 4rem; } .section-title { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; } .section-desc { color: var(--text-secondary); max-width: 600px; margin: 0 auto; font-size: 1.1rem; line-height: 1.6; } .guide-hero { position: relative; height: 85vh; min-height: 600px; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 60px; } .guide-hero-bg { position: absolute; inset: 0; background-image: url('../images/heat-pump-guide-hero.png'); background-size: cover; background-position: center; z-index: 0; animation: breathe 25s infinite alternate ease-in-out; } .guide-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 6, 7, 0.7) 0%, rgba(5, 6, 7, 0.5) 50%, #050607 100%); z-index: 1; } .breadcrumb-wrapper { position: absolute; top: 100px; left: 0; width: 100%; display: flex; justify-content: center; z-index: 10; } .breadcrumb-nav { display: inline-flex; align-items: center; gap: 0.8rem; padding: 0.5rem 1.5rem; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 100px; backdrop-filter: blur(10px); } .breadcrumb-nav a { color: rgba(255, 255, 255, 0.8); font-size: 0.8rem; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; transition: color 0.3s; } .breadcrumb-nav a:hover { color: var(--neon-accent); } .breadcrumb-nav .current { color: var(--neon-accent); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; } .guide-hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; } .hero-badge { display: inline-block; padding: 0.5rem 1.5rem; background: rgba(240, 185, 11, 0.15); color: var(--neon-accent); border: 1px solid rgba(240, 185, 11, 0.3); border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem; } .guide-hero-title { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: #fff; text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); } .guide-hero-desc { font-size: 1.2rem; line-height: 1.7; color: #ddd; max-width: 750px; margin: 0 auto 2.5rem; } .guide-hero-desc .text-link { color: var(--neon-accent); text-decoration: underline; text-decoration-color: rgba(240, 185, 11, 0.3); transition: all 0.3s; } .guide-hero-desc .text-link:hover { color: #fff; text-decoration-color: var(--neon-accent); } .btn-glow { background: var(--neon-accent); color: #000; font-weight: 800; padding: 1rem 3rem; border-radius: 50px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s; box-shadow: 0 0 25px rgba(240, 185, 11, 0.3); display: inline-block; } .btn-glow:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 0 40px rgba(255, 255, 255, 0.4); } .guide-section { padding: 6rem 0; position: relative; } .dark-bg { background: var(--primary-bg); } .gradient-bg { background: linear-gradient(180deg, var(--card-bg) 0%, var(--primary-bg) 100%); } .timeline-wrapper { position: relative; max-width: 1000px; margin: 0 auto; padding: 2rem 0; } .timeline-wrapper::before { content: ''; position: absolute; top: 0; left: 50%; width: 2px; height: 100%; background: rgba(255, 255, 255, 0.1); transform: translateX(-50%); } .timeline-item { display: flex; justify-content: center; padding-bottom: 4rem; position: relative; width: 100%; } .timeline-item:nth-child(odd) { justify-content: flex-start; padding-right: 50%; } .timeline-item:nth-child(even) { justify-content: flex-end; padding-left: 50%; } .timeline-marker { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 50px; height: 50px; background: var(--card-bg); border: 2px solid var(--neon-accent); border-radius: 50%; color: var(--neon-accent); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; z-index: 5; box-shadow: 0 0 15px rgba(240, 185, 11, 0.2); } .timeline-content { background: var(--card-bg); padding: 2.5rem; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); width: 90%; position: relative; transition: all 0.3s; } .timeline-item:nth-child(odd) .timeline-content { margin-right: 30px; border-right: 3px solid var(--neon-accent); } .timeline-item:nth-child(even) .timeline-content { margin-left: 30px; border-left: 3px solid var(--neon-accent); } .timeline-content:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); } .timeline-content h3 { font-size: 1.4rem; color: #fff; margin-bottom: 1rem; } .timeline-content p { color: #aaa; margin-bottom: 1.5rem; font-size: 0.95rem; } .feature-list { list-style: none; padding: 0; margin: 0; } .feature-list li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; color: #ccc; font-size: 0.9rem; } .feature-list li::before { content: '•'; position: absolute; left: 0; color: var(--neon-accent); font-weight: bold; } .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; } .process-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); padding: 2rem; border-radius: 20px; text-align: center; transition: all 0.3s; } .process-card:hover { background: rgba(255, 255, 255, 0.04); } .process-icon { width: 70px; height: 70px; background: rgba(240, 185, 11, 0.1); color: var(--neon-accent); font-size: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; animation: float 4s infinite ease-in-out; } .process-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1rem; } .process-card ul { text-align: left; list-style: none; padding: 0; } .process-card li { color: #999; font-size: 0.85rem; margin-bottom: 0.5rem; padding-left: 1rem; position: relative; } .process-card li::before { content: ''; position: absolute; left: 0; top: 8px; width: 4px; height: 4px; background: #555; border-radius: 50%; } .checklist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; } .checklist-card { background: #111418; border-radius: 20px; padding: 2.5rem; border-top: 4px solid var(--neon-accent); } .checklist-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 1.5rem; text-align: center; } .check-item { display: flex; align-items: center; gap: 1rem; padding: 0.8rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.05); color: #ccc; font-size: 0.95rem; } .check-item span { color: var(--neon-accent); font-weight: bold; } .flow-steps { display: flex; justify-content: space-between; gap: 1rem; max-width: 1200px; margin: 0 auto; flex-wrap: wrap; } .flow-card { flex: 1; min-width: 200px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); padding: 2rem; border-radius: 16px; position: relative; } .flow-number { font-size: 3rem; font-weight: 800; color: rgba(255, 255, 255, 0.05); position: absolute; top: 10px; right: 20px; } .flow-card h4 { color: var(--neon-accent); font-size: 1.1rem; margin-bottom: 1rem; position: relative; } .flow-card p { color: #aaa; font-size: 0.9rem; line-height: 1.5; } .hero-quote { padding: 5rem 0; background: var(--neon-accent); color: #000; } .hero-quote-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .hero-quote-title { font-size: 2.8rem; font-weight: 800; color: #000; margin-bottom: 1rem; } .hero-quote-description { font-size: 1.1rem; color: #111; margin-bottom: 2rem; font-weight: 500; } .btn-outline { border: 2px solid #000; color: #000; padding: 1rem 2.5rem; font-weight: 700; border-radius: 50px; text-transform: uppercase; transition: all 0.3s; } .btn-outline:hover { background: #000; color: var(--neon-accent); border-color: #000; } .contact { padding: 6rem 0; background: #050607; border-top: 1px solid rgba(255, 255, 255, 0.05); } .contact-content { display: grid; grid-template-columns: 1fr 1.6fr; gap: 0; background: #0f1115; border-radius: 32px; border: 1px solid rgba(255, 255, 255, 0.05); overflow: hidden; margin-top: 4rem; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); } .contact-info { padding: 4rem; background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%); position: relative; } .contact-info::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--neon-accent); } .contact-subtitle { font-size: 2rem; color: #fff; margin-bottom: 3rem; font-weight: 700; } .contact-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; } .contact-icon { width: 50px; height: 50px; background: rgba(240, 185, 11, 0.1); color: var(--neon-accent); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; } .contact-details strong { display: block; color: #fff; margin-bottom: 0.3rem; } .contact-details span, .contact-details a { color: #999; } .contact-form { padding: 4rem; } @media (max-width: 1024px) { .checklist-grid { grid-template-columns: 1fr 1fr; } .process-grid { grid-template-columns: 1fr 1fr; } } @media (max-width: 768px) { .timeline-wrapper::before { left: 20px; } .timeline-item, .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { flex-direction: column; align-items: flex-start; padding: 0 0 3rem 50px; } .timeline-marker { left: 20px; transform: translateX(-50%); width: 40px; height: 40px; font-size: 1rem; } .timeline-content, .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content { margin: 0; width: 100%; border: 1px solid rgba(255, 255, 255, 0.1); border-left: 3px solid var(--neon-accent); } .checklist-grid, .process-grid, .flow-steps { grid-template-columns: 1fr; flex-direction: column; } .contact-content { grid-template-columns: 1fr; } .contact-info, .contact-form { padding: 2.5rem; } .guide-hero-title { font-size: 3rem; } .hero-quote-content { grid-template-columns: 1fr; text-align: center; } .hero-quote-actions { justify-content: center; display: flex; } }